2
0

Terminal.Gui.TextView.html 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259
  1. <!DOCTYPE html>
  2. <!--[if IE]><![endif]-->
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7. <title>Class TextView
  8. </title>
  9. <meta name="viewport" content="width=device-width">
  10. <meta name="title" content="Class TextView
  11. ">
  12. <meta name="generator" content="docfx 2.59.3.0">
  13. <link rel="shortcut icon" href="../../favicon.ico">
  14. <link rel="stylesheet" href="../../styles/docfx.vendor.css">
  15. <link rel="stylesheet" href="../../styles/docfx.css">
  16. <link rel="stylesheet" href="../../styles/main.css">
  17. <link href="https://fonts.googleapis.com/css?family=Source Sans Pro" rel="stylesheet">
  18. <link href="https://fonts.googleapis.com/css?family=Source Code Pro" rel="stylesheet">
  19. <meta property="docfx:navrel" content="../../toc.html">
  20. <meta property="docfx:tocrel" content="toc.html">
  21. <meta property="docfx:rel" content="../../">
  22. </head> <body data-spy="scroll" data-target="#affix" data-offset="120">
  23. <div id="wrapper">
  24. <header>
  25. <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
  26. <div class="container">
  27. <div class="navbar-header">
  28. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
  29. <span class="sr-only">Toggle navigation</span>
  30. <span class="icon-bar"></span>
  31. <span class="icon-bar"></span>
  32. <span class="icon-bar"></span>
  33. </button>
  34. <a class="navbar-brand" href="../../index.html">
  35. <img id="logo" class="svg" src="../../images/logo48.png" alt="">
  36. </a>
  37. </div>
  38. <div class="collapse navbar-collapse" id="navbar">
  39. <form class="navbar-form navbar-right" role="search" id="search">
  40. <div class="form-group">
  41. <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
  42. </div>
  43. </form>
  44. </div>
  45. </div>
  46. </nav>
  47. <div class="subnav navbar navbar-default">
  48. <div class="container hide-when-search" id="breadcrumb">
  49. <ul class="breadcrumb">
  50. <li></li>
  51. </ul>
  52. </div>
  53. </div>
  54. </header>
  55. <div class="container body-content">
  56. <div id="search-results">
  57. <div class="search-list">Search Results for <span></span></div>
  58. <div class="sr-items">
  59. <p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
  60. </div>
  61. <ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
  62. </div>
  63. </div>
  64. <div role="main" class="container body-content hide-when-search">
  65. <div class="sidenav hide-when-search">
  66. <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
  67. <div class="sidetoggle collapse" id="sidetoggle">
  68. <div id="sidetoc"></div>
  69. </div>
  70. </div>
  71. <div class="article row grid-right">
  72. <div class="col-md-10">
  73. <article class="content wrap" id="_content" data-uid="Terminal.Gui.TextView">
  74. <h1 id="Terminal_Gui_TextView" data-uid="Terminal.Gui.TextView" class="text-break">Class TextView
  75. </h1>
  76. <div class="markdown level0 summary">
  77. Multi-line text editing <a class="xref" href="Terminal.Gui.View.html">View</a>
  78. </div>
  79. <div class="markdown level0 conceptual"></div>
  80. <div class="inheritance">
  81. <h5>Inheritance</h5>
  82. <div class="level0"><span class="xref">System.Object</span></div>
  83. <div class="level1"><a class="xref" href="Terminal.Gui.Responder.html">Responder</a></div>
  84. <div class="level2"><a class="xref" href="Terminal.Gui.View.html">View</a></div>
  85. <div class="level3"><span class="xref">TextView</span></div>
  86. </div>
  87. <div class="implements">
  88. <h5>Implements</h5>
  89. <div><span class="xref">System.IDisposable</span></div>
  90. <div><span class="xref">System.ComponentModel.ISupportInitializeNotification</span></div>
  91. <div><span class="xref">System.ComponentModel.ISupportInitialize</span></div>
  92. </div>
  93. <h5 id="Terminal_Gui_TextView_remarks"><strong>Remarks</strong></h5>
  94. <div class="markdown level0 remarks">
  95. <p>
  96. <a class="xref" href="Terminal.Gui.TextView.html">TextView</a> provides a multi-line text editor. Users interact
  97. with it with the standard Emacs commands for movement or the arrow
  98. keys.
  99. </p>
  100. <table><thead><tr><th>Shortcut</th><th>Action performed</th></tr></thead><tbody><tr><td>Left cursor, Control-b</td><td>
  101. Moves the editing point left.
  102. </td></tr><tr><td>Right cursor, Control-f</td><td>
  103. Moves the editing point right.
  104. </td></tr><tr><td>Alt-b</td><td>
  105. Moves one word back.
  106. </td></tr><tr><td>Alt-f</td><td>
  107. Moves one word forward.
  108. </td></tr><tr><td>Up cursor, Control-p</td><td>
  109. Moves the editing point one line up.
  110. </td></tr><tr><td>Down cursor, Control-n</td><td>
  111. Moves the editing point one line down
  112. </td></tr><tr><td>Home key, Control-a</td><td>
  113. Moves the cursor to the beginning of the line.
  114. </td></tr><tr><td>End key, Control-e</td><td>
  115. Moves the cursor to the end of the line.
  116. </td></tr><tr><td>Control-Home</td><td>
  117. Scrolls to the first line and moves the cursor there.
  118. </td></tr><tr><td>Control-End</td><td>
  119. Scrolls to the last line and moves the cursor there.
  120. </td></tr><tr><td>Delete, Control-d</td><td>
  121. Deletes the character in front of the cursor.
  122. </td></tr><tr><td>Backspace</td><td>
  123. Deletes the character behind the cursor.
  124. </td></tr><tr><td>Control-k</td><td>
  125. Deletes the text until the end of the line and replaces the kill buffer
  126. with the deleted text. You can paste this text in a different place by
  127. using Control-y.
  128. </td></tr><tr><td>Control-y</td><td>
  129. Pastes the content of the kill ring into the current position.
  130. </td></tr><tr><td>Alt-d</td><td>
  131. Deletes the word above the cursor and adds it to the kill ring. You
  132. can paste the contents of the kill ring with Control-y.
  133. </td></tr><tr><td>Control-q</td><td>
  134. Quotes the next input character, to prevent the normal processing of
  135. key handling to take place.
  136. </td></tr></tbody></table>
  137. </div>
  138. <div class="inheritedMembers">
  139. <h5>Inherited Members</h5>
  140. <div>
  141. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetMinWidthHeight_Terminal_Gui_Size__">View.GetMinWidthHeight(Size)</a>
  142. </div>
  143. <div>
  144. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetMinWidthHeight">View.SetMinWidthHeight()</a>
  145. </div>
  146. <div>
  147. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_UpdateTextFormatterText">View.UpdateTextFormatterText()</a>
  148. </div>
  149. <div>
  150. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ProcessResizeView">View.ProcessResizeView()</a>
  151. </div>
  152. <div>
  153. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetNeedsDisplay">View.SetNeedsDisplay()</a>
  154. </div>
  155. <div>
  156. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClearLayoutNeeded">View.ClearLayoutNeeded()</a>
  157. </div>
  158. <div>
  159. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetNeedsDisplay_Terminal_Gui_Rect_">View.SetNeedsDisplay(Rect)</a>
  160. </div>
  161. <div>
  162. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetChildNeedsDisplay">View.SetChildNeedsDisplay()</a>
  163. </div>
  164. <div>
  165. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Add_Terminal_Gui_View_">View.Add(View)</a>
  166. </div>
  167. <div>
  168. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Add_Terminal_Gui_View___">View.Add(View[])</a>
  169. </div>
  170. <div>
  171. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_RemoveAll">View.RemoveAll()</a>
  172. </div>
  173. <div>
  174. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Remove_Terminal_Gui_View_">View.Remove(View)</a>
  175. </div>
  176. <div>
  177. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_BringSubviewToFront_Terminal_Gui_View_">View.BringSubviewToFront(View)</a>
  178. </div>
  179. <div>
  180. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SendSubviewToBack_Terminal_Gui_View_">View.SendSubviewToBack(View)</a>
  181. </div>
  182. <div>
  183. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SendSubviewBackwards_Terminal_Gui_View_">View.SendSubviewBackwards(View)</a>
  184. </div>
  185. <div>
  186. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_BringSubviewForward_Terminal_Gui_View_">View.BringSubviewForward(View)</a>
  187. </div>
  188. <div>
  189. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Clear">View.Clear()</a>
  190. </div>
  191. <div>
  192. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Clear_Terminal_Gui_Rect_">View.Clear(Rect)</a>
  193. </div>
  194. <div>
  195. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ScreenToView_System_Int32_System_Int32_">View.ScreenToView(Int32, Int32)</a>
  196. </div>
  197. <div>
  198. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClipToBounds">View.ClipToBounds()</a>
  199. </div>
  200. <div>
  201. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetClip_Terminal_Gui_Rect_">View.SetClip(Rect)</a>
  202. </div>
  203. <div>
  204. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_DrawFrame_Terminal_Gui_Rect_System_Int32_System_Boolean_">View.DrawFrame(Rect, Int32, Boolean)</a>
  205. </div>
  206. <div>
  207. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_DrawHotString_NStack_ustring_Terminal_Gui_Attribute_Terminal_Gui_Attribute_">View.DrawHotString(ustring, Attribute, Attribute)</a>
  208. </div>
  209. <div>
  210. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_DrawHotString_NStack_ustring_System_Boolean_Terminal_Gui_ColorScheme_">View.DrawHotString(ustring, Boolean, ColorScheme)</a>
  211. </div>
  212. <div>
  213. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Move_System_Int32_System_Int32_System_Boolean_">View.Move(Int32, Int32, Boolean)</a>
  214. </div>
  215. <div>
  216. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnAdded_Terminal_Gui_View_">View.OnAdded(View)</a>
  217. </div>
  218. <div>
  219. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnRemoved_Terminal_Gui_View_">View.OnRemoved(View)</a>
  220. </div>
  221. <div>
  222. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_AddRune_System_Int32_System_Int32_System_Rune_">View.AddRune(Int32, Int32, Rune)</a>
  223. </div>
  224. <div>
  225. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClearNeedsDisplay">View.ClearNeedsDisplay()</a>
  226. </div>
  227. <div>
  228. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnDrawContent_Terminal_Gui_Rect_">View.OnDrawContent(Rect)</a>
  229. </div>
  230. <div>
  231. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnDrawContentComplete_Terminal_Gui_Rect_">View.OnDrawContentComplete(Rect)</a>
  232. </div>
  233. <div>
  234. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetFocus">View.SetFocus()</a>
  235. </div>
  236. <div>
  237. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_InvokeKeybindings_Terminal_Gui_KeyEvent_">View.InvokeKeybindings(KeyEvent)</a>
  238. </div>
  239. <div>
  240. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_AddKeyBinding_Terminal_Gui_Key_Terminal_Gui_Command_">View.AddKeyBinding(Key, Command)</a>
  241. </div>
  242. <div>
  243. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ReplaceKeyBinding_Terminal_Gui_Key_Terminal_Gui_Key_">View.ReplaceKeyBinding(Key, Key)</a>
  244. </div>
  245. <div>
  246. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ContainsKeyBinding_Terminal_Gui_Key_">View.ContainsKeyBinding(Key)</a>
  247. </div>
  248. <div>
  249. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClearKeybindings">View.ClearKeybindings()</a>
  250. </div>
  251. <div>
  252. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClearKeybinding_Terminal_Gui_Key_">View.ClearKeybinding(Key)</a>
  253. </div>
  254. <div>
  255. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ClearKeybinding_Terminal_Gui_Command_">View.ClearKeybinding(Command)</a>
  256. </div>
  257. <div>
  258. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_AddCommand_Terminal_Gui_Command_System_Func_System_Nullable_System_Boolean___">View.AddCommand(Command, Func&lt;Nullable&lt;Boolean&gt;&gt;)</a>
  259. </div>
  260. <div>
  261. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetSupportedCommands">View.GetSupportedCommands()</a>
  262. </div>
  263. <div>
  264. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetKeyFromCommand_Terminal_Gui_Command_">View.GetKeyFromCommand(Command)</a>
  265. </div>
  266. <div>
  267. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ProcessHotKey_Terminal_Gui_KeyEvent_">View.ProcessHotKey(KeyEvent)</a>
  268. </div>
  269. <div>
  270. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ProcessColdKey_Terminal_Gui_KeyEvent_">View.ProcessColdKey(KeyEvent)</a>
  271. </div>
  272. <div>
  273. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnKeyDown_Terminal_Gui_KeyEvent_">View.OnKeyDown(KeyEvent)</a>
  274. </div>
  275. <div>
  276. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_EnsureFocus">View.EnsureFocus()</a>
  277. </div>
  278. <div>
  279. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_FocusFirst">View.FocusFirst()</a>
  280. </div>
  281. <div>
  282. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_FocusLast">View.FocusLast()</a>
  283. </div>
  284. <div>
  285. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_FocusPrev">View.FocusPrev()</a>
  286. </div>
  287. <div>
  288. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_FocusNext">View.FocusNext()</a>
  289. </div>
  290. <div>
  291. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_LayoutSubviews">View.LayoutSubviews()</a>
  292. </div>
  293. <div>
  294. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ToString">View.ToString()</a>
  295. </div>
  296. <div>
  297. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetAutoSize">View.GetAutoSize()</a>
  298. </div>
  299. <div>
  300. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetHotKeySpecifierLength_System_Boolean_">View.GetHotKeySpecifierLength(Boolean)</a>
  301. </div>
  302. <div>
  303. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetTextFormatterBoundsSize">View.GetTextFormatterBoundsSize()</a>
  304. </div>
  305. <div>
  306. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetBoundsTextFormatterSize">View.GetBoundsTextFormatterSize()</a>
  307. </div>
  308. <div>
  309. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnMouseEnter_Terminal_Gui_MouseEvent_">View.OnMouseEnter(MouseEvent)</a>
  310. </div>
  311. <div>
  312. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnMouseLeave_Terminal_Gui_MouseEvent_">View.OnMouseLeave(MouseEvent)</a>
  313. </div>
  314. <div>
  315. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnMouseEvent_Terminal_Gui_MouseEvent_">View.OnMouseEvent(MouseEvent)</a>
  316. </div>
  317. <div>
  318. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnMouseClick_Terminal_Gui_View_MouseEventArgs_">View.OnMouseClick(View.MouseEventArgs)</a>
  319. </div>
  320. <div>
  321. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnCanFocusChanged">View.OnCanFocusChanged()</a>
  322. </div>
  323. <div>
  324. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnEnabledChanged">View.OnEnabledChanged()</a>
  325. </div>
  326. <div>
  327. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnVisibleChanged">View.OnVisibleChanged()</a>
  328. </div>
  329. <div>
  330. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Dispose_System_Boolean_">View.Dispose(Boolean)</a>
  331. </div>
  332. <div>
  333. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_BeginInit">View.BeginInit()</a>
  334. </div>
  335. <div>
  336. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_EndInit">View.EndInit()</a>
  337. </div>
  338. <div>
  339. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetWidth_System_Int32_System_Int32__">View.SetWidth(Int32, Int32)</a>
  340. </div>
  341. <div>
  342. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SetHeight_System_Int32_System_Int32__">View.SetHeight(Int32, Int32)</a>
  343. </div>
  344. <div>
  345. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetCurrentWidth_System_Int32__">View.GetCurrentWidth(Int32)</a>
  346. </div>
  347. <div>
  348. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetCurrentHeight_System_Int32__">View.GetCurrentHeight(Int32)</a>
  349. </div>
  350. <div>
  351. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetNormalColor">View.GetNormalColor()</a>
  352. </div>
  353. <div>
  354. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_GetTopSuperView">View.GetTopSuperView()</a>
  355. </div>
  356. <div>
  357. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_HotKey">View.HotKey</a>
  358. </div>
  359. <div>
  360. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_HotKeySpecifier">View.HotKeySpecifier</a>
  361. </div>
  362. <div>
  363. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Shortcut">View.Shortcut</a>
  364. </div>
  365. <div>
  366. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ShortcutTag">View.ShortcutTag</a>
  367. </div>
  368. <div>
  369. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ShortcutAction">View.ShortcutAction</a>
  370. </div>
  371. <div>
  372. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Data">View.Data</a>
  373. </div>
  374. <div>
  375. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Driver">View.Driver</a>
  376. </div>
  377. <div>
  378. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Subviews">View.Subviews</a>
  379. </div>
  380. <div>
  381. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TabIndexes">View.TabIndexes</a>
  382. </div>
  383. <div>
  384. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TabIndex">View.TabIndex</a>
  385. </div>
  386. <div>
  387. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TabStop">View.TabStop</a>
  388. </div>
  389. <div>
  390. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Id">View.Id</a>
  391. </div>
  392. <div>
  393. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_IsCurrentTop">View.IsCurrentTop</a>
  394. </div>
  395. <div>
  396. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_WantMousePositionReports">View.WantMousePositionReports</a>
  397. </div>
  398. <div>
  399. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_WantContinuousButtonPressed">View.WantContinuousButtonPressed</a>
  400. </div>
  401. <div>
  402. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_LayoutStyle">View.LayoutStyle</a>
  403. </div>
  404. <div>
  405. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Bounds">View.Bounds</a>
  406. </div>
  407. <div>
  408. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_X">View.X</a>
  409. </div>
  410. <div>
  411. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Y">View.Y</a>
  412. </div>
  413. <div>
  414. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Width">View.Width</a>
  415. </div>
  416. <div>
  417. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Height">View.Height</a>
  418. </div>
  419. <div>
  420. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ForceValidatePosDim">View.ForceValidatePosDim</a>
  421. </div>
  422. <div>
  423. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TextFormatter">View.TextFormatter</a>
  424. </div>
  425. <div>
  426. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SuperView">View.SuperView</a>
  427. </div>
  428. <div>
  429. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_HasFocus">View.HasFocus</a>
  430. </div>
  431. <div>
  432. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Focused">View.Focused</a>
  433. </div>
  434. <div>
  435. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_MostFocused">View.MostFocused</a>
  436. </div>
  437. <div>
  438. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ColorScheme">View.ColorScheme</a>
  439. </div>
  440. <div>
  441. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_AutoSize">View.AutoSize</a>
  442. </div>
  443. <div>
  444. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_PreserveTrailingSpaces">View.PreserveTrailingSpaces</a>
  445. </div>
  446. <div>
  447. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TextAlignment">View.TextAlignment</a>
  448. </div>
  449. <div>
  450. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_VerticalTextAlignment">View.VerticalTextAlignment</a>
  451. </div>
  452. <div>
  453. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_TextDirection">View.TextDirection</a>
  454. </div>
  455. <div>
  456. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_IsInitialized">View.IsInitialized</a>
  457. </div>
  458. <div>
  459. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_IsAdded">View.IsAdded</a>
  460. </div>
  461. <div>
  462. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Enabled">View.Enabled</a>
  463. </div>
  464. <div>
  465. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Visible">View.Visible</a>
  466. </div>
  467. <div>
  468. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Border">View.Border</a>
  469. </div>
  470. <div>
  471. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Added">View.Added</a>
  472. </div>
  473. <div>
  474. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Removed">View.Removed</a>
  475. </div>
  476. <div>
  477. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Enter">View.Enter</a>
  478. </div>
  479. <div>
  480. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Leave">View.Leave</a>
  481. </div>
  482. <div>
  483. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_MouseEnter">View.MouseEnter</a>
  484. </div>
  485. <div>
  486. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_MouseLeave">View.MouseLeave</a>
  487. </div>
  488. <div>
  489. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_MouseClick">View.MouseClick</a>
  490. </div>
  491. <div>
  492. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_CanFocusChanged">View.CanFocusChanged</a>
  493. </div>
  494. <div>
  495. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_EnabledChanged">View.EnabledChanged</a>
  496. </div>
  497. <div>
  498. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_VisibleChanged">View.VisibleChanged</a>
  499. </div>
  500. <div>
  501. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_HotKeyChanged">View.HotKeyChanged</a>
  502. </div>
  503. <div>
  504. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_DrawContent">View.DrawContent</a>
  505. </div>
  506. <div>
  507. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_DrawContentComplete">View.DrawContentComplete</a>
  508. </div>
  509. <div>
  510. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_KeyPress">View.KeyPress</a>
  511. </div>
  512. <div>
  513. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_KeyDown">View.KeyDown</a>
  514. </div>
  515. <div>
  516. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_KeyUp">View.KeyUp</a>
  517. </div>
  518. <div>
  519. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_LayoutStarted">View.LayoutStarted</a>
  520. </div>
  521. <div>
  522. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_LayoutComplete">View.LayoutComplete</a>
  523. </div>
  524. <div>
  525. <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Initialized">View.Initialized</a>
  526. </div>
  527. <div>
  528. <a class="xref" href="Terminal.Gui.Responder.html#Terminal_Gui_Responder_Dispose">Responder.Dispose()</a>
  529. </div>
  530. </div>
  531. <h6><strong>Namespace</strong>: <a class="xref" href="Terminal.Gui.html">Terminal.Gui</a></h6>
  532. <h6><strong>Assembly</strong>: Terminal.Gui.dll</h6>
  533. <h5 id="Terminal_Gui_TextView_syntax">Syntax</h5>
  534. <div class="codewrapper">
  535. <pre><code class="lang-csharp hljs">public class TextView : View</code></pre>
  536. </div>
  537. <h3 id="constructors">Constructors
  538. </h3>
  539. <a id="Terminal_Gui_TextView__ctor_" data-uid="Terminal.Gui.TextView.#ctor*"></a>
  540. <h4 id="Terminal_Gui_TextView__ctor" data-uid="Terminal.Gui.TextView.#ctor">TextView()</h4>
  541. <div class="markdown level1 summary">
  542. Initializes a <a class="xref" href="Terminal.Gui.TextView.html">TextView</a> on the specified area,
  543. with dimensions controlled with the X, Y, Width and Height properties.
  544. </div>
  545. <div class="markdown level1 conceptual"></div>
  546. <h5 class="decalaration">Declaration</h5>
  547. <div class="codewrapper">
  548. <pre><code class="lang-csharp hljs">public TextView()</code></pre>
  549. </div>
  550. <a id="Terminal_Gui_TextView__ctor_" data-uid="Terminal.Gui.TextView.#ctor*"></a>
  551. <h4 id="Terminal_Gui_TextView__ctor_Terminal_Gui_Rect_" data-uid="Terminal.Gui.TextView.#ctor(Terminal.Gui.Rect)">TextView(Rect)</h4>
  552. <div class="markdown level1 summary">
  553. Initializes a <a class="xref" href="Terminal.Gui.TextView.html">TextView</a> on the specified area, with absolute position and size.
  554. </div>
  555. <div class="markdown level1 conceptual"></div>
  556. <h5 class="decalaration">Declaration</h5>
  557. <div class="codewrapper">
  558. <pre><code class="lang-csharp hljs">public TextView(Rect frame)</code></pre>
  559. </div>
  560. <h5 class="parameters">Parameters</h5>
  561. <table class="table table-bordered table-striped table-condensed">
  562. <thead>
  563. <tr>
  564. <th>Type</th>
  565. <th>Name</th>
  566. <th>Description</th>
  567. </tr>
  568. </thead>
  569. <tbody>
  570. <tr>
  571. <td><a class="xref" href="Terminal.Gui.Rect.html">Rect</a></td>
  572. <td><span class="parametername">frame</span></td>
  573. <td></td>
  574. </tr>
  575. </tbody>
  576. </table>
  577. <h3 id="properties">Properties
  578. </h3>
  579. <a id="Terminal_Gui_TextView_AllowsReturn_" data-uid="Terminal.Gui.TextView.AllowsReturn*"></a>
  580. <h4 id="Terminal_Gui_TextView_AllowsReturn" data-uid="Terminal.Gui.TextView.AllowsReturn">AllowsReturn</h4>
  581. <div class="markdown level1 summary">
  582. Gets or sets a value indicating whether pressing ENTER in a <a class="xref" href="Terminal.Gui.TextView.html">TextView</a>
  583. creates a new line of text in the view or activates the default button for the toplevel.
  584. </div>
  585. <div class="markdown level1 conceptual"></div>
  586. <h5 class="decalaration">Declaration</h5>
  587. <div class="codewrapper">
  588. <pre><code class="lang-csharp hljs">public bool AllowsReturn { get; set; }</code></pre>
  589. </div>
  590. <h5 class="propertyValue">Property Value</h5>
  591. <table class="table table-bordered table-striped table-condensed">
  592. <thead>
  593. <tr>
  594. <th>Type</th>
  595. <th>Description</th>
  596. </tr>
  597. </thead>
  598. <tbody>
  599. <tr>
  600. <td><span class="xref">System.Boolean</span></td>
  601. <td></td>
  602. </tr>
  603. </tbody>
  604. </table>
  605. <a id="Terminal_Gui_TextView_AllowsTab_" data-uid="Terminal.Gui.TextView.AllowsTab*"></a>
  606. <h4 id="Terminal_Gui_TextView_AllowsTab" data-uid="Terminal.Gui.TextView.AllowsTab">AllowsTab</h4>
  607. <div class="markdown level1 summary">
  608. Gets or sets whether the <a class="xref" href="Terminal.Gui.TextView.html">TextView</a> inserts a tab character into the text or ignores
  609. tab input. If set to `false` and the user presses the tab key (or shift-tab) the focus will move to the
  610. next view (or previous with shift-tab). The default is `true`; if the user presses the tab key, a tab
  611. character will be inserted into the text.
  612. </div>
  613. <div class="markdown level1 conceptual"></div>
  614. <h5 class="decalaration">Declaration</h5>
  615. <div class="codewrapper">
  616. <pre><code class="lang-csharp hljs">public bool AllowsTab { get; set; }</code></pre>
  617. </div>
  618. <h5 class="propertyValue">Property Value</h5>
  619. <table class="table table-bordered table-striped table-condensed">
  620. <thead>
  621. <tr>
  622. <th>Type</th>
  623. <th>Description</th>
  624. </tr>
  625. </thead>
  626. <tbody>
  627. <tr>
  628. <td><span class="xref">System.Boolean</span></td>
  629. <td></td>
  630. </tr>
  631. </tbody>
  632. </table>
  633. <a id="Terminal_Gui_TextView_Autocomplete_" data-uid="Terminal.Gui.TextView.Autocomplete*"></a>
  634. <h4 id="Terminal_Gui_TextView_Autocomplete" data-uid="Terminal.Gui.TextView.Autocomplete">Autocomplete</h4>
  635. <div class="markdown level1 summary">
  636. Provides autocomplete context menu based on suggestions at the current cursor
  637. position. Populate <a class="xref" href="Terminal.Gui.Autocomplete.html#Terminal_Gui_Autocomplete_AllSuggestions">AllSuggestions</a> to enable this feature
  638. </div>
  639. <div class="markdown level1 conceptual"></div>
  640. <h5 class="decalaration">Declaration</h5>
  641. <div class="codewrapper">
  642. <pre><code class="lang-csharp hljs">public IAutocomplete Autocomplete { get; protected set; }</code></pre>
  643. </div>
  644. <h5 class="propertyValue">Property Value</h5>
  645. <table class="table table-bordered table-striped table-condensed">
  646. <thead>
  647. <tr>
  648. <th>Type</th>
  649. <th>Description</th>
  650. </tr>
  651. </thead>
  652. <tbody>
  653. <tr>
  654. <td><a class="xref" href="Terminal.Gui.IAutocomplete.html">IAutocomplete</a></td>
  655. <td></td>
  656. </tr>
  657. </tbody>
  658. </table>
  659. <a id="Terminal_Gui_TextView_BottomOffset_" data-uid="Terminal.Gui.TextView.BottomOffset*"></a>
  660. <h4 id="Terminal_Gui_TextView_BottomOffset" data-uid="Terminal.Gui.TextView.BottomOffset">BottomOffset</h4>
  661. <div class="markdown level1 summary">
  662. The bottom offset needed to use a horizontal scrollbar or for another reason.
  663. This is only needed with the keyboard navigation.
  664. </div>
  665. <div class="markdown level1 conceptual"></div>
  666. <h5 class="decalaration">Declaration</h5>
  667. <div class="codewrapper">
  668. <pre><code class="lang-csharp hljs">public int BottomOffset { get; set; }</code></pre>
  669. </div>
  670. <h5 class="propertyValue">Property Value</h5>
  671. <table class="table table-bordered table-striped table-condensed">
  672. <thead>
  673. <tr>
  674. <th>Type</th>
  675. <th>Description</th>
  676. </tr>
  677. </thead>
  678. <tbody>
  679. <tr>
  680. <td><span class="xref">System.Int32</span></td>
  681. <td></td>
  682. </tr>
  683. </tbody>
  684. </table>
  685. <a id="Terminal_Gui_TextView_CanFocus_" data-uid="Terminal.Gui.TextView.CanFocus*"></a>
  686. <h4 id="Terminal_Gui_TextView_CanFocus" data-uid="Terminal.Gui.TextView.CanFocus">CanFocus</h4>
  687. <div class="markdown level1 summary">
  688. Gets or sets a value indicating whether this <a class="xref" href="Terminal.Gui.Responder.html">Responder</a> can focus.
  689. </div>
  690. <div class="markdown level1 conceptual"></div>
  691. <h5 class="decalaration">Declaration</h5>
  692. <div class="codewrapper">
  693. <pre><code class="lang-csharp hljs">public override bool CanFocus { get; set; }</code></pre>
  694. </div>
  695. <h5 class="propertyValue">Property Value</h5>
  696. <table class="table table-bordered table-striped table-condensed">
  697. <thead>
  698. <tr>
  699. <th>Type</th>
  700. <th>Description</th>
  701. </tr>
  702. </thead>
  703. <tbody>
  704. <tr>
  705. <td><span class="xref">System.Boolean</span></td>
  706. <td><code>true</code> if can focus; otherwise, <code>false</code>.</td>
  707. </tr>
  708. </tbody>
  709. </table>
  710. <h5 class="overrides">Overrides</h5>
  711. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_CanFocus">View.CanFocus</a></div>
  712. <a id="Terminal_Gui_TextView_ContextMenu_" data-uid="Terminal.Gui.TextView.ContextMenu*"></a>
  713. <h4 id="Terminal_Gui_TextView_ContextMenu" data-uid="Terminal.Gui.TextView.ContextMenu">ContextMenu</h4>
  714. <div class="markdown level1 summary">
  715. Get the <a class="xref" href="Terminal.Gui.TextView.html#Terminal_Gui_TextView_ContextMenu">ContextMenu</a> for this view.
  716. </div>
  717. <div class="markdown level1 conceptual"></div>
  718. <h5 class="decalaration">Declaration</h5>
  719. <div class="codewrapper">
  720. <pre><code class="lang-csharp hljs">public ContextMenu ContextMenu { get; }</code></pre>
  721. </div>
  722. <h5 class="propertyValue">Property Value</h5>
  723. <table class="table table-bordered table-striped table-condensed">
  724. <thead>
  725. <tr>
  726. <th>Type</th>
  727. <th>Description</th>
  728. </tr>
  729. </thead>
  730. <tbody>
  731. <tr>
  732. <td><a class="xref" href="Terminal.Gui.ContextMenu.html">ContextMenu</a></td>
  733. <td></td>
  734. </tr>
  735. </tbody>
  736. </table>
  737. <a id="Terminal_Gui_TextView_CurrentColumn_" data-uid="Terminal.Gui.TextView.CurrentColumn*"></a>
  738. <h4 id="Terminal_Gui_TextView_CurrentColumn" data-uid="Terminal.Gui.TextView.CurrentColumn">CurrentColumn</h4>
  739. <div class="markdown level1 summary">
  740. Gets the cursor column.
  741. </div>
  742. <div class="markdown level1 conceptual"></div>
  743. <h5 class="decalaration">Declaration</h5>
  744. <div class="codewrapper">
  745. <pre><code class="lang-csharp hljs">public int CurrentColumn { get; }</code></pre>
  746. </div>
  747. <h5 class="propertyValue">Property Value</h5>
  748. <table class="table table-bordered table-striped table-condensed">
  749. <thead>
  750. <tr>
  751. <th>Type</th>
  752. <th>Description</th>
  753. </tr>
  754. </thead>
  755. <tbody>
  756. <tr>
  757. <td><span class="xref">System.Int32</span></td>
  758. <td>The cursor column.</td>
  759. </tr>
  760. </tbody>
  761. </table>
  762. <a id="Terminal_Gui_TextView_CurrentRow_" data-uid="Terminal.Gui.TextView.CurrentRow*"></a>
  763. <h4 id="Terminal_Gui_TextView_CurrentRow" data-uid="Terminal.Gui.TextView.CurrentRow">CurrentRow</h4>
  764. <div class="markdown level1 summary">
  765. Gets the current cursor row.
  766. </div>
  767. <div class="markdown level1 conceptual"></div>
  768. <h5 class="decalaration">Declaration</h5>
  769. <div class="codewrapper">
  770. <pre><code class="lang-csharp hljs">public int CurrentRow { get; }</code></pre>
  771. </div>
  772. <h5 class="propertyValue">Property Value</h5>
  773. <table class="table table-bordered table-striped table-condensed">
  774. <thead>
  775. <tr>
  776. <th>Type</th>
  777. <th>Description</th>
  778. </tr>
  779. </thead>
  780. <tbody>
  781. <tr>
  782. <td><span class="xref">System.Int32</span></td>
  783. <td></td>
  784. </tr>
  785. </tbody>
  786. </table>
  787. <a id="Terminal_Gui_TextView_CursorPosition_" data-uid="Terminal.Gui.TextView.CursorPosition*"></a>
  788. <h4 id="Terminal_Gui_TextView_CursorPosition" data-uid="Terminal.Gui.TextView.CursorPosition">CursorPosition</h4>
  789. <div class="markdown level1 summary">
  790. Sets or gets the current cursor position.
  791. </div>
  792. <div class="markdown level1 conceptual"></div>
  793. <h5 class="decalaration">Declaration</h5>
  794. <div class="codewrapper">
  795. <pre><code class="lang-csharp hljs">public Point CursorPosition { get; set; }</code></pre>
  796. </div>
  797. <h5 class="propertyValue">Property Value</h5>
  798. <table class="table table-bordered table-striped table-condensed">
  799. <thead>
  800. <tr>
  801. <th>Type</th>
  802. <th>Description</th>
  803. </tr>
  804. </thead>
  805. <tbody>
  806. <tr>
  807. <td><a class="xref" href="Terminal.Gui.Point.html">Point</a></td>
  808. <td></td>
  809. </tr>
  810. </tbody>
  811. </table>
  812. <a id="Terminal_Gui_TextView_DesiredCursorVisibility_" data-uid="Terminal.Gui.TextView.DesiredCursorVisibility*"></a>
  813. <h4 id="Terminal_Gui_TextView_DesiredCursorVisibility" data-uid="Terminal.Gui.TextView.DesiredCursorVisibility">DesiredCursorVisibility</h4>
  814. <div class="markdown level1 summary">
  815. Get / Set the wished cursor when the field is focused
  816. </div>
  817. <div class="markdown level1 conceptual"></div>
  818. <h5 class="decalaration">Declaration</h5>
  819. <div class="codewrapper">
  820. <pre><code class="lang-csharp hljs">public CursorVisibility DesiredCursorVisibility { get; set; }</code></pre>
  821. </div>
  822. <h5 class="propertyValue">Property Value</h5>
  823. <table class="table table-bordered table-striped table-condensed">
  824. <thead>
  825. <tr>
  826. <th>Type</th>
  827. <th>Description</th>
  828. </tr>
  829. </thead>
  830. <tbody>
  831. <tr>
  832. <td><a class="xref" href="Terminal.Gui.CursorVisibility.html">CursorVisibility</a></td>
  833. <td></td>
  834. </tr>
  835. </tbody>
  836. </table>
  837. <a id="Terminal_Gui_TextView_Frame_" data-uid="Terminal.Gui.TextView.Frame*"></a>
  838. <h4 id="Terminal_Gui_TextView_Frame" data-uid="Terminal.Gui.TextView.Frame">Frame</h4>
  839. <div class="markdown level1 summary">
  840. Gets or sets the frame for the view. The frame is relative to the view&apos;s container (<a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_SuperView">SuperView</a>).
  841. </div>
  842. <div class="markdown level1 conceptual"></div>
  843. <h5 class="decalaration">Declaration</h5>
  844. <div class="codewrapper">
  845. <pre><code class="lang-csharp hljs">public override Rect Frame { get; set; }</code></pre>
  846. </div>
  847. <h5 class="propertyValue">Property Value</h5>
  848. <table class="table table-bordered table-striped table-condensed">
  849. <thead>
  850. <tr>
  851. <th>Type</th>
  852. <th>Description</th>
  853. </tr>
  854. </thead>
  855. <tbody>
  856. <tr>
  857. <td><a class="xref" href="Terminal.Gui.Rect.html">Rect</a></td>
  858. <td>The frame.</td>
  859. </tr>
  860. </tbody>
  861. </table>
  862. <h5 class="overrides">Overrides</h5>
  863. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Frame">View.Frame</a></div>
  864. <a id="Terminal_Gui_TextView_HasHistoryChanges_" data-uid="Terminal.Gui.TextView.HasHistoryChanges*"></a>
  865. <h4 id="Terminal_Gui_TextView_HasHistoryChanges" data-uid="Terminal.Gui.TextView.HasHistoryChanges">HasHistoryChanges</h4>
  866. <div class="markdown level1 summary">
  867. Indicates whatever the text has history changes or not.
  868. <span class="xref">true</span> if the text has history changes <span class="xref">false</span> otherwise.
  869. </div>
  870. <div class="markdown level1 conceptual"></div>
  871. <h5 class="decalaration">Declaration</h5>
  872. <div class="codewrapper">
  873. <pre><code class="lang-csharp hljs">public bool HasHistoryChanges { get; }</code></pre>
  874. </div>
  875. <h5 class="propertyValue">Property Value</h5>
  876. <table class="table table-bordered table-striped table-condensed">
  877. <thead>
  878. <tr>
  879. <th>Type</th>
  880. <th>Description</th>
  881. </tr>
  882. </thead>
  883. <tbody>
  884. <tr>
  885. <td><span class="xref">System.Boolean</span></td>
  886. <td></td>
  887. </tr>
  888. </tbody>
  889. </table>
  890. <a id="Terminal_Gui_TextView_IsDirty_" data-uid="Terminal.Gui.TextView.IsDirty*"></a>
  891. <h4 id="Terminal_Gui_TextView_IsDirty" data-uid="Terminal.Gui.TextView.IsDirty">IsDirty</h4>
  892. <div class="markdown level1 summary">
  893. Indicates whatever the text was changed or not.
  894. <span class="xref">true</span> if the text was changed <span class="xref">false</span> otherwise.
  895. </div>
  896. <div class="markdown level1 conceptual"></div>
  897. <h5 class="decalaration">Declaration</h5>
  898. <div class="codewrapper">
  899. <pre><code class="lang-csharp hljs">public bool IsDirty { get; }</code></pre>
  900. </div>
  901. <h5 class="propertyValue">Property Value</h5>
  902. <table class="table table-bordered table-striped table-condensed">
  903. <thead>
  904. <tr>
  905. <th>Type</th>
  906. <th>Description</th>
  907. </tr>
  908. </thead>
  909. <tbody>
  910. <tr>
  911. <td><span class="xref">System.Boolean</span></td>
  912. <td></td>
  913. </tr>
  914. </tbody>
  915. </table>
  916. <a id="Terminal_Gui_TextView_LeftColumn_" data-uid="Terminal.Gui.TextView.LeftColumn*"></a>
  917. <h4 id="Terminal_Gui_TextView_LeftColumn" data-uid="Terminal.Gui.TextView.LeftColumn">LeftColumn</h4>
  918. <div class="markdown level1 summary">
  919. Gets or sets the left column.
  920. </div>
  921. <div class="markdown level1 conceptual"></div>
  922. <h5 class="decalaration">Declaration</h5>
  923. <div class="codewrapper">
  924. <pre><code class="lang-csharp hljs">public int LeftColumn { get; set; }</code></pre>
  925. </div>
  926. <h5 class="propertyValue">Property Value</h5>
  927. <table class="table table-bordered table-striped table-condensed">
  928. <thead>
  929. <tr>
  930. <th>Type</th>
  931. <th>Description</th>
  932. </tr>
  933. </thead>
  934. <tbody>
  935. <tr>
  936. <td><span class="xref">System.Int32</span></td>
  937. <td></td>
  938. </tr>
  939. </tbody>
  940. </table>
  941. <a id="Terminal_Gui_TextView_Lines_" data-uid="Terminal.Gui.TextView.Lines*"></a>
  942. <h4 id="Terminal_Gui_TextView_Lines" data-uid="Terminal.Gui.TextView.Lines">Lines</h4>
  943. <div class="markdown level1 summary">
  944. Gets the number of lines.
  945. </div>
  946. <div class="markdown level1 conceptual"></div>
  947. <h5 class="decalaration">Declaration</h5>
  948. <div class="codewrapper">
  949. <pre><code class="lang-csharp hljs">public int Lines { get; }</code></pre>
  950. </div>
  951. <h5 class="propertyValue">Property Value</h5>
  952. <table class="table table-bordered table-striped table-condensed">
  953. <thead>
  954. <tr>
  955. <th>Type</th>
  956. <th>Description</th>
  957. </tr>
  958. </thead>
  959. <tbody>
  960. <tr>
  961. <td><span class="xref">System.Int32</span></td>
  962. <td></td>
  963. </tr>
  964. </tbody>
  965. </table>
  966. <a id="Terminal_Gui_TextView_Maxlength_" data-uid="Terminal.Gui.TextView.Maxlength*"></a>
  967. <h4 id="Terminal_Gui_TextView_Maxlength" data-uid="Terminal.Gui.TextView.Maxlength">Maxlength</h4>
  968. <div class="markdown level1 summary">
  969. Gets the maximum visible length line.
  970. </div>
  971. <div class="markdown level1 conceptual"></div>
  972. <h5 class="decalaration">Declaration</h5>
  973. <div class="codewrapper">
  974. <pre><code class="lang-csharp hljs">public int Maxlength { get; }</code></pre>
  975. </div>
  976. <h5 class="propertyValue">Property Value</h5>
  977. <table class="table table-bordered table-striped table-condensed">
  978. <thead>
  979. <tr>
  980. <th>Type</th>
  981. <th>Description</th>
  982. </tr>
  983. </thead>
  984. <tbody>
  985. <tr>
  986. <td><span class="xref">System.Int32</span></td>
  987. <td></td>
  988. </tr>
  989. </tbody>
  990. </table>
  991. <a id="Terminal_Gui_TextView_Multiline_" data-uid="Terminal.Gui.TextView.Multiline*"></a>
  992. <h4 id="Terminal_Gui_TextView_Multiline" data-uid="Terminal.Gui.TextView.Multiline">Multiline</h4>
  993. <div class="markdown level1 summary">
  994. Gets or sets a value indicating whether this <a class="xref" href="Terminal.Gui.TextView.html">TextView</a> is a multiline text view.
  995. </div>
  996. <div class="markdown level1 conceptual"></div>
  997. <h5 class="decalaration">Declaration</h5>
  998. <div class="codewrapper">
  999. <pre><code class="lang-csharp hljs">public bool Multiline { get; set; }</code></pre>
  1000. </div>
  1001. <h5 class="propertyValue">Property Value</h5>
  1002. <table class="table table-bordered table-striped table-condensed">
  1003. <thead>
  1004. <tr>
  1005. <th>Type</th>
  1006. <th>Description</th>
  1007. </tr>
  1008. </thead>
  1009. <tbody>
  1010. <tr>
  1011. <td><span class="xref">System.Boolean</span></td>
  1012. <td></td>
  1013. </tr>
  1014. </tbody>
  1015. </table>
  1016. <a id="Terminal_Gui_TextView_ReadOnly_" data-uid="Terminal.Gui.TextView.ReadOnly*"></a>
  1017. <h4 id="Terminal_Gui_TextView_ReadOnly" data-uid="Terminal.Gui.TextView.ReadOnly">ReadOnly</h4>
  1018. <div class="markdown level1 summary">
  1019. Gets or sets whether the <a class="xref" href="Terminal.Gui.TextView.html">TextView</a> is in read-only mode or not
  1020. </div>
  1021. <div class="markdown level1 conceptual"></div>
  1022. <h5 class="decalaration">Declaration</h5>
  1023. <div class="codewrapper">
  1024. <pre><code class="lang-csharp hljs">public bool ReadOnly { get; set; }</code></pre>
  1025. </div>
  1026. <h5 class="propertyValue">Property Value</h5>
  1027. <table class="table table-bordered table-striped table-condensed">
  1028. <thead>
  1029. <tr>
  1030. <th>Type</th>
  1031. <th>Description</th>
  1032. </tr>
  1033. </thead>
  1034. <tbody>
  1035. <tr>
  1036. <td><span class="xref">System.Boolean</span></td>
  1037. <td>Boolean value(Default false)</td>
  1038. </tr>
  1039. </tbody>
  1040. </table>
  1041. <a id="Terminal_Gui_TextView_RightOffset_" data-uid="Terminal.Gui.TextView.RightOffset*"></a>
  1042. <h4 id="Terminal_Gui_TextView_RightOffset" data-uid="Terminal.Gui.TextView.RightOffset">RightOffset</h4>
  1043. <div class="markdown level1 summary">
  1044. The right offset needed to use a vertical scrollbar or for another reason.
  1045. This is only needed with the keyboard navigation.
  1046. </div>
  1047. <div class="markdown level1 conceptual"></div>
  1048. <h5 class="decalaration">Declaration</h5>
  1049. <div class="codewrapper">
  1050. <pre><code class="lang-csharp hljs">public int RightOffset { get; set; }</code></pre>
  1051. </div>
  1052. <h5 class="propertyValue">Property Value</h5>
  1053. <table class="table table-bordered table-striped table-condensed">
  1054. <thead>
  1055. <tr>
  1056. <th>Type</th>
  1057. <th>Description</th>
  1058. </tr>
  1059. </thead>
  1060. <tbody>
  1061. <tr>
  1062. <td><span class="xref">System.Int32</span></td>
  1063. <td></td>
  1064. </tr>
  1065. </tbody>
  1066. </table>
  1067. <a id="Terminal_Gui_TextView_SelectedLength_" data-uid="Terminal.Gui.TextView.SelectedLength*"></a>
  1068. <h4 id="Terminal_Gui_TextView_SelectedLength" data-uid="Terminal.Gui.TextView.SelectedLength">SelectedLength</h4>
  1069. <div class="markdown level1 summary">
  1070. Length of the selected text.
  1071. </div>
  1072. <div class="markdown level1 conceptual"></div>
  1073. <h5 class="decalaration">Declaration</h5>
  1074. <div class="codewrapper">
  1075. <pre><code class="lang-csharp hljs">public int SelectedLength { get; }</code></pre>
  1076. </div>
  1077. <h5 class="propertyValue">Property Value</h5>
  1078. <table class="table table-bordered table-striped table-condensed">
  1079. <thead>
  1080. <tr>
  1081. <th>Type</th>
  1082. <th>Description</th>
  1083. </tr>
  1084. </thead>
  1085. <tbody>
  1086. <tr>
  1087. <td><span class="xref">System.Int32</span></td>
  1088. <td></td>
  1089. </tr>
  1090. </tbody>
  1091. </table>
  1092. <a id="Terminal_Gui_TextView_SelectedText_" data-uid="Terminal.Gui.TextView.SelectedText*"></a>
  1093. <h4 id="Terminal_Gui_TextView_SelectedText" data-uid="Terminal.Gui.TextView.SelectedText">SelectedText</h4>
  1094. <div class="markdown level1 summary">
  1095. The selected text.
  1096. </div>
  1097. <div class="markdown level1 conceptual"></div>
  1098. <h5 class="decalaration">Declaration</h5>
  1099. <div class="codewrapper">
  1100. <pre><code class="lang-csharp hljs">public ustring SelectedText { get; }</code></pre>
  1101. </div>
  1102. <h5 class="propertyValue">Property Value</h5>
  1103. <table class="table table-bordered table-striped table-condensed">
  1104. <thead>
  1105. <tr>
  1106. <th>Type</th>
  1107. <th>Description</th>
  1108. </tr>
  1109. </thead>
  1110. <tbody>
  1111. <tr>
  1112. <td><span class="xref">NStack.ustring</span></td>
  1113. <td></td>
  1114. </tr>
  1115. </tbody>
  1116. </table>
  1117. <a id="Terminal_Gui_TextView_Selecting_" data-uid="Terminal.Gui.TextView.Selecting*"></a>
  1118. <h4 id="Terminal_Gui_TextView_Selecting" data-uid="Terminal.Gui.TextView.Selecting">Selecting</h4>
  1119. <div class="markdown level1 summary">
  1120. Get or sets the selecting.
  1121. </div>
  1122. <div class="markdown level1 conceptual"></div>
  1123. <h5 class="decalaration">Declaration</h5>
  1124. <div class="codewrapper">
  1125. <pre><code class="lang-csharp hljs">public bool Selecting { get; set; }</code></pre>
  1126. </div>
  1127. <h5 class="propertyValue">Property Value</h5>
  1128. <table class="table table-bordered table-striped table-condensed">
  1129. <thead>
  1130. <tr>
  1131. <th>Type</th>
  1132. <th>Description</th>
  1133. </tr>
  1134. </thead>
  1135. <tbody>
  1136. <tr>
  1137. <td><span class="xref">System.Boolean</span></td>
  1138. <td></td>
  1139. </tr>
  1140. </tbody>
  1141. </table>
  1142. <a id="Terminal_Gui_TextView_SelectionStartColumn_" data-uid="Terminal.Gui.TextView.SelectionStartColumn*"></a>
  1143. <h4 id="Terminal_Gui_TextView_SelectionStartColumn" data-uid="Terminal.Gui.TextView.SelectionStartColumn">SelectionStartColumn</h4>
  1144. <div class="markdown level1 summary">
  1145. Start column position of the selected text.
  1146. </div>
  1147. <div class="markdown level1 conceptual"></div>
  1148. <h5 class="decalaration">Declaration</h5>
  1149. <div class="codewrapper">
  1150. <pre><code class="lang-csharp hljs">public int SelectionStartColumn { get; set; }</code></pre>
  1151. </div>
  1152. <h5 class="propertyValue">Property Value</h5>
  1153. <table class="table table-bordered table-striped table-condensed">
  1154. <thead>
  1155. <tr>
  1156. <th>Type</th>
  1157. <th>Description</th>
  1158. </tr>
  1159. </thead>
  1160. <tbody>
  1161. <tr>
  1162. <td><span class="xref">System.Int32</span></td>
  1163. <td></td>
  1164. </tr>
  1165. </tbody>
  1166. </table>
  1167. <a id="Terminal_Gui_TextView_SelectionStartRow_" data-uid="Terminal.Gui.TextView.SelectionStartRow*"></a>
  1168. <h4 id="Terminal_Gui_TextView_SelectionStartRow" data-uid="Terminal.Gui.TextView.SelectionStartRow">SelectionStartRow</h4>
  1169. <div class="markdown level1 summary">
  1170. Start row position of the selected text.
  1171. </div>
  1172. <div class="markdown level1 conceptual"></div>
  1173. <h5 class="decalaration">Declaration</h5>
  1174. <div class="codewrapper">
  1175. <pre><code class="lang-csharp hljs">public int SelectionStartRow { get; set; }</code></pre>
  1176. </div>
  1177. <h5 class="propertyValue">Property Value</h5>
  1178. <table class="table table-bordered table-striped table-condensed">
  1179. <thead>
  1180. <tr>
  1181. <th>Type</th>
  1182. <th>Description</th>
  1183. </tr>
  1184. </thead>
  1185. <tbody>
  1186. <tr>
  1187. <td><span class="xref">System.Int32</span></td>
  1188. <td></td>
  1189. </tr>
  1190. </tbody>
  1191. </table>
  1192. <a id="Terminal_Gui_TextView_TabWidth_" data-uid="Terminal.Gui.TextView.TabWidth*"></a>
  1193. <h4 id="Terminal_Gui_TextView_TabWidth" data-uid="Terminal.Gui.TextView.TabWidth">TabWidth</h4>
  1194. <div class="markdown level1 summary">
  1195. Gets or sets a value indicating the number of whitespace when pressing the TAB key.
  1196. </div>
  1197. <div class="markdown level1 conceptual"></div>
  1198. <h5 class="decalaration">Declaration</h5>
  1199. <div class="codewrapper">
  1200. <pre><code class="lang-csharp hljs">public int TabWidth { get; set; }</code></pre>
  1201. </div>
  1202. <h5 class="propertyValue">Property Value</h5>
  1203. <table class="table table-bordered table-striped table-condensed">
  1204. <thead>
  1205. <tr>
  1206. <th>Type</th>
  1207. <th>Description</th>
  1208. </tr>
  1209. </thead>
  1210. <tbody>
  1211. <tr>
  1212. <td><span class="xref">System.Int32</span></td>
  1213. <td></td>
  1214. </tr>
  1215. </tbody>
  1216. </table>
  1217. <a id="Terminal_Gui_TextView_Text_" data-uid="Terminal.Gui.TextView.Text*"></a>
  1218. <h4 id="Terminal_Gui_TextView_Text" data-uid="Terminal.Gui.TextView.Text">Text</h4>
  1219. <div class="markdown level1 summary">
  1220. Sets or gets the text in the <a class="xref" href="Terminal.Gui.TextView.html">TextView</a>.
  1221. </div>
  1222. <div class="markdown level1 conceptual"></div>
  1223. <h5 class="decalaration">Declaration</h5>
  1224. <div class="codewrapper">
  1225. <pre><code class="lang-csharp hljs">public override ustring Text { get; set; }</code></pre>
  1226. </div>
  1227. <h5 class="propertyValue">Property Value</h5>
  1228. <table class="table table-bordered table-striped table-condensed">
  1229. <thead>
  1230. <tr>
  1231. <th>Type</th>
  1232. <th>Description</th>
  1233. </tr>
  1234. </thead>
  1235. <tbody>
  1236. <tr>
  1237. <td><span class="xref">NStack.ustring</span></td>
  1238. <td></td>
  1239. </tr>
  1240. </tbody>
  1241. </table>
  1242. <h5 class="overrides">Overrides</h5>
  1243. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Text">View.Text</a></div>
  1244. <a id="Terminal_Gui_TextView_TopRow_" data-uid="Terminal.Gui.TextView.TopRow*"></a>
  1245. <h4 id="Terminal_Gui_TextView_TopRow" data-uid="Terminal.Gui.TextView.TopRow">TopRow</h4>
  1246. <div class="markdown level1 summary">
  1247. Gets or sets the top row.
  1248. </div>
  1249. <div class="markdown level1 conceptual"></div>
  1250. <h5 class="decalaration">Declaration</h5>
  1251. <div class="codewrapper">
  1252. <pre><code class="lang-csharp hljs">public int TopRow { get; set; }</code></pre>
  1253. </div>
  1254. <h5 class="propertyValue">Property Value</h5>
  1255. <table class="table table-bordered table-striped table-condensed">
  1256. <thead>
  1257. <tr>
  1258. <th>Type</th>
  1259. <th>Description</th>
  1260. </tr>
  1261. </thead>
  1262. <tbody>
  1263. <tr>
  1264. <td><span class="xref">System.Int32</span></td>
  1265. <td></td>
  1266. </tr>
  1267. </tbody>
  1268. </table>
  1269. <a id="Terminal_Gui_TextView_Used_" data-uid="Terminal.Gui.TextView.Used*"></a>
  1270. <h4 id="Terminal_Gui_TextView_Used" data-uid="Terminal.Gui.TextView.Used">Used</h4>
  1271. <div class="markdown level1 summary">
  1272. Tracks whether the text view should be considered &quot;used&quot;, that is, that the user has moved in the entry,
  1273. so new input should be appended at the cursor position, rather than clearing the entry
  1274. </div>
  1275. <div class="markdown level1 conceptual"></div>
  1276. <h5 class="decalaration">Declaration</h5>
  1277. <div class="codewrapper">
  1278. <pre><code class="lang-csharp hljs">public bool Used { get; set; }</code></pre>
  1279. </div>
  1280. <h5 class="propertyValue">Property Value</h5>
  1281. <table class="table table-bordered table-striped table-condensed">
  1282. <thead>
  1283. <tr>
  1284. <th>Type</th>
  1285. <th>Description</th>
  1286. </tr>
  1287. </thead>
  1288. <tbody>
  1289. <tr>
  1290. <td><span class="xref">System.Boolean</span></td>
  1291. <td></td>
  1292. </tr>
  1293. </tbody>
  1294. </table>
  1295. <a id="Terminal_Gui_TextView_WordWrap_" data-uid="Terminal.Gui.TextView.WordWrap*"></a>
  1296. <h4 id="Terminal_Gui_TextView_WordWrap" data-uid="Terminal.Gui.TextView.WordWrap">WordWrap</h4>
  1297. <div class="markdown level1 summary">
  1298. Allows word wrap the to fit the available container width.
  1299. </div>
  1300. <div class="markdown level1 conceptual"></div>
  1301. <h5 class="decalaration">Declaration</h5>
  1302. <div class="codewrapper">
  1303. <pre><code class="lang-csharp hljs">public bool WordWrap { get; set; }</code></pre>
  1304. </div>
  1305. <h5 class="propertyValue">Property Value</h5>
  1306. <table class="table table-bordered table-striped table-condensed">
  1307. <thead>
  1308. <tr>
  1309. <th>Type</th>
  1310. <th>Description</th>
  1311. </tr>
  1312. </thead>
  1313. <tbody>
  1314. <tr>
  1315. <td><span class="xref">System.Boolean</span></td>
  1316. <td></td>
  1317. </tr>
  1318. </tbody>
  1319. </table>
  1320. <h3 id="methods">Methods
  1321. </h3>
  1322. <a id="Terminal_Gui_TextView_ClearHistoryChanges_" data-uid="Terminal.Gui.TextView.ClearHistoryChanges*"></a>
  1323. <h4 id="Terminal_Gui_TextView_ClearHistoryChanges" data-uid="Terminal.Gui.TextView.ClearHistoryChanges">ClearHistoryChanges()</h4>
  1324. <div class="markdown level1 summary">
  1325. Allows clearing the <span class="xref">Terminal.Gui.HistoryText.HistoryTextItem</span> items updating the original text.
  1326. </div>
  1327. <div class="markdown level1 conceptual"></div>
  1328. <h5 class="decalaration">Declaration</h5>
  1329. <div class="codewrapper">
  1330. <pre><code class="lang-csharp hljs">public void ClearHistoryChanges()</code></pre>
  1331. </div>
  1332. <a id="Terminal_Gui_TextView_CloseFile_" data-uid="Terminal.Gui.TextView.CloseFile*"></a>
  1333. <h4 id="Terminal_Gui_TextView_CloseFile" data-uid="Terminal.Gui.TextView.CloseFile">CloseFile()</h4>
  1334. <div class="markdown level1 summary">
  1335. Closes the contents of the stream into the <a class="xref" href="Terminal.Gui.TextView.html">TextView</a>.
  1336. </div>
  1337. <div class="markdown level1 conceptual"></div>
  1338. <h5 class="decalaration">Declaration</h5>
  1339. <div class="codewrapper">
  1340. <pre><code class="lang-csharp hljs">public bool CloseFile()</code></pre>
  1341. </div>
  1342. <h5 class="returns">Returns</h5>
  1343. <table class="table table-bordered table-striped table-condensed">
  1344. <thead>
  1345. <tr>
  1346. <th>Type</th>
  1347. <th>Description</th>
  1348. </tr>
  1349. </thead>
  1350. <tbody>
  1351. <tr>
  1352. <td><span class="xref">System.Boolean</span></td>
  1353. <td><code>true</code>, if stream was closed, <code>false</code> otherwise.</td>
  1354. </tr>
  1355. </tbody>
  1356. </table>
  1357. <a id="Terminal_Gui_TextView_ColorNormal_" data-uid="Terminal.Gui.TextView.ColorNormal*"></a>
  1358. <h4 id="Terminal_Gui_TextView_ColorNormal" data-uid="Terminal.Gui.TextView.ColorNormal">ColorNormal()</h4>
  1359. <div class="markdown level1 summary">
  1360. Sets the driver to the default color for the control where no text is being rendered. Defaults to <a class="xref" href="Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Normal">Normal</a>.
  1361. </div>
  1362. <div class="markdown level1 conceptual"></div>
  1363. <h5 class="decalaration">Declaration</h5>
  1364. <div class="codewrapper">
  1365. <pre><code class="lang-csharp hljs">protected virtual void ColorNormal()</code></pre>
  1366. </div>
  1367. <a id="Terminal_Gui_TextView_ColorNormal_" data-uid="Terminal.Gui.TextView.ColorNormal*"></a>
  1368. <h4 id="Terminal_Gui_TextView_ColorNormal_System_Collections_Generic_List_System_Rune__System_Int32_" data-uid="Terminal.Gui.TextView.ColorNormal(System.Collections.Generic.List{System.Rune},System.Int32)">ColorNormal(List&lt;Rune&gt;, Int32)</h4>
  1369. <div class="markdown level1 summary">
  1370. Sets the <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Driver">Driver</a> to an appropriate color for rendering the given <code data-dev-comment-type="paramref" class="paramref">idx</code> of the
  1371. current <code data-dev-comment-type="paramref" class="paramref">line</code>. Override to provide custom coloring by calling <a class="xref" href="Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetAttribute_Terminal_Gui_Attribute_">SetAttribute(Attribute)</a>
  1372. Defaults to <a class="xref" href="Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Normal">Normal</a>.
  1373. </div>
  1374. <div class="markdown level1 conceptual"></div>
  1375. <h5 class="decalaration">Declaration</h5>
  1376. <div class="codewrapper">
  1377. <pre><code class="lang-csharp hljs">protected virtual void ColorNormal(List&lt;Rune&gt; line, int idx)</code></pre>
  1378. </div>
  1379. <h5 class="parameters">Parameters</h5>
  1380. <table class="table table-bordered table-striped table-condensed">
  1381. <thead>
  1382. <tr>
  1383. <th>Type</th>
  1384. <th>Name</th>
  1385. <th>Description</th>
  1386. </tr>
  1387. </thead>
  1388. <tbody>
  1389. <tr>
  1390. <td><span class="xref">System.Collections.Generic.List</span>&lt;<span class="xref">System.Rune</span>&gt;</td>
  1391. <td><span class="parametername">line</span></td>
  1392. <td></td>
  1393. </tr>
  1394. <tr>
  1395. <td><span class="xref">System.Int32</span></td>
  1396. <td><span class="parametername">idx</span></td>
  1397. <td></td>
  1398. </tr>
  1399. </tbody>
  1400. </table>
  1401. <a id="Terminal_Gui_TextView_ColorSelection_" data-uid="Terminal.Gui.TextView.ColorSelection*"></a>
  1402. <h4 id="Terminal_Gui_TextView_ColorSelection_System_Collections_Generic_List_System_Rune__System_Int32_" data-uid="Terminal.Gui.TextView.ColorSelection(System.Collections.Generic.List{System.Rune},System.Int32)">ColorSelection(List&lt;Rune&gt;, Int32)</h4>
  1403. <div class="markdown level1 summary">
  1404. Sets the <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Driver">Driver</a> to an appropriate color for rendering the given <code data-dev-comment-type="paramref" class="paramref">idx</code> of the
  1405. current <code data-dev-comment-type="paramref" class="paramref">line</code>. Override to provide custom coloring by calling <a class="xref" href="Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetAttribute_Terminal_Gui_Attribute_">SetAttribute(Attribute)</a>
  1406. Defaults to <a class="xref" href="Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_Focus">Focus</a>.
  1407. </div>
  1408. <div class="markdown level1 conceptual"></div>
  1409. <h5 class="decalaration">Declaration</h5>
  1410. <div class="codewrapper">
  1411. <pre><code class="lang-csharp hljs">protected virtual void ColorSelection(List&lt;Rune&gt; line, int idx)</code></pre>
  1412. </div>
  1413. <h5 class="parameters">Parameters</h5>
  1414. <table class="table table-bordered table-striped table-condensed">
  1415. <thead>
  1416. <tr>
  1417. <th>Type</th>
  1418. <th>Name</th>
  1419. <th>Description</th>
  1420. </tr>
  1421. </thead>
  1422. <tbody>
  1423. <tr>
  1424. <td><span class="xref">System.Collections.Generic.List</span>&lt;<span class="xref">System.Rune</span>&gt;</td>
  1425. <td><span class="parametername">line</span></td>
  1426. <td></td>
  1427. </tr>
  1428. <tr>
  1429. <td><span class="xref">System.Int32</span></td>
  1430. <td><span class="parametername">idx</span></td>
  1431. <td></td>
  1432. </tr>
  1433. </tbody>
  1434. </table>
  1435. <a id="Terminal_Gui_TextView_ColorUsed_" data-uid="Terminal.Gui.TextView.ColorUsed*"></a>
  1436. <h4 id="Terminal_Gui_TextView_ColorUsed_System_Collections_Generic_List_System_Rune__System_Int32_" data-uid="Terminal.Gui.TextView.ColorUsed(System.Collections.Generic.List{System.Rune},System.Int32)">ColorUsed(List&lt;Rune&gt;, Int32)</h4>
  1437. <div class="markdown level1 summary">
  1438. Sets the <a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Driver">Driver</a> to an appropriate color for rendering the given <code data-dev-comment-type="paramref" class="paramref">idx</code> of the
  1439. current <code data-dev-comment-type="paramref" class="paramref">line</code>. Override to provide custom coloring by calling <a class="xref" href="Terminal.Gui.ConsoleDriver.html#Terminal_Gui_ConsoleDriver_SetAttribute_Terminal_Gui_Attribute_">SetAttribute(Attribute)</a>
  1440. Defaults to <a class="xref" href="Terminal.Gui.ColorScheme.html#Terminal_Gui_ColorScheme_HotFocus">HotFocus</a>.
  1441. </div>
  1442. <div class="markdown level1 conceptual"></div>
  1443. <h5 class="decalaration">Declaration</h5>
  1444. <div class="codewrapper">
  1445. <pre><code class="lang-csharp hljs">protected virtual void ColorUsed(List&lt;Rune&gt; line, int idx)</code></pre>
  1446. </div>
  1447. <h5 class="parameters">Parameters</h5>
  1448. <table class="table table-bordered table-striped table-condensed">
  1449. <thead>
  1450. <tr>
  1451. <th>Type</th>
  1452. <th>Name</th>
  1453. <th>Description</th>
  1454. </tr>
  1455. </thead>
  1456. <tbody>
  1457. <tr>
  1458. <td><span class="xref">System.Collections.Generic.List</span>&lt;<span class="xref">System.Rune</span>&gt;</td>
  1459. <td><span class="parametername">line</span></td>
  1460. <td></td>
  1461. </tr>
  1462. <tr>
  1463. <td><span class="xref">System.Int32</span></td>
  1464. <td><span class="parametername">idx</span></td>
  1465. <td></td>
  1466. </tr>
  1467. </tbody>
  1468. </table>
  1469. <a id="Terminal_Gui_TextView_Copy_" data-uid="Terminal.Gui.TextView.Copy*"></a>
  1470. <h4 id="Terminal_Gui_TextView_Copy" data-uid="Terminal.Gui.TextView.Copy">Copy()</h4>
  1471. <div class="markdown level1 summary">
  1472. Copy the selected text to the clipboard contents.
  1473. </div>
  1474. <div class="markdown level1 conceptual"></div>
  1475. <h5 class="decalaration">Declaration</h5>
  1476. <div class="codewrapper">
  1477. <pre><code class="lang-csharp hljs">public void Copy()</code></pre>
  1478. </div>
  1479. <a id="Terminal_Gui_TextView_Cut_" data-uid="Terminal.Gui.TextView.Cut*"></a>
  1480. <h4 id="Terminal_Gui_TextView_Cut" data-uid="Terminal.Gui.TextView.Cut">Cut()</h4>
  1481. <div class="markdown level1 summary">
  1482. Cut the selected text to the clipboard contents.
  1483. </div>
  1484. <div class="markdown level1 conceptual"></div>
  1485. <h5 class="decalaration">Declaration</h5>
  1486. <div class="codewrapper">
  1487. <pre><code class="lang-csharp hljs">public void Cut()</code></pre>
  1488. </div>
  1489. <a id="Terminal_Gui_TextView_DeleteAll_" data-uid="Terminal.Gui.TextView.DeleteAll*"></a>
  1490. <h4 id="Terminal_Gui_TextView_DeleteAll" data-uid="Terminal.Gui.TextView.DeleteAll">DeleteAll()</h4>
  1491. <div class="markdown level1 summary">
  1492. Deletes all text.
  1493. </div>
  1494. <div class="markdown level1 conceptual"></div>
  1495. <h5 class="decalaration">Declaration</h5>
  1496. <div class="codewrapper">
  1497. <pre><code class="lang-csharp hljs">public void DeleteAll()</code></pre>
  1498. </div>
  1499. <a id="Terminal_Gui_TextView_DeleteCharLeft_" data-uid="Terminal.Gui.TextView.DeleteCharLeft*"></a>
  1500. <h4 id="Terminal_Gui_TextView_DeleteCharLeft" data-uid="Terminal.Gui.TextView.DeleteCharLeft">DeleteCharLeft()</h4>
  1501. <div class="markdown level1 summary">
  1502. Deletes all the selected or a single character at left from the position of the cursor.
  1503. </div>
  1504. <div class="markdown level1 conceptual"></div>
  1505. <h5 class="decalaration">Declaration</h5>
  1506. <div class="codewrapper">
  1507. <pre><code class="lang-csharp hljs">public void DeleteCharLeft()</code></pre>
  1508. </div>
  1509. <a id="Terminal_Gui_TextView_DeleteCharRight_" data-uid="Terminal.Gui.TextView.DeleteCharRight*"></a>
  1510. <h4 id="Terminal_Gui_TextView_DeleteCharRight" data-uid="Terminal.Gui.TextView.DeleteCharRight">DeleteCharRight()</h4>
  1511. <div class="markdown level1 summary">
  1512. Deletes all the selected or a single character at right from the position of the cursor.
  1513. </div>
  1514. <div class="markdown level1 conceptual"></div>
  1515. <h5 class="decalaration">Declaration</h5>
  1516. <div class="codewrapper">
  1517. <pre><code class="lang-csharp hljs">public void DeleteCharRight()</code></pre>
  1518. </div>
  1519. <a id="Terminal_Gui_TextView_FindNextText_" data-uid="Terminal.Gui.TextView.FindNextText*"></a>
  1520. <h4 id="Terminal_Gui_TextView_FindNextText_NStack_ustring_System_Boolean__System_Boolean_System_Boolean_NStack_ustring_System_Boolean_" data-uid="Terminal.Gui.TextView.FindNextText(NStack.ustring,System.Boolean@,System.Boolean,System.Boolean,NStack.ustring,System.Boolean)">FindNextText(ustring, out Boolean, Boolean, Boolean, ustring, Boolean)</h4>
  1521. <div class="markdown level1 summary">
  1522. Find the next text based on the match case with the option to replace it.
  1523. </div>
  1524. <div class="markdown level1 conceptual"></div>
  1525. <h5 class="decalaration">Declaration</h5>
  1526. <div class="codewrapper">
  1527. <pre><code class="lang-csharp hljs">public bool FindNextText(ustring textToFind, out bool gaveFullTurn, bool matchCase = false, bool matchWholeWord = false, ustring textToReplace = null, bool replace = false)</code></pre>
  1528. </div>
  1529. <h5 class="parameters">Parameters</h5>
  1530. <table class="table table-bordered table-striped table-condensed">
  1531. <thead>
  1532. <tr>
  1533. <th>Type</th>
  1534. <th>Name</th>
  1535. <th>Description</th>
  1536. </tr>
  1537. </thead>
  1538. <tbody>
  1539. <tr>
  1540. <td><span class="xref">NStack.ustring</span></td>
  1541. <td><span class="parametername">textToFind</span></td>
  1542. <td>The text to find.</td>
  1543. </tr>
  1544. <tr>
  1545. <td><span class="xref">System.Boolean</span></td>
  1546. <td><span class="parametername">gaveFullTurn</span></td>
  1547. <td><code>true</code>If all the text was forward searched.<code>false</code>otherwise.</td>
  1548. </tr>
  1549. <tr>
  1550. <td><span class="xref">System.Boolean</span></td>
  1551. <td><span class="parametername">matchCase</span></td>
  1552. <td>The match case setting.</td>
  1553. </tr>
  1554. <tr>
  1555. <td><span class="xref">System.Boolean</span></td>
  1556. <td><span class="parametername">matchWholeWord</span></td>
  1557. <td>The match whole word setting.</td>
  1558. </tr>
  1559. <tr>
  1560. <td><span class="xref">NStack.ustring</span></td>
  1561. <td><span class="parametername">textToReplace</span></td>
  1562. <td>The text to replace.</td>
  1563. </tr>
  1564. <tr>
  1565. <td><span class="xref">System.Boolean</span></td>
  1566. <td><span class="parametername">replace</span></td>
  1567. <td><code>true</code>If is replacing.<code>false</code>otherwise.</td>
  1568. </tr>
  1569. </tbody>
  1570. </table>
  1571. <h5 class="returns">Returns</h5>
  1572. <table class="table table-bordered table-striped table-condensed">
  1573. <thead>
  1574. <tr>
  1575. <th>Type</th>
  1576. <th>Description</th>
  1577. </tr>
  1578. </thead>
  1579. <tbody>
  1580. <tr>
  1581. <td><span class="xref">System.Boolean</span></td>
  1582. <td><code>true</code>If the text was found.<code>false</code>otherwise.</td>
  1583. </tr>
  1584. </tbody>
  1585. </table>
  1586. <a id="Terminal_Gui_TextView_FindPreviousText_" data-uid="Terminal.Gui.TextView.FindPreviousText*"></a>
  1587. <h4 id="Terminal_Gui_TextView_FindPreviousText_NStack_ustring_System_Boolean__System_Boolean_System_Boolean_NStack_ustring_System_Boolean_" data-uid="Terminal.Gui.TextView.FindPreviousText(NStack.ustring,System.Boolean@,System.Boolean,System.Boolean,NStack.ustring,System.Boolean)">FindPreviousText(ustring, out Boolean, Boolean, Boolean, ustring, Boolean)</h4>
  1588. <div class="markdown level1 summary">
  1589. Find the previous text based on the match case with the option to replace it.
  1590. </div>
  1591. <div class="markdown level1 conceptual"></div>
  1592. <h5 class="decalaration">Declaration</h5>
  1593. <div class="codewrapper">
  1594. <pre><code class="lang-csharp hljs">public bool FindPreviousText(ustring textToFind, out bool gaveFullTurn, bool matchCase = false, bool matchWholeWord = false, ustring textToReplace = null, bool replace = false)</code></pre>
  1595. </div>
  1596. <h5 class="parameters">Parameters</h5>
  1597. <table class="table table-bordered table-striped table-condensed">
  1598. <thead>
  1599. <tr>
  1600. <th>Type</th>
  1601. <th>Name</th>
  1602. <th>Description</th>
  1603. </tr>
  1604. </thead>
  1605. <tbody>
  1606. <tr>
  1607. <td><span class="xref">NStack.ustring</span></td>
  1608. <td><span class="parametername">textToFind</span></td>
  1609. <td>The text to find.</td>
  1610. </tr>
  1611. <tr>
  1612. <td><span class="xref">System.Boolean</span></td>
  1613. <td><span class="parametername">gaveFullTurn</span></td>
  1614. <td><code>true</code>If all the text was backward searched.<code>false</code>otherwise.</td>
  1615. </tr>
  1616. <tr>
  1617. <td><span class="xref">System.Boolean</span></td>
  1618. <td><span class="parametername">matchCase</span></td>
  1619. <td>The match case setting.</td>
  1620. </tr>
  1621. <tr>
  1622. <td><span class="xref">System.Boolean</span></td>
  1623. <td><span class="parametername">matchWholeWord</span></td>
  1624. <td>The match whole word setting.</td>
  1625. </tr>
  1626. <tr>
  1627. <td><span class="xref">NStack.ustring</span></td>
  1628. <td><span class="parametername">textToReplace</span></td>
  1629. <td>The text to replace.</td>
  1630. </tr>
  1631. <tr>
  1632. <td><span class="xref">System.Boolean</span></td>
  1633. <td><span class="parametername">replace</span></td>
  1634. <td><code>true</code>If the text was found.<code>false</code>otherwise.</td>
  1635. </tr>
  1636. </tbody>
  1637. </table>
  1638. <h5 class="returns">Returns</h5>
  1639. <table class="table table-bordered table-striped table-condensed">
  1640. <thead>
  1641. <tr>
  1642. <th>Type</th>
  1643. <th>Description</th>
  1644. </tr>
  1645. </thead>
  1646. <tbody>
  1647. <tr>
  1648. <td><span class="xref">System.Boolean</span></td>
  1649. <td><code>true</code>If the text was found.<code>false</code>otherwise.</td>
  1650. </tr>
  1651. </tbody>
  1652. </table>
  1653. <a id="Terminal_Gui_TextView_FindTextChanged_" data-uid="Terminal.Gui.TextView.FindTextChanged*"></a>
  1654. <h4 id="Terminal_Gui_TextView_FindTextChanged" data-uid="Terminal.Gui.TextView.FindTextChanged">FindTextChanged()</h4>
  1655. <div class="markdown level1 summary">
  1656. Reset the flag to stop continuous find.
  1657. </div>
  1658. <div class="markdown level1 conceptual"></div>
  1659. <h5 class="decalaration">Declaration</h5>
  1660. <div class="codewrapper">
  1661. <pre><code class="lang-csharp hljs">public void FindTextChanged()</code></pre>
  1662. </div>
  1663. <a id="Terminal_Gui_TextView_GetCurrentLine_" data-uid="Terminal.Gui.TextView.GetCurrentLine*"></a>
  1664. <h4 id="Terminal_Gui_TextView_GetCurrentLine" data-uid="Terminal.Gui.TextView.GetCurrentLine">GetCurrentLine()</h4>
  1665. <div class="markdown level1 summary">
  1666. Returns the characters on the current line (where the cursor is positioned).
  1667. Use <a class="xref" href="Terminal.Gui.TextView.html#Terminal_Gui_TextView_CurrentColumn">CurrentColumn</a> to determine the position of the cursor within
  1668. that line
  1669. </div>
  1670. <div class="markdown level1 conceptual"></div>
  1671. <h5 class="decalaration">Declaration</h5>
  1672. <div class="codewrapper">
  1673. <pre><code class="lang-csharp hljs">public List&lt;Rune&gt; GetCurrentLine()</code></pre>
  1674. </div>
  1675. <h5 class="returns">Returns</h5>
  1676. <table class="table table-bordered table-striped table-condensed">
  1677. <thead>
  1678. <tr>
  1679. <th>Type</th>
  1680. <th>Description</th>
  1681. </tr>
  1682. </thead>
  1683. <tbody>
  1684. <tr>
  1685. <td><span class="xref">System.Collections.Generic.List</span>&lt;<span class="xref">System.Rune</span>&gt;</td>
  1686. <td></td>
  1687. </tr>
  1688. </tbody>
  1689. </table>
  1690. <a id="Terminal_Gui_TextView_InsertText_" data-uid="Terminal.Gui.TextView.InsertText*"></a>
  1691. <h4 id="Terminal_Gui_TextView_InsertText_System_String_" data-uid="Terminal.Gui.TextView.InsertText(System.String)">InsertText(String)</h4>
  1692. <div class="markdown level1 summary">
  1693. Inserts the given <code data-dev-comment-type="paramref" class="paramref">toAdd</code> text at the current cursor position
  1694. exactly as if the user had just typed it
  1695. </div>
  1696. <div class="markdown level1 conceptual"></div>
  1697. <h5 class="decalaration">Declaration</h5>
  1698. <div class="codewrapper">
  1699. <pre><code class="lang-csharp hljs">public void InsertText(string toAdd)</code></pre>
  1700. </div>
  1701. <h5 class="parameters">Parameters</h5>
  1702. <table class="table table-bordered table-striped table-condensed">
  1703. <thead>
  1704. <tr>
  1705. <th>Type</th>
  1706. <th>Name</th>
  1707. <th>Description</th>
  1708. </tr>
  1709. </thead>
  1710. <tbody>
  1711. <tr>
  1712. <td><span class="xref">System.String</span></td>
  1713. <td><span class="parametername">toAdd</span></td>
  1714. <td>Text to add</td>
  1715. </tr>
  1716. </tbody>
  1717. </table>
  1718. <a id="Terminal_Gui_TextView_LoadFile_" data-uid="Terminal.Gui.TextView.LoadFile*"></a>
  1719. <h4 id="Terminal_Gui_TextView_LoadFile_System_String_" data-uid="Terminal.Gui.TextView.LoadFile(System.String)">LoadFile(String)</h4>
  1720. <div class="markdown level1 summary">
  1721. Loads the contents of the file into the <a class="xref" href="Terminal.Gui.TextView.html">TextView</a>.
  1722. </div>
  1723. <div class="markdown level1 conceptual"></div>
  1724. <h5 class="decalaration">Declaration</h5>
  1725. <div class="codewrapper">
  1726. <pre><code class="lang-csharp hljs">public bool LoadFile(string path)</code></pre>
  1727. </div>
  1728. <h5 class="parameters">Parameters</h5>
  1729. <table class="table table-bordered table-striped table-condensed">
  1730. <thead>
  1731. <tr>
  1732. <th>Type</th>
  1733. <th>Name</th>
  1734. <th>Description</th>
  1735. </tr>
  1736. </thead>
  1737. <tbody>
  1738. <tr>
  1739. <td><span class="xref">System.String</span></td>
  1740. <td><span class="parametername">path</span></td>
  1741. <td>Path to the file to load.</td>
  1742. </tr>
  1743. </tbody>
  1744. </table>
  1745. <h5 class="returns">Returns</h5>
  1746. <table class="table table-bordered table-striped table-condensed">
  1747. <thead>
  1748. <tr>
  1749. <th>Type</th>
  1750. <th>Description</th>
  1751. </tr>
  1752. </thead>
  1753. <tbody>
  1754. <tr>
  1755. <td><span class="xref">System.Boolean</span></td>
  1756. <td><code>true</code>, if file was loaded, <code>false</code> otherwise.</td>
  1757. </tr>
  1758. </tbody>
  1759. </table>
  1760. <a id="Terminal_Gui_TextView_LoadStream_" data-uid="Terminal.Gui.TextView.LoadStream*"></a>
  1761. <h4 id="Terminal_Gui_TextView_LoadStream_System_IO_Stream_" data-uid="Terminal.Gui.TextView.LoadStream(System.IO.Stream)">LoadStream(Stream)</h4>
  1762. <div class="markdown level1 summary">
  1763. Loads the contents of the stream into the <a class="xref" href="Terminal.Gui.TextView.html">TextView</a>.
  1764. </div>
  1765. <div class="markdown level1 conceptual"></div>
  1766. <h5 class="decalaration">Declaration</h5>
  1767. <div class="codewrapper">
  1768. <pre><code class="lang-csharp hljs">public void LoadStream(Stream stream)</code></pre>
  1769. </div>
  1770. <h5 class="parameters">Parameters</h5>
  1771. <table class="table table-bordered table-striped table-condensed">
  1772. <thead>
  1773. <tr>
  1774. <th>Type</th>
  1775. <th>Name</th>
  1776. <th>Description</th>
  1777. </tr>
  1778. </thead>
  1779. <tbody>
  1780. <tr>
  1781. <td><span class="xref">System.IO.Stream</span></td>
  1782. <td><span class="parametername">stream</span></td>
  1783. <td>Stream to load the contents from.</td>
  1784. </tr>
  1785. </tbody>
  1786. </table>
  1787. <a id="Terminal_Gui_TextView_MouseEvent_" data-uid="Terminal.Gui.TextView.MouseEvent*"></a>
  1788. <h4 id="Terminal_Gui_TextView_MouseEvent_Terminal_Gui_MouseEvent_" data-uid="Terminal.Gui.TextView.MouseEvent(Terminal.Gui.MouseEvent)">MouseEvent(MouseEvent)</h4>
  1789. <div class="markdown level1 summary">
  1790. Method invoked when a mouse event is generated
  1791. </div>
  1792. <div class="markdown level1 conceptual"></div>
  1793. <h5 class="decalaration">Declaration</h5>
  1794. <div class="codewrapper">
  1795. <pre><code class="lang-csharp hljs">public override bool MouseEvent(MouseEvent ev)</code></pre>
  1796. </div>
  1797. <h5 class="parameters">Parameters</h5>
  1798. <table class="table table-bordered table-striped table-condensed">
  1799. <thead>
  1800. <tr>
  1801. <th>Type</th>
  1802. <th>Name</th>
  1803. <th>Description</th>
  1804. </tr>
  1805. </thead>
  1806. <tbody>
  1807. <tr>
  1808. <td><a class="xref" href="Terminal.Gui.MouseEvent.html">MouseEvent</a></td>
  1809. <td><span class="parametername">ev</span></td>
  1810. <td></td>
  1811. </tr>
  1812. </tbody>
  1813. </table>
  1814. <h5 class="returns">Returns</h5>
  1815. <table class="table table-bordered table-striped table-condensed">
  1816. <thead>
  1817. <tr>
  1818. <th>Type</th>
  1819. <th>Description</th>
  1820. </tr>
  1821. </thead>
  1822. <tbody>
  1823. <tr>
  1824. <td><span class="xref">System.Boolean</span></td>
  1825. <td><code>true</code>, if the event was handled, <code>false</code> otherwise.</td>
  1826. </tr>
  1827. </tbody>
  1828. </table>
  1829. <h5 class="overrides">Overrides</h5>
  1830. <div><a class="xref" href="Terminal.Gui.Responder.html#Terminal_Gui_Responder_MouseEvent_Terminal_Gui_MouseEvent_">Responder.MouseEvent(MouseEvent)</a></div>
  1831. <a id="Terminal_Gui_TextView_MoveEnd_" data-uid="Terminal.Gui.TextView.MoveEnd*"></a>
  1832. <h4 id="Terminal_Gui_TextView_MoveEnd" data-uid="Terminal.Gui.TextView.MoveEnd">MoveEnd()</h4>
  1833. <div class="markdown level1 summary">
  1834. Will scroll the <a class="xref" href="Terminal.Gui.TextView.html">TextView</a> to the last line and position the cursor there.
  1835. </div>
  1836. <div class="markdown level1 conceptual"></div>
  1837. <h5 class="decalaration">Declaration</h5>
  1838. <div class="codewrapper">
  1839. <pre><code class="lang-csharp hljs">public void MoveEnd()</code></pre>
  1840. </div>
  1841. <a id="Terminal_Gui_TextView_MoveHome_" data-uid="Terminal.Gui.TextView.MoveHome*"></a>
  1842. <h4 id="Terminal_Gui_TextView_MoveHome" data-uid="Terminal.Gui.TextView.MoveHome">MoveHome()</h4>
  1843. <div class="markdown level1 summary">
  1844. Will scroll the <a class="xref" href="Terminal.Gui.TextView.html">TextView</a> to the first line and position the cursor there.
  1845. </div>
  1846. <div class="markdown level1 conceptual"></div>
  1847. <h5 class="decalaration">Declaration</h5>
  1848. <div class="codewrapper">
  1849. <pre><code class="lang-csharp hljs">public void MoveHome()</code></pre>
  1850. </div>
  1851. <a id="Terminal_Gui_TextView_OnEnter_" data-uid="Terminal.Gui.TextView.OnEnter*"></a>
  1852. <h4 id="Terminal_Gui_TextView_OnEnter_Terminal_Gui_View_" data-uid="Terminal.Gui.TextView.OnEnter(Terminal.Gui.View)">OnEnter(View)</h4>
  1853. <div class="markdown level1 summary">
  1854. Method invoked when a view gets focus.
  1855. </div>
  1856. <div class="markdown level1 conceptual"></div>
  1857. <h5 class="decalaration">Declaration</h5>
  1858. <div class="codewrapper">
  1859. <pre><code class="lang-csharp hljs">public override bool OnEnter(View view)</code></pre>
  1860. </div>
  1861. <h5 class="parameters">Parameters</h5>
  1862. <table class="table table-bordered table-striped table-condensed">
  1863. <thead>
  1864. <tr>
  1865. <th>Type</th>
  1866. <th>Name</th>
  1867. <th>Description</th>
  1868. </tr>
  1869. </thead>
  1870. <tbody>
  1871. <tr>
  1872. <td><a class="xref" href="Terminal.Gui.View.html">View</a></td>
  1873. <td><span class="parametername">view</span></td>
  1874. <td>The view that is losing focus.</td>
  1875. </tr>
  1876. </tbody>
  1877. </table>
  1878. <h5 class="returns">Returns</h5>
  1879. <table class="table table-bordered table-striped table-condensed">
  1880. <thead>
  1881. <tr>
  1882. <th>Type</th>
  1883. <th>Description</th>
  1884. </tr>
  1885. </thead>
  1886. <tbody>
  1887. <tr>
  1888. <td><span class="xref">System.Boolean</span></td>
  1889. <td><code>true</code>, if the event was handled, <code>false</code> otherwise.</td>
  1890. </tr>
  1891. </tbody>
  1892. </table>
  1893. <h5 class="overrides">Overrides</h5>
  1894. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnEnter_Terminal_Gui_View_">View.OnEnter(View)</a></div>
  1895. <a id="Terminal_Gui_TextView_OnKeyUp_" data-uid="Terminal.Gui.TextView.OnKeyUp*"></a>
  1896. <h4 id="Terminal_Gui_TextView_OnKeyUp_Terminal_Gui_KeyEvent_" data-uid="Terminal.Gui.TextView.OnKeyUp(Terminal.Gui.KeyEvent)">OnKeyUp(KeyEvent)</h4>
  1897. <div class="markdown level1 summary">
  1898. Method invoked when a key is released.
  1899. </div>
  1900. <div class="markdown level1 conceptual"></div>
  1901. <h5 class="decalaration">Declaration</h5>
  1902. <div class="codewrapper">
  1903. <pre><code class="lang-csharp hljs">public override bool OnKeyUp(KeyEvent kb)</code></pre>
  1904. </div>
  1905. <h5 class="parameters">Parameters</h5>
  1906. <table class="table table-bordered table-striped table-condensed">
  1907. <thead>
  1908. <tr>
  1909. <th>Type</th>
  1910. <th>Name</th>
  1911. <th>Description</th>
  1912. </tr>
  1913. </thead>
  1914. <tbody>
  1915. <tr>
  1916. <td><a class="xref" href="Terminal.Gui.KeyEvent.html">KeyEvent</a></td>
  1917. <td><span class="parametername">kb</span></td>
  1918. <td></td>
  1919. </tr>
  1920. </tbody>
  1921. </table>
  1922. <h5 class="returns">Returns</h5>
  1923. <table class="table table-bordered table-striped table-condensed">
  1924. <thead>
  1925. <tr>
  1926. <th>Type</th>
  1927. <th>Description</th>
  1928. </tr>
  1929. </thead>
  1930. <tbody>
  1931. <tr>
  1932. <td><span class="xref">System.Boolean</span></td>
  1933. <td>true if the event was handled</td>
  1934. </tr>
  1935. </tbody>
  1936. </table>
  1937. <h5 class="overrides">Overrides</h5>
  1938. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnKeyUp_Terminal_Gui_KeyEvent_">View.OnKeyUp(KeyEvent)</a></div>
  1939. <a id="Terminal_Gui_TextView_OnLeave_" data-uid="Terminal.Gui.TextView.OnLeave*"></a>
  1940. <h4 id="Terminal_Gui_TextView_OnLeave_Terminal_Gui_View_" data-uid="Terminal.Gui.TextView.OnLeave(Terminal.Gui.View)">OnLeave(View)</h4>
  1941. <div class="markdown level1 summary">
  1942. Method invoked when a view loses focus.
  1943. </div>
  1944. <div class="markdown level1 conceptual"></div>
  1945. <h5 class="decalaration">Declaration</h5>
  1946. <div class="codewrapper">
  1947. <pre><code class="lang-csharp hljs">public override bool OnLeave(View view)</code></pre>
  1948. </div>
  1949. <h5 class="parameters">Parameters</h5>
  1950. <table class="table table-bordered table-striped table-condensed">
  1951. <thead>
  1952. <tr>
  1953. <th>Type</th>
  1954. <th>Name</th>
  1955. <th>Description</th>
  1956. </tr>
  1957. </thead>
  1958. <tbody>
  1959. <tr>
  1960. <td><a class="xref" href="Terminal.Gui.View.html">View</a></td>
  1961. <td><span class="parametername">view</span></td>
  1962. <td>The view that is getting focus.</td>
  1963. </tr>
  1964. </tbody>
  1965. </table>
  1966. <h5 class="returns">Returns</h5>
  1967. <table class="table table-bordered table-striped table-condensed">
  1968. <thead>
  1969. <tr>
  1970. <th>Type</th>
  1971. <th>Description</th>
  1972. </tr>
  1973. </thead>
  1974. <tbody>
  1975. <tr>
  1976. <td><span class="xref">System.Boolean</span></td>
  1977. <td><code>true</code>, if the event was handled, <code>false</code> otherwise.</td>
  1978. </tr>
  1979. </tbody>
  1980. </table>
  1981. <h5 class="overrides">Overrides</h5>
  1982. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_OnLeave_Terminal_Gui_View_">View.OnLeave(View)</a></div>
  1983. <a id="Terminal_Gui_TextView_Paste_" data-uid="Terminal.Gui.TextView.Paste*"></a>
  1984. <h4 id="Terminal_Gui_TextView_Paste" data-uid="Terminal.Gui.TextView.Paste">Paste()</h4>
  1985. <div class="markdown level1 summary">
  1986. Paste the clipboard contents into the current selected position.
  1987. </div>
  1988. <div class="markdown level1 conceptual"></div>
  1989. <h5 class="decalaration">Declaration</h5>
  1990. <div class="codewrapper">
  1991. <pre><code class="lang-csharp hljs">public void Paste()</code></pre>
  1992. </div>
  1993. <a id="Terminal_Gui_TextView_PositionCursor_" data-uid="Terminal.Gui.TextView.PositionCursor*"></a>
  1994. <h4 id="Terminal_Gui_TextView_PositionCursor" data-uid="Terminal.Gui.TextView.PositionCursor">PositionCursor()</h4>
  1995. <div class="markdown level1 summary">
  1996. Positions the cursor on the current row and column
  1997. </div>
  1998. <div class="markdown level1 conceptual"></div>
  1999. <h5 class="decalaration">Declaration</h5>
  2000. <div class="codewrapper">
  2001. <pre><code class="lang-csharp hljs">public override void PositionCursor()</code></pre>
  2002. </div>
  2003. <h5 class="overrides">Overrides</h5>
  2004. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_PositionCursor">View.PositionCursor()</a></div>
  2005. <a id="Terminal_Gui_TextView_ProcessKey_" data-uid="Terminal.Gui.TextView.ProcessKey*"></a>
  2006. <h4 id="Terminal_Gui_TextView_ProcessKey_Terminal_Gui_KeyEvent_" data-uid="Terminal.Gui.TextView.ProcessKey(Terminal.Gui.KeyEvent)">ProcessKey(KeyEvent)</h4>
  2007. <div class="markdown level1 summary">
  2008. If the view is focused, gives the view a
  2009. chance to process the keystroke.
  2010. </div>
  2011. <div class="markdown level1 conceptual"></div>
  2012. <h5 class="decalaration">Declaration</h5>
  2013. <div class="codewrapper">
  2014. <pre><code class="lang-csharp hljs">public override bool ProcessKey(KeyEvent kb)</code></pre>
  2015. </div>
  2016. <h5 class="parameters">Parameters</h5>
  2017. <table class="table table-bordered table-striped table-condensed">
  2018. <thead>
  2019. <tr>
  2020. <th>Type</th>
  2021. <th>Name</th>
  2022. <th>Description</th>
  2023. </tr>
  2024. </thead>
  2025. <tbody>
  2026. <tr>
  2027. <td><a class="xref" href="Terminal.Gui.KeyEvent.html">KeyEvent</a></td>
  2028. <td><span class="parametername">kb</span></td>
  2029. <td></td>
  2030. </tr>
  2031. </tbody>
  2032. </table>
  2033. <h5 class="returns">Returns</h5>
  2034. <table class="table table-bordered table-striped table-condensed">
  2035. <thead>
  2036. <tr>
  2037. <th>Type</th>
  2038. <th>Description</th>
  2039. </tr>
  2040. </thead>
  2041. <tbody>
  2042. <tr>
  2043. <td><span class="xref">System.Boolean</span></td>
  2044. <td></td>
  2045. </tr>
  2046. </tbody>
  2047. </table>
  2048. <h5 class="overrides">Overrides</h5>
  2049. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_ProcessKey_Terminal_Gui_KeyEvent_">View.ProcessKey(KeyEvent)</a></div>
  2050. <a id="Terminal_Gui_TextView_Redraw_" data-uid="Terminal.Gui.TextView.Redraw*"></a>
  2051. <h4 id="Terminal_Gui_TextView_Redraw_Terminal_Gui_Rect_" data-uid="Terminal.Gui.TextView.Redraw(Terminal.Gui.Rect)">Redraw(Rect)</h4>
  2052. <div class="markdown level1 summary">
  2053. Redraws this view and its subviews; only redraws the views that have been flagged for a re-display.
  2054. </div>
  2055. <div class="markdown level1 conceptual"></div>
  2056. <h5 class="decalaration">Declaration</h5>
  2057. <div class="codewrapper">
  2058. <pre><code class="lang-csharp hljs">public override void Redraw(Rect bounds)</code></pre>
  2059. </div>
  2060. <h5 class="parameters">Parameters</h5>
  2061. <table class="table table-bordered table-striped table-condensed">
  2062. <thead>
  2063. <tr>
  2064. <th>Type</th>
  2065. <th>Name</th>
  2066. <th>Description</th>
  2067. </tr>
  2068. </thead>
  2069. <tbody>
  2070. <tr>
  2071. <td><a class="xref" href="Terminal.Gui.Rect.html">Rect</a></td>
  2072. <td><span class="parametername">bounds</span></td>
  2073. <td>The bounds (view-relative region) to redraw.</td>
  2074. </tr>
  2075. </tbody>
  2076. </table>
  2077. <h5 class="overrides">Overrides</h5>
  2078. <div><a class="xref" href="Terminal.Gui.View.html#Terminal_Gui_View_Redraw_Terminal_Gui_Rect_">View.Redraw(Rect)</a></div>
  2079. <a id="Terminal_Gui_TextView_ReplaceAllText_" data-uid="Terminal.Gui.TextView.ReplaceAllText*"></a>
  2080. <h4 id="Terminal_Gui_TextView_ReplaceAllText_NStack_ustring_System_Boolean_System_Boolean_NStack_ustring_" data-uid="Terminal.Gui.TextView.ReplaceAllText(NStack.ustring,System.Boolean,System.Boolean,NStack.ustring)">ReplaceAllText(ustring, Boolean, Boolean, ustring)</h4>
  2081. <div class="markdown level1 summary">
  2082. Replaces all the text based on the match case.
  2083. </div>
  2084. <div class="markdown level1 conceptual"></div>
  2085. <h5 class="decalaration">Declaration</h5>
  2086. <div class="codewrapper">
  2087. <pre><code class="lang-csharp hljs">public bool ReplaceAllText(ustring textToFind, bool matchCase = false, bool matchWholeWord = false, ustring textToReplace = null)</code></pre>
  2088. </div>
  2089. <h5 class="parameters">Parameters</h5>
  2090. <table class="table table-bordered table-striped table-condensed">
  2091. <thead>
  2092. <tr>
  2093. <th>Type</th>
  2094. <th>Name</th>
  2095. <th>Description</th>
  2096. </tr>
  2097. </thead>
  2098. <tbody>
  2099. <tr>
  2100. <td><span class="xref">NStack.ustring</span></td>
  2101. <td><span class="parametername">textToFind</span></td>
  2102. <td>The text to find.</td>
  2103. </tr>
  2104. <tr>
  2105. <td><span class="xref">System.Boolean</span></td>
  2106. <td><span class="parametername">matchCase</span></td>
  2107. <td>The match case setting.</td>
  2108. </tr>
  2109. <tr>
  2110. <td><span class="xref">System.Boolean</span></td>
  2111. <td><span class="parametername">matchWholeWord</span></td>
  2112. <td>The match whole word setting.</td>
  2113. </tr>
  2114. <tr>
  2115. <td><span class="xref">NStack.ustring</span></td>
  2116. <td><span class="parametername">textToReplace</span></td>
  2117. <td>The text to replace.</td>
  2118. </tr>
  2119. </tbody>
  2120. </table>
  2121. <h5 class="returns">Returns</h5>
  2122. <table class="table table-bordered table-striped table-condensed">
  2123. <thead>
  2124. <tr>
  2125. <th>Type</th>
  2126. <th>Description</th>
  2127. </tr>
  2128. </thead>
  2129. <tbody>
  2130. <tr>
  2131. <td><span class="xref">System.Boolean</span></td>
  2132. <td><code>true</code>If the text was found.<code>false</code>otherwise.</td>
  2133. </tr>
  2134. </tbody>
  2135. </table>
  2136. <a id="Terminal_Gui_TextView_ScrollTo_" data-uid="Terminal.Gui.TextView.ScrollTo*"></a>
  2137. <h4 id="Terminal_Gui_TextView_ScrollTo_System_Int32_System_Boolean_" data-uid="Terminal.Gui.TextView.ScrollTo(System.Int32,System.Boolean)">ScrollTo(Int32, Boolean)</h4>
  2138. <div class="markdown level1 summary">
  2139. Will scroll the <a class="xref" href="Terminal.Gui.TextView.html">TextView</a> to display the specified row at the top if <code data-dev-comment-type="paramref" class="paramref">isRow</code> is true or
  2140. will scroll the <a class="xref" href="Terminal.Gui.TextView.html">TextView</a> to display the specified column at the left if <code data-dev-comment-type="paramref" class="paramref">isRow</code> is false.
  2141. </div>
  2142. <div class="markdown level1 conceptual"></div>
  2143. <h5 class="decalaration">Declaration</h5>
  2144. <div class="codewrapper">
  2145. <pre><code class="lang-csharp hljs">public void ScrollTo(int idx, bool isRow = true)</code></pre>
  2146. </div>
  2147. <h5 class="parameters">Parameters</h5>
  2148. <table class="table table-bordered table-striped table-condensed">
  2149. <thead>
  2150. <tr>
  2151. <th>Type</th>
  2152. <th>Name</th>
  2153. <th>Description</th>
  2154. </tr>
  2155. </thead>
  2156. <tbody>
  2157. <tr>
  2158. <td><span class="xref">System.Int32</span></td>
  2159. <td><span class="parametername">idx</span></td>
  2160. <td>Row that should be displayed at the top or Column that should be displayed at the left,
  2161. if the value is negative it will be reset to zero</td>
  2162. </tr>
  2163. <tr>
  2164. <td><span class="xref">System.Boolean</span></td>
  2165. <td><span class="parametername">isRow</span></td>
  2166. <td>If true (default) the <code data-dev-comment-type="paramref" class="paramref">idx</code> is a row, column otherwise.</td>
  2167. </tr>
  2168. </tbody>
  2169. </table>
  2170. <a id="Terminal_Gui_TextView_SelectAll_" data-uid="Terminal.Gui.TextView.SelectAll*"></a>
  2171. <h4 id="Terminal_Gui_TextView_SelectAll" data-uid="Terminal.Gui.TextView.SelectAll">SelectAll()</h4>
  2172. <div class="markdown level1 summary">
  2173. Select all text.
  2174. </div>
  2175. <div class="markdown level1 conceptual"></div>
  2176. <h5 class="decalaration">Declaration</h5>
  2177. <div class="codewrapper">
  2178. <pre><code class="lang-csharp hljs">public void SelectAll()</code></pre>
  2179. </div>
  2180. <h3 id="events">Events
  2181. </h3>
  2182. <h4 id="Terminal_Gui_TextView_TextChanged" data-uid="Terminal.Gui.TextView.TextChanged">TextChanged</h4>
  2183. <div class="markdown level1 summary">
  2184. Raised when the <a class="xref" href="Terminal.Gui.TextView.html#Terminal_Gui_TextView_Text">Text</a> of the <a class="xref" href="Terminal.Gui.TextView.html">TextView</a> changes.
  2185. </div>
  2186. <div class="markdown level1 conceptual"></div>
  2187. <h5 class="decalaration">Declaration</h5>
  2188. <div class="codewrapper">
  2189. <pre><code class="lang-csharp hljs">public event Action TextChanged</code></pre>
  2190. </div>
  2191. <h5 class="eventType">Event Type</h5>
  2192. <table class="table table-bordered table-striped table-condensed">
  2193. <thead>
  2194. <tr>
  2195. <th>Type</th>
  2196. <th>Description</th>
  2197. </tr>
  2198. </thead>
  2199. <tbody>
  2200. <tr>
  2201. <td><span class="xref">System.Action</span></td>
  2202. <td></td>
  2203. </tr>
  2204. </tbody>
  2205. </table>
  2206. <h3 id="implements">Implements</h3>
  2207. <div>
  2208. <span class="xref">System.IDisposable</span>
  2209. </div>
  2210. <div>
  2211. <span class="xref">System.ComponentModel.ISupportInitializeNotification</span>
  2212. </div>
  2213. <div>
  2214. <span class="xref">System.ComponentModel.ISupportInitialize</span>
  2215. </div>
  2216. </article>
  2217. </div>
  2218. <div class="hidden-sm col-md-2" role="complementary">
  2219. <div class="sideaffix">
  2220. <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
  2221. <h5>In This Article</h5>
  2222. <div></div>
  2223. </nav>
  2224. </div>
  2225. </div>
  2226. </div>
  2227. </div>
  2228. <footer>
  2229. <div class="grad-bottom"></div>
  2230. <div class="footer">
  2231. <div class="container">
  2232. <span class="pull-right">
  2233. <a href="#top">Back to top</a>
  2234. </span>
  2235. <span>Generated by <strong>DocFX</strong></span>
  2236. </div>
  2237. </div>
  2238. </footer>
  2239. </div>
  2240. <script type="text/javascript" src="../../styles/docfx.vendor.js"></script>
  2241. <script type="text/javascript" src="../../styles/docfx.js"></script>
  2242. <script type="text/javascript" src="../../styles/main.js"></script>
  2243. </body>
  2244. </html>