Terminal.RadioGroup.yml 21 KB

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