Terminal.CheckBox.yml 19 KB

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