Terminal.Gui.TextView.html 91 KB

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