Terminal.Gui.ScrollView.yml 22 KB

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