Terminal.Gui.TextView.yml 25 KB

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