Terminal.Button.yml 22 KB

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