Terminal.Gui.TextView.yml 27 KB

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