Terminal.Gui.ListView.yml 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855
  1. ### YamlMime:ManagedReference
  2. items:
  3. - uid: Terminal.Gui.ListView
  4. id: ListView
  5. children:
  6. - Terminal.Gui.ListView.#ctor(System.Collections.IList)
  7. - Terminal.Gui.ListView.#ctor(Terminal.Gui.IListDataSource)
  8. - Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,System.Collections.IList)
  9. - Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,Terminal.Gui.IListDataSource)
  10. - Terminal.Gui.ListView.AllowsMarking
  11. - Terminal.Gui.ListView.MouseEvent(Terminal.Gui.MouseEvent)
  12. - Terminal.Gui.ListView.PositionCursor
  13. - Terminal.Gui.ListView.ProcessKey(Terminal.Gui.KeyEvent)
  14. - Terminal.Gui.ListView.Redraw(Terminal.Gui.Rect)
  15. - Terminal.Gui.ListView.SelectedChanged
  16. - Terminal.Gui.ListView.SelectedItem
  17. - Terminal.Gui.ListView.SetSource(System.Collections.IList)
  18. - Terminal.Gui.ListView.Source
  19. - Terminal.Gui.ListView.TopItem
  20. langs:
  21. - csharp
  22. name: ListView
  23. nameWithType: ListView
  24. fullName: Terminal.Gui.ListView
  25. type: Class
  26. assemblies:
  27. - Terminal.Gui
  28. namespace: Terminal.Gui
  29. summary: ListView widget renders a list of data.
  30. remarks: "<p>\n The ListView displays lists of data and allows the user to scroll through the data\n and optionally mark elements of the list (controlled by the AllowsMark property). \n </p>\n <p>\n The ListView can either render an arbitrary IList object (for example, arrays, List<T>\n and other collections) which are drawn by drawing the string/ustring contents or the \n result of calling ToString(). Alternatively, you can provide you own IListDataSource\n object that gives you full control of what is rendered.\n </p>\n <p>\n The ListView can display any object that implements the System.Collection.IList interface,\n string values are converted into ustring values before rendering, and other values are\n converted into ustrings by calling ToString() and then converting to ustring.\n </p>\n <p>\n If you must change the contents of the ListView, set the Source property (when you are\n providing your own rendering via the IListDataSource implementation) or call SetSource\n when you are providing an IList.\n </p>"
  31. syntax:
  32. content: 'public class ListView : Terminal.Gui.View'
  33. inheritance:
  34. - System.Object
  35. - Terminal.Gui.Responder
  36. - Terminal.Gui.View
  37. implements: []
  38. inheritedMembers:
  39. - Terminal.Gui.Responder.CanFocus
  40. - Terminal.Gui.View.Add(Terminal.Gui.View)
  41. - Terminal.Gui.View.Add(Terminal.Gui.View[])
  42. - Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  43. - Terminal.Gui.View.Bounds
  44. - Terminal.Gui.View.ChildNeedsDisplay
  45. - Terminal.Gui.View.Clear
  46. - Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  47. - Terminal.Gui.View.ClearNeedsDisplay
  48. - Terminal.Gui.View.ClipToBounds
  49. - Terminal.Gui.View.ColorScheme
  50. - Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  51. - Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  52. - Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  53. - Terminal.Gui.View.Driver
  54. - Terminal.Gui.View.EnsureFocus
  55. - Terminal.Gui.View.Focused
  56. - Terminal.Gui.View.FocusFirst
  57. - Terminal.Gui.View.FocusLast
  58. - Terminal.Gui.View.FocusNext
  59. - Terminal.Gui.View.FocusPrev
  60. - Terminal.Gui.View.Frame
  61. - Terminal.Gui.View.GetEnumerator
  62. - Terminal.Gui.View.HasFocus
  63. - Terminal.Gui.View.Height
  64. - Terminal.Gui.View.Id
  65. - Terminal.Gui.View.LayoutStyle
  66. - Terminal.Gui.View.LayoutSubviews
  67. - Terminal.Gui.View.MostFocused
  68. - Terminal.Gui.View.Move(System.Int32,System.Int32)
  69. - Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  70. - Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  71. - Terminal.Gui.View.Remove(Terminal.Gui.View)
  72. - Terminal.Gui.View.RemoveAll
  73. - Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  74. - Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  75. - Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  76. - Terminal.Gui.View.SetNeedsDisplay
  77. - Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  78. - Terminal.Gui.View.Subviews
  79. - Terminal.Gui.View.SuperView
  80. - Terminal.Gui.View.ToString
  81. - Terminal.Gui.View.WantMousePositionReports
  82. - Terminal.Gui.View.Width
  83. - Terminal.Gui.View.X
  84. - Terminal.Gui.View.Y
  85. - uid: Terminal.Gui.ListView.#ctor(System.Collections.IList)
  86. id: '#ctor(System.Collections.IList)'
  87. parent: Terminal.Gui.ListView
  88. langs:
  89. - csharp
  90. name: ListView(IList)
  91. nameWithType: ListView.ListView(IList)
  92. fullName: ListView.ListView(IList)
  93. type: Constructor
  94. assemblies:
  95. - Terminal.Gui
  96. namespace: Terminal.Gui
  97. summary: Initializes a new ListView that will display the contents of the object implementing the IList interface, with relative positioning
  98. syntax:
  99. content: public ListView (System.Collections.IList source);
  100. parameters:
  101. - id: source
  102. type: System.Collections.IList
  103. description: An IList data source, if the elements of the IList are strings or ustrings, the string is rendered, otherwise the ToString() method is invoked on the result.
  104. overload: Terminal.Gui.ListView.#ctor*
  105. exceptions: []
  106. - uid: Terminal.Gui.ListView.#ctor(Terminal.Gui.IListDataSource)
  107. id: '#ctor(Terminal.Gui.IListDataSource)'
  108. parent: Terminal.Gui.ListView
  109. langs:
  110. - csharp
  111. name: ListView(IListDataSource)
  112. nameWithType: ListView.ListView(IListDataSource)
  113. fullName: ListView.ListView(IListDataSource)
  114. type: Constructor
  115. assemblies:
  116. - Terminal.Gui
  117. namespace: Terminal.Gui
  118. summary: Initializes a new ListView that will display the provided data source, uses relative positioning.
  119. syntax:
  120. content: public ListView (Terminal.Gui.IListDataSource source);
  121. parameters:
  122. - id: source
  123. type: Terminal.Gui.IListDataSource
  124. description: IListDataSource object that provides a mechanism to render the data. The number of elements on the collection should not change, if you must change, set the "Source" property to reset the internal settings of the ListView.
  125. overload: Terminal.Gui.ListView.#ctor*
  126. exceptions: []
  127. - uid: Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,System.Collections.IList)
  128. id: '#ctor(Terminal.Gui.Rect,System.Collections.IList)'
  129. parent: Terminal.Gui.ListView
  130. langs:
  131. - csharp
  132. name: ListView(Rect, IList)
  133. nameWithType: ListView.ListView(Rect, IList)
  134. fullName: ListView.ListView(Rect, IList)
  135. type: Constructor
  136. assemblies:
  137. - Terminal.Gui
  138. namespace: Terminal.Gui
  139. summary: Initializes a new ListView that will display the contents of the object implementing the IList interface with an absolute position.
  140. syntax:
  141. content: public ListView (Terminal.Gui.Rect rect, System.Collections.IList source);
  142. parameters:
  143. - id: rect
  144. type: Terminal.Gui.Rect
  145. description: Frame for the listview.
  146. - id: source
  147. type: System.Collections.IList
  148. description: An IList data source, if the elements of the IList are strings or ustrings, the string is rendered, otherwise the ToString() method is invoked on the result.
  149. overload: Terminal.Gui.ListView.#ctor*
  150. exceptions: []
  151. - uid: Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,Terminal.Gui.IListDataSource)
  152. id: '#ctor(Terminal.Gui.Rect,Terminal.Gui.IListDataSource)'
  153. parent: Terminal.Gui.ListView
  154. langs:
  155. - csharp
  156. name: ListView(Rect, IListDataSource)
  157. nameWithType: ListView.ListView(Rect, IListDataSource)
  158. fullName: ListView.ListView(Rect, IListDataSource)
  159. type: Constructor
  160. assemblies:
  161. - Terminal.Gui
  162. namespace: Terminal.Gui
  163. summary: Initializes a new ListView that will display the provided data source with an absolute position
  164. syntax:
  165. content: public ListView (Terminal.Gui.Rect rect, Terminal.Gui.IListDataSource source);
  166. parameters:
  167. - id: rect
  168. type: Terminal.Gui.Rect
  169. description: Frame for the listview.
  170. - id: source
  171. type: Terminal.Gui.IListDataSource
  172. description: IListDataSource object that provides a mechanism to render the data. The number of elements on the collection should not change, if you must change, set the "Source" property to reset the internal settings of the ListView.
  173. overload: Terminal.Gui.ListView.#ctor*
  174. exceptions: []
  175. - uid: Terminal.Gui.ListView.AllowsMarking
  176. id: AllowsMarking
  177. parent: Terminal.Gui.ListView
  178. langs:
  179. - csharp
  180. name: AllowsMarking
  181. nameWithType: ListView.AllowsMarking
  182. fullName: ListView.AllowsMarking
  183. type: Property
  184. assemblies:
  185. - Terminal.Gui
  186. namespace: Terminal.Gui
  187. summary: Gets or sets a value indicating whether this <xref href="Terminal.Gui.ListView"></xref> allows items to be marked.
  188. syntax:
  189. content: public bool AllowsMarking { get; set; }
  190. return:
  191. type: System.Boolean
  192. description: <code>true</code> if allows marking elements of the list; otherwise, <code>false</code>.
  193. overload: Terminal.Gui.ListView.AllowsMarking*
  194. exceptions: []
  195. - uid: Terminal.Gui.ListView.MouseEvent(Terminal.Gui.MouseEvent)
  196. id: MouseEvent(Terminal.Gui.MouseEvent)
  197. parent: Terminal.Gui.ListView
  198. langs:
  199. - csharp
  200. name: MouseEvent(MouseEvent)
  201. nameWithType: ListView.MouseEvent(MouseEvent)
  202. fullName: ListView.MouseEvent(MouseEvent)
  203. type: Method
  204. assemblies:
  205. - Terminal.Gui
  206. namespace: Terminal.Gui
  207. syntax:
  208. content: public override bool MouseEvent (Terminal.Gui.MouseEvent me);
  209. parameters:
  210. - id: me
  211. type: Terminal.Gui.MouseEvent
  212. description: To be added.
  213. return:
  214. type: System.Boolean
  215. description: To be added.
  216. overload: Terminal.Gui.ListView.MouseEvent*
  217. exceptions: []
  218. - uid: Terminal.Gui.ListView.PositionCursor
  219. id: PositionCursor
  220. parent: Terminal.Gui.ListView
  221. langs:
  222. - csharp
  223. name: PositionCursor()
  224. nameWithType: ListView.PositionCursor()
  225. fullName: ListView.PositionCursor()
  226. type: Method
  227. assemblies:
  228. - Terminal.Gui
  229. namespace: Terminal.Gui
  230. summary: Positions the cursor in this view
  231. syntax:
  232. content: public override void PositionCursor ();
  233. parameters: []
  234. overload: Terminal.Gui.ListView.PositionCursor*
  235. exceptions: []
  236. - uid: Terminal.Gui.ListView.ProcessKey(Terminal.Gui.KeyEvent)
  237. id: ProcessKey(Terminal.Gui.KeyEvent)
  238. parent: Terminal.Gui.ListView
  239. langs:
  240. - csharp
  241. name: ProcessKey(KeyEvent)
  242. nameWithType: ListView.ProcessKey(KeyEvent)
  243. fullName: ListView.ProcessKey(KeyEvent)
  244. type: Method
  245. assemblies:
  246. - Terminal.Gui
  247. namespace: Terminal.Gui
  248. summary: Handles cursor movement for this view, passes all other events.
  249. syntax:
  250. content: public override bool ProcessKey (Terminal.Gui.KeyEvent kb);
  251. parameters:
  252. - id: kb
  253. type: Terminal.Gui.KeyEvent
  254. description: Keyboard event.
  255. return:
  256. type: System.Boolean
  257. description: <code>true</code>, if key was processed, <code>false</code> otherwise.
  258. overload: Terminal.Gui.ListView.ProcessKey*
  259. exceptions: []
  260. - uid: Terminal.Gui.ListView.Redraw(Terminal.Gui.Rect)
  261. id: Redraw(Terminal.Gui.Rect)
  262. parent: Terminal.Gui.ListView
  263. langs:
  264. - csharp
  265. name: Redraw(Rect)
  266. nameWithType: ListView.Redraw(Rect)
  267. fullName: ListView.Redraw(Rect)
  268. type: Method
  269. assemblies:
  270. - Terminal.Gui
  271. namespace: Terminal.Gui
  272. summary: Redraws the ListView
  273. syntax:
  274. content: public override void Redraw (Terminal.Gui.Rect region);
  275. parameters:
  276. - id: region
  277. type: Terminal.Gui.Rect
  278. description: Region.
  279. overload: Terminal.Gui.ListView.Redraw*
  280. exceptions: []
  281. - uid: Terminal.Gui.ListView.SelectedChanged
  282. id: SelectedChanged
  283. parent: Terminal.Gui.ListView
  284. langs:
  285. - csharp
  286. name: SelectedChanged
  287. nameWithType: ListView.SelectedChanged
  288. fullName: ListView.SelectedChanged
  289. type: Event
  290. assemblies:
  291. - Terminal.Gui
  292. namespace: Terminal.Gui
  293. summary: This event is raised when the cursor selection has changed.
  294. syntax:
  295. content: public event Action SelectedChanged;
  296. return:
  297. type: System.Action
  298. description: To be added.
  299. exceptions: []
  300. - uid: Terminal.Gui.ListView.SelectedItem
  301. id: SelectedItem
  302. parent: Terminal.Gui.ListView
  303. langs:
  304. - csharp
  305. name: SelectedItem
  306. nameWithType: ListView.SelectedItem
  307. fullName: ListView.SelectedItem
  308. type: Property
  309. assemblies:
  310. - Terminal.Gui
  311. namespace: Terminal.Gui
  312. summary: Gets or sets the currently selecteded item.
  313. syntax:
  314. content: public int SelectedItem { get; set; }
  315. return:
  316. type: System.Int32
  317. description: The selected item.
  318. overload: Terminal.Gui.ListView.SelectedItem*
  319. exceptions: []
  320. - uid: Terminal.Gui.ListView.SetSource(System.Collections.IList)
  321. id: SetSource(System.Collections.IList)
  322. parent: Terminal.Gui.ListView
  323. langs:
  324. - csharp
  325. name: SetSource(IList)
  326. nameWithType: ListView.SetSource(IList)
  327. fullName: ListView.SetSource(IList)
  328. type: Method
  329. assemblies:
  330. - Terminal.Gui
  331. namespace: Terminal.Gui
  332. summary: Sets the source to an IList value, if you want to set a full IListDataSource, use the Source property.
  333. syntax:
  334. content: public void SetSource (System.Collections.IList source);
  335. parameters:
  336. - id: source
  337. type: System.Collections.IList
  338. description: To be added.
  339. overload: Terminal.Gui.ListView.SetSource*
  340. exceptions: []
  341. - uid: Terminal.Gui.ListView.Source
  342. id: Source
  343. parent: Terminal.Gui.ListView
  344. langs:
  345. - csharp
  346. name: Source
  347. nameWithType: ListView.Source
  348. fullName: ListView.Source
  349. type: Property
  350. assemblies:
  351. - Terminal.Gui
  352. namespace: Terminal.Gui
  353. summary: Gets or sets the IListDataSource backing this view, use SetSource() if you want to set a new IList source.
  354. syntax:
  355. content: public Terminal.Gui.IListDataSource Source { get; set; }
  356. return:
  357. type: Terminal.Gui.IListDataSource
  358. description: The source.
  359. overload: Terminal.Gui.ListView.Source*
  360. exceptions: []
  361. - uid: Terminal.Gui.ListView.TopItem
  362. id: TopItem
  363. parent: Terminal.Gui.ListView
  364. langs:
  365. - csharp
  366. name: TopItem
  367. nameWithType: ListView.TopItem
  368. fullName: ListView.TopItem
  369. type: Property
  370. assemblies:
  371. - Terminal.Gui
  372. namespace: Terminal.Gui
  373. summary: Gets or sets the item that is displayed at the top of the listview
  374. syntax:
  375. content: public int TopItem { get; set; }
  376. return:
  377. type: System.Int32
  378. description: The top item.
  379. overload: Terminal.Gui.ListView.TopItem*
  380. exceptions: []
  381. references:
  382. - uid: Terminal.Gui.View
  383. parent: Terminal.Gui
  384. isExternal: false
  385. name: View
  386. nameWithType: View
  387. fullName: Terminal.Gui.View
  388. - uid: Terminal.Gui.ListView.#ctor(System.Collections.IList)
  389. parent: Terminal.Gui.ListView
  390. isExternal: false
  391. name: ListView(IList)
  392. nameWithType: ListView.ListView(IList)
  393. fullName: ListView.ListView(IList)
  394. - uid: System.Collections.IList
  395. parent: System.Collections
  396. isExternal: true
  397. name: IList
  398. nameWithType: IList
  399. fullName: System.Collections.IList
  400. - uid: Terminal.Gui.ListView.#ctor(Terminal.Gui.IListDataSource)
  401. parent: Terminal.Gui.ListView
  402. isExternal: false
  403. name: ListView(IListDataSource)
  404. nameWithType: ListView.ListView(IListDataSource)
  405. fullName: ListView.ListView(IListDataSource)
  406. - uid: Terminal.Gui.IListDataSource
  407. parent: Terminal.Gui
  408. isExternal: false
  409. name: IListDataSource
  410. nameWithType: IListDataSource
  411. fullName: Terminal.Gui.IListDataSource
  412. - uid: Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,System.Collections.IList)
  413. parent: Terminal.Gui.ListView
  414. isExternal: false
  415. name: ListView(Rect, IList)
  416. nameWithType: ListView.ListView(Rect, IList)
  417. fullName: ListView.ListView(Rect, IList)
  418. - uid: Terminal.Gui.Rect
  419. parent: Terminal.Gui
  420. isExternal: false
  421. name: Rect
  422. nameWithType: Rect
  423. fullName: Terminal.Gui.Rect
  424. - uid: Terminal.Gui.ListView.#ctor(Terminal.Gui.Rect,Terminal.Gui.IListDataSource)
  425. parent: Terminal.Gui.ListView
  426. isExternal: false
  427. name: ListView(Rect, IListDataSource)
  428. nameWithType: ListView.ListView(Rect, IListDataSource)
  429. fullName: ListView.ListView(Rect, IListDataSource)
  430. - uid: Terminal.Gui.ListView.AllowsMarking
  431. parent: Terminal.Gui.ListView
  432. isExternal: false
  433. name: AllowsMarking
  434. nameWithType: ListView.AllowsMarking
  435. fullName: ListView.AllowsMarking
  436. - uid: System.Boolean
  437. parent: System
  438. isExternal: true
  439. name: Boolean
  440. nameWithType: Boolean
  441. fullName: System.Boolean
  442. - uid: Terminal.Gui.ListView.MouseEvent(Terminal.Gui.MouseEvent)
  443. parent: Terminal.Gui.ListView
  444. isExternal: false
  445. name: MouseEvent(MouseEvent)
  446. nameWithType: ListView.MouseEvent(MouseEvent)
  447. fullName: ListView.MouseEvent(MouseEvent)
  448. - uid: Terminal.Gui.MouseEvent
  449. parent: Terminal.Gui
  450. isExternal: false
  451. name: MouseEvent
  452. nameWithType: MouseEvent
  453. fullName: Terminal.Gui.MouseEvent
  454. - uid: Terminal.Gui.ListView.PositionCursor
  455. parent: Terminal.Gui.ListView
  456. isExternal: false
  457. name: PositionCursor()
  458. nameWithType: ListView.PositionCursor()
  459. fullName: ListView.PositionCursor()
  460. - uid: Terminal.Gui.ListView.ProcessKey(Terminal.Gui.KeyEvent)
  461. parent: Terminal.Gui.ListView
  462. isExternal: false
  463. name: ProcessKey(KeyEvent)
  464. nameWithType: ListView.ProcessKey(KeyEvent)
  465. fullName: ListView.ProcessKey(KeyEvent)
  466. - uid: Terminal.Gui.KeyEvent
  467. parent: Terminal.Gui
  468. isExternal: false
  469. name: KeyEvent
  470. nameWithType: KeyEvent
  471. fullName: Terminal.Gui.KeyEvent
  472. - uid: Terminal.Gui.ListView.Redraw(Terminal.Gui.Rect)
  473. parent: Terminal.Gui.ListView
  474. isExternal: false
  475. name: Redraw(Rect)
  476. nameWithType: ListView.Redraw(Rect)
  477. fullName: ListView.Redraw(Rect)
  478. - uid: Terminal.Gui.ListView.SelectedChanged
  479. parent: Terminal.Gui.ListView
  480. isExternal: false
  481. name: SelectedChanged
  482. nameWithType: ListView.SelectedChanged
  483. fullName: ListView.SelectedChanged
  484. - uid: System.Action
  485. parent: System
  486. isExternal: true
  487. name: Action
  488. nameWithType: Action
  489. fullName: System.Action
  490. - uid: Terminal.Gui.ListView.SelectedItem
  491. parent: Terminal.Gui.ListView
  492. isExternal: false
  493. name: SelectedItem
  494. nameWithType: ListView.SelectedItem
  495. fullName: ListView.SelectedItem
  496. - uid: System.Int32
  497. parent: System
  498. isExternal: true
  499. name: Int32
  500. nameWithType: Int32
  501. fullName: System.Int32
  502. - uid: Terminal.Gui.ListView.SetSource(System.Collections.IList)
  503. parent: Terminal.Gui.ListView
  504. isExternal: false
  505. name: SetSource(IList)
  506. nameWithType: ListView.SetSource(IList)
  507. fullName: ListView.SetSource(IList)
  508. - uid: Terminal.Gui.ListView.Source
  509. parent: Terminal.Gui.ListView
  510. isExternal: false
  511. name: Source
  512. nameWithType: ListView.Source
  513. fullName: ListView.Source
  514. - uid: Terminal.Gui.ListView.TopItem
  515. parent: Terminal.Gui.ListView
  516. isExternal: false
  517. name: TopItem
  518. nameWithType: ListView.TopItem
  519. fullName: ListView.TopItem
  520. - uid: Terminal.Gui.ListView.#ctor*
  521. parent: Terminal.Gui.ListView
  522. isExternal: false
  523. name: ListView
  524. nameWithType: ListView.ListView
  525. fullName: ListView.ListView
  526. - uid: Terminal.Gui.ListView.AllowsMarking*
  527. parent: Terminal.Gui.ListView
  528. isExternal: false
  529. name: AllowsMarking
  530. nameWithType: ListView.AllowsMarking
  531. fullName: ListView.AllowsMarking
  532. - uid: Terminal.Gui.ListView.MouseEvent*
  533. parent: Terminal.Gui.ListView
  534. isExternal: false
  535. name: MouseEvent
  536. nameWithType: ListView.MouseEvent
  537. fullName: ListView.MouseEvent
  538. - uid: Terminal.Gui.ListView.PositionCursor*
  539. parent: Terminal.Gui.ListView
  540. isExternal: false
  541. name: PositionCursor
  542. nameWithType: ListView.PositionCursor
  543. fullName: ListView.PositionCursor
  544. - uid: Terminal.Gui.ListView.ProcessKey*
  545. parent: Terminal.Gui.ListView
  546. isExternal: false
  547. name: ProcessKey
  548. nameWithType: ListView.ProcessKey
  549. fullName: ListView.ProcessKey
  550. - uid: Terminal.Gui.ListView.Redraw*
  551. parent: Terminal.Gui.ListView
  552. isExternal: false
  553. name: Redraw
  554. nameWithType: ListView.Redraw
  555. fullName: ListView.Redraw
  556. - uid: Terminal.Gui.ListView.SelectedItem*
  557. parent: Terminal.Gui.ListView
  558. isExternal: false
  559. name: SelectedItem
  560. nameWithType: ListView.SelectedItem
  561. fullName: ListView.SelectedItem
  562. - uid: Terminal.Gui.ListView.SetSource*
  563. parent: Terminal.Gui.ListView
  564. isExternal: false
  565. name: SetSource
  566. nameWithType: ListView.SetSource
  567. fullName: ListView.SetSource
  568. - uid: Terminal.Gui.ListView.Source*
  569. parent: Terminal.Gui.ListView
  570. isExternal: false
  571. name: Source
  572. nameWithType: ListView.Source
  573. fullName: ListView.Source
  574. - uid: Terminal.Gui.ListView.TopItem*
  575. parent: Terminal.Gui.ListView
  576. isExternal: false
  577. name: TopItem
  578. nameWithType: ListView.TopItem
  579. fullName: ListView.TopItem
  580. - uid: Terminal.Gui.Responder.CanFocus
  581. parent: Terminal.Gui.Responder
  582. isExternal: false
  583. name: CanFocus
  584. nameWithType: Responder.CanFocus
  585. fullName: Responder.CanFocus
  586. - uid: Terminal.Gui.View.HasFocus
  587. parent: Terminal.Gui.View
  588. isExternal: false
  589. name: HasFocus
  590. nameWithType: View.HasFocus
  591. fullName: View.HasFocus
  592. - uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  593. parent: Terminal.Gui.View
  594. isExternal: false
  595. name: ProcessColdKey(KeyEvent)
  596. nameWithType: View.ProcessColdKey(KeyEvent)
  597. fullName: View.ProcessColdKey(KeyEvent)
  598. - uid: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  599. parent: Terminal.Gui.View
  600. isExternal: false
  601. name: ProcessHotKey(KeyEvent)
  602. nameWithType: View.ProcessHotKey(KeyEvent)
  603. fullName: View.ProcessHotKey(KeyEvent)
  604. - uid: Terminal.Gui.View.Add(Terminal.Gui.View)
  605. parent: Terminal.Gui.View
  606. isExternal: false
  607. name: Add(View)
  608. nameWithType: View.Add(View)
  609. fullName: View.Add(View)
  610. - uid: Terminal.Gui.View.Add(Terminal.Gui.View[])
  611. parent: Terminal.Gui.View
  612. isExternal: false
  613. name: Add(View[])
  614. nameWithType: View.Add(View[])
  615. fullName: View.Add(View[])
  616. - uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  617. parent: Terminal.Gui.View
  618. isExternal: false
  619. name: AddRune(Int32, Int32, Rune)
  620. nameWithType: View.AddRune(Int32, Int32, Rune)
  621. fullName: View.AddRune(Int32, Int32, Rune)
  622. - uid: Terminal.Gui.View.Bounds
  623. parent: Terminal.Gui.View
  624. isExternal: false
  625. name: Bounds
  626. nameWithType: View.Bounds
  627. fullName: View.Bounds
  628. - uid: Terminal.Gui.View.ChildNeedsDisplay
  629. parent: Terminal.Gui.View
  630. isExternal: false
  631. name: ChildNeedsDisplay()
  632. nameWithType: View.ChildNeedsDisplay()
  633. fullName: View.ChildNeedsDisplay()
  634. - uid: Terminal.Gui.View.Clear
  635. parent: Terminal.Gui.View
  636. isExternal: false
  637. name: Clear()
  638. nameWithType: View.Clear()
  639. fullName: View.Clear()
  640. - uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  641. parent: Terminal.Gui.View
  642. isExternal: false
  643. name: Clear(Rect)
  644. nameWithType: View.Clear(Rect)
  645. fullName: View.Clear(Rect)
  646. - uid: Terminal.Gui.View.ClearNeedsDisplay
  647. parent: Terminal.Gui.View
  648. isExternal: false
  649. name: ClearNeedsDisplay()
  650. nameWithType: View.ClearNeedsDisplay()
  651. fullName: View.ClearNeedsDisplay()
  652. - uid: Terminal.Gui.View.ClipToBounds
  653. parent: Terminal.Gui.View
  654. isExternal: false
  655. name: ClipToBounds()
  656. nameWithType: View.ClipToBounds()
  657. fullName: View.ClipToBounds()
  658. - uid: Terminal.Gui.View.ColorScheme
  659. parent: Terminal.Gui.View
  660. isExternal: false
  661. name: ColorScheme
  662. nameWithType: View.ColorScheme
  663. fullName: View.ColorScheme
  664. - uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  665. parent: Terminal.Gui.View
  666. isExternal: false
  667. name: DrawFrame(Rect, Int32, Boolean)
  668. nameWithType: View.DrawFrame(Rect, Int32, Boolean)
  669. fullName: View.DrawFrame(Rect, Int32, Boolean)
  670. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  671. parent: Terminal.Gui.View
  672. isExternal: false
  673. name: DrawHotString(ustring, Boolean, ColorScheme)
  674. nameWithType: View.DrawHotString(ustring, Boolean, ColorScheme)
  675. fullName: View.DrawHotString(ustring, Boolean, ColorScheme)
  676. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  677. parent: Terminal.Gui.View
  678. isExternal: false
  679. name: DrawHotString(ustring, Attribute, Attribute)
  680. nameWithType: View.DrawHotString(ustring, Attribute, Attribute)
  681. fullName: View.DrawHotString(ustring, Attribute, Attribute)
  682. - uid: Terminal.Gui.View.Driver
  683. parent: Terminal.Gui.View
  684. isExternal: false
  685. name: Driver
  686. nameWithType: View.Driver
  687. fullName: View.Driver
  688. - uid: Terminal.Gui.View.EnsureFocus
  689. parent: Terminal.Gui.View
  690. isExternal: false
  691. name: EnsureFocus()
  692. nameWithType: View.EnsureFocus()
  693. fullName: View.EnsureFocus()
  694. - uid: Terminal.Gui.View.Focused
  695. parent: Terminal.Gui.View
  696. isExternal: false
  697. name: Focused
  698. nameWithType: View.Focused
  699. fullName: View.Focused
  700. - uid: Terminal.Gui.View.FocusFirst
  701. parent: Terminal.Gui.View
  702. isExternal: false
  703. name: FocusFirst()
  704. nameWithType: View.FocusFirst()
  705. fullName: View.FocusFirst()
  706. - uid: Terminal.Gui.View.FocusLast
  707. parent: Terminal.Gui.View
  708. isExternal: false
  709. name: FocusLast()
  710. nameWithType: View.FocusLast()
  711. fullName: View.FocusLast()
  712. - uid: Terminal.Gui.View.FocusNext
  713. parent: Terminal.Gui.View
  714. isExternal: false
  715. name: FocusNext()
  716. nameWithType: View.FocusNext()
  717. fullName: View.FocusNext()
  718. - uid: Terminal.Gui.View.FocusPrev
  719. parent: Terminal.Gui.View
  720. isExternal: false
  721. name: FocusPrev()
  722. nameWithType: View.FocusPrev()
  723. fullName: View.FocusPrev()
  724. - uid: Terminal.Gui.View.Frame
  725. parent: Terminal.Gui.View
  726. isExternal: false
  727. name: Frame
  728. nameWithType: View.Frame
  729. fullName: View.Frame
  730. - uid: Terminal.Gui.View.GetEnumerator
  731. parent: Terminal.Gui.View
  732. isExternal: false
  733. name: GetEnumerator()
  734. nameWithType: View.GetEnumerator()
  735. fullName: View.GetEnumerator()
  736. - uid: Terminal.Gui.View.Height
  737. parent: Terminal.Gui.View
  738. isExternal: false
  739. name: Height
  740. nameWithType: View.Height
  741. fullName: View.Height
  742. - uid: Terminal.Gui.View.Id
  743. parent: Terminal.Gui.View
  744. isExternal: false
  745. name: Id
  746. nameWithType: View.Id
  747. fullName: View.Id
  748. - uid: Terminal.Gui.View.LayoutStyle
  749. parent: Terminal.Gui.View
  750. isExternal: false
  751. name: LayoutStyle
  752. nameWithType: View.LayoutStyle
  753. fullName: View.LayoutStyle
  754. - uid: Terminal.Gui.View.LayoutSubviews
  755. parent: Terminal.Gui.View
  756. isExternal: false
  757. name: LayoutSubviews()
  758. nameWithType: View.LayoutSubviews()
  759. fullName: View.LayoutSubviews()
  760. - uid: Terminal.Gui.View.MostFocused
  761. parent: Terminal.Gui.View
  762. isExternal: false
  763. name: MostFocused
  764. nameWithType: View.MostFocused
  765. fullName: View.MostFocused
  766. - uid: Terminal.Gui.View.Move(System.Int32,System.Int32)
  767. parent: Terminal.Gui.View
  768. isExternal: false
  769. name: Move(Int32, Int32)
  770. nameWithType: View.Move(Int32, Int32)
  771. fullName: View.Move(Int32, Int32)
  772. - uid: Terminal.Gui.View.Remove(Terminal.Gui.View)
  773. parent: Terminal.Gui.View
  774. isExternal: false
  775. name: Remove(View)
  776. nameWithType: View.Remove(View)
  777. fullName: View.Remove(View)
  778. - uid: Terminal.Gui.View.RemoveAll
  779. parent: Terminal.Gui.View
  780. isExternal: false
  781. name: RemoveAll()
  782. nameWithType: View.RemoveAll()
  783. fullName: View.RemoveAll()
  784. - uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  785. parent: Terminal.Gui.View
  786. isExternal: false
  787. name: ScreenToView(Int32, Int32)
  788. nameWithType: View.ScreenToView(Int32, Int32)
  789. fullName: View.ScreenToView(Int32, Int32)
  790. - uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  791. parent: Terminal.Gui.View
  792. isExternal: false
  793. name: SetClip(Rect)
  794. nameWithType: View.SetClip(Rect)
  795. fullName: View.SetClip(Rect)
  796. - uid: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  797. parent: Terminal.Gui.View
  798. isExternal: false
  799. name: SetFocus(View)
  800. nameWithType: View.SetFocus(View)
  801. fullName: View.SetFocus(View)
  802. - uid: Terminal.Gui.View.SetNeedsDisplay
  803. parent: Terminal.Gui.View
  804. isExternal: false
  805. name: SetNeedsDisplay()
  806. nameWithType: View.SetNeedsDisplay()
  807. fullName: View.SetNeedsDisplay()
  808. - uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  809. parent: Terminal.Gui.View
  810. isExternal: false
  811. name: SetNeedsDisplay(Rect)
  812. nameWithType: View.SetNeedsDisplay(Rect)
  813. fullName: View.SetNeedsDisplay(Rect)
  814. - uid: Terminal.Gui.View.Subviews
  815. parent: Terminal.Gui.View
  816. isExternal: false
  817. name: Subviews
  818. nameWithType: View.Subviews
  819. fullName: View.Subviews
  820. - uid: Terminal.Gui.View.SuperView
  821. parent: Terminal.Gui.View
  822. isExternal: false
  823. name: SuperView
  824. nameWithType: View.SuperView
  825. fullName: View.SuperView
  826. - uid: Terminal.Gui.View.ToString
  827. parent: Terminal.Gui.View
  828. isExternal: false
  829. name: ToString()
  830. nameWithType: View.ToString()
  831. fullName: View.ToString()
  832. - uid: Terminal.Gui.View.WantMousePositionReports
  833. parent: Terminal.Gui.View
  834. isExternal: false
  835. name: WantMousePositionReports
  836. nameWithType: View.WantMousePositionReports
  837. fullName: View.WantMousePositionReports
  838. - uid: Terminal.Gui.View.Width
  839. parent: Terminal.Gui.View
  840. isExternal: false
  841. name: Width
  842. nameWithType: View.Width
  843. fullName: View.Width
  844. - uid: Terminal.Gui.View.X
  845. parent: Terminal.Gui.View
  846. isExternal: false
  847. name: X
  848. nameWithType: View.X
  849. fullName: View.X
  850. - uid: Terminal.Gui.View.Y
  851. parent: Terminal.Gui.View
  852. isExternal: false
  853. name: Y
  854. nameWithType: View.Y
  855. fullName: View.Y