Terminal.TextField.yml 20 KB

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