Terminal.Gui.FakeConsole.html 162 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189
  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 FakeConsole
  8. </title>
  9. <meta name="viewport" content="width=device-width">
  10. <meta name="title" content="Class FakeConsole
  11. ">
  12. <link rel="shortcut icon" href="../../favicon.ico">
  13. <link rel="stylesheet" href="../../styles/docfx.vendor.min.css">
  14. <link rel="stylesheet" href="../../styles/docfx.css">
  15. <link rel="stylesheet" href="../../styles/main.css">
  16. <meta property="docfx:navrel" content="../../toc.html">
  17. <meta property="docfx:tocrel" content="toc.html">
  18. <meta property="docfx:rel" content="../../">
  19. </head>
  20. <body data-spy="scroll" data-target="#affix" data-offset="120">
  21. <div id="wrapper">
  22. <header>
  23. <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
  24. <div class="container">
  25. <div class="navbar-header">
  26. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
  27. <span class="sr-only">Toggle navigation</span>
  28. <span class="icon-bar"></span>
  29. <span class="icon-bar"></span>
  30. <span class="icon-bar"></span>
  31. </button>
  32. <a class="navbar-brand" href="../../index.html">
  33. <img id="logo" class="svg" src="../../images/logo48.png" alt="">
  34. </a>
  35. </div>
  36. <div class="collapse navbar-collapse" id="navbar">
  37. <form class="navbar-form navbar-right" role="search" id="search">
  38. <div class="form-group">
  39. <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
  40. </div>
  41. </form>
  42. </div>
  43. </div>
  44. </nav>
  45. <div class="subnav navbar navbar-default">
  46. <div class="container hide-when-search" id="breadcrumb">
  47. <ul class="breadcrumb">
  48. <li></li>
  49. </ul>
  50. </div>
  51. </div>
  52. </header>
  53. <div class="container body-content">
  54. <div id="search-results">
  55. <div class="search-list">Search Results for <span></span></div>
  56. <div class="sr-items">
  57. <p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
  58. </div>
  59. <ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
  60. </div>
  61. </div>
  62. <div role="main" class="container body-content hide-when-search">
  63. <div class="sidenav hide-when-search">
  64. <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
  65. <div class="sidetoggle collapse" id="sidetoggle">
  66. <div id="sidetoc"></div>
  67. </div>
  68. </div>
  69. <div class="article row grid-right">
  70. <div class="col-md-10">
  71. <article class="content wrap" id="_content" data-uid="Terminal.Gui.FakeConsole">
  72. <h1 id="Terminal_Gui_FakeConsole" data-uid="Terminal.Gui.FakeConsole" class="text-break">Class FakeConsole
  73. </h1>
  74. <div class="markdown level0 summary"></div>
  75. <div class="markdown level0 conceptual"></div>
  76. <div class="inheritance">
  77. <h5>Inheritance</h5>
  78. <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
  79. <div class="level1"><span class="xref">FakeConsole</span></div>
  80. </div>
  81. <div class="inheritedMembers">
  82. <h5>Inherited Members</h5>
  83. <div>
  84. <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)">object.Equals(object)</a>
  85. </div>
  86. <div>
  87. <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)">object.Equals(object, object)</a>
  88. </div>
  89. <div>
  90. <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.gethashcode">object.GetHashCode()</a>
  91. </div>
  92. <div>
  93. <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.gettype">object.GetType()</a>
  94. </div>
  95. <div>
  96. <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone">object.MemberwiseClone()</a>
  97. </div>
  98. <div>
  99. <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.referenceequals">object.ReferenceEquals(object, object)</a>
  100. </div>
  101. <div>
  102. <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object.tostring">object.ToString()</a>
  103. </div>
  104. </div>
  105. <h6><strong>Namespace</strong>: <a class="xref" href="Terminal.html">Terminal</a>.<a class="xref" href="Terminal.Gui.html">Gui</a></h6>
  106. <h6><strong>Assembly</strong>: Terminal.Gui.dll</h6>
  107. <h5 id="Terminal_Gui_FakeConsole_syntax">Syntax</h5>
  108. <div class="codewrapper">
  109. <pre><code class="lang-csharp hljs">public static class FakeConsole</code></pre>
  110. </div>
  111. <h3 id="fields">Fields
  112. </h3>
  113. <span class="small pull-right mobile-hide">
  114. <span class="divider">|</span>
  115. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_HEIGHT.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.HEIGHT%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  116. </span>
  117. <span class="small pull-right mobile-hide">
  118. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L47">View Source</a>
  119. </span>
  120. <h4 id="Terminal_Gui_FakeConsole_HEIGHT" data-uid="Terminal.Gui.FakeConsole.HEIGHT">HEIGHT</h4>
  121. <div class="markdown level1 summary">Specifies the initial console height.</div>
  122. <div class="markdown level1 conceptual"></div>
  123. <h5 class="declaration">Declaration</h5>
  124. <div class="codewrapper">
  125. <pre><code class="lang-csharp hljs">public const int HEIGHT = 25</code></pre>
  126. </div>
  127. <h5 class="fieldValue">Field Value</h5>
  128. <table class="table table-bordered table-condensed">
  129. <thead>
  130. <tr>
  131. <th>Type</th>
  132. <th>Description</th>
  133. </tr>
  134. </thead>
  135. <tbody>
  136. <tr>
  137. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  138. <td></td>
  139. </tr>
  140. </tbody>
  141. </table>
  142. <span class="small pull-right mobile-hide">
  143. <span class="divider">|</span>
  144. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_MockKeyPresses.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.MockKeyPresses%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  145. </span>
  146. <span class="small pull-right mobile-hide">
  147. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L823">View Source</a>
  148. </span>
  149. <h4 id="Terminal_Gui_FakeConsole_MockKeyPresses" data-uid="Terminal.Gui.FakeConsole.MockKeyPresses">MockKeyPresses</h4>
  150. <div class="markdown level1 summary"></div>
  151. <div class="markdown level1 conceptual"></div>
  152. <h5 class="declaration">Declaration</h5>
  153. <div class="codewrapper">
  154. <pre><code class="lang-csharp hljs">public static Stack&lt;ConsoleKeyInfo&gt; MockKeyPresses</code></pre>
  155. </div>
  156. <h5 class="fieldValue">Field Value</h5>
  157. <table class="table table-bordered table-condensed">
  158. <thead>
  159. <tr>
  160. <th>Type</th>
  161. <th>Description</th>
  162. </tr>
  163. </thead>
  164. <tbody>
  165. <tr>
  166. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.stack-1">Stack</a>&lt;<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.consolekeyinfo">ConsoleKeyInfo</a>&gt;</td>
  167. <td></td>
  168. </tr>
  169. </tbody>
  170. </table>
  171. <span class="small pull-right mobile-hide">
  172. <span class="divider">|</span>
  173. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WIDTH.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WIDTH%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  174. </span>
  175. <span class="small pull-right mobile-hide">
  176. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L42">View Source</a>
  177. </span>
  178. <h4 id="Terminal_Gui_FakeConsole_WIDTH" data-uid="Terminal.Gui.FakeConsole.WIDTH">WIDTH</h4>
  179. <div class="markdown level1 summary">Specifies the initial console width.</div>
  180. <div class="markdown level1 conceptual"></div>
  181. <h5 class="declaration">Declaration</h5>
  182. <div class="codewrapper">
  183. <pre><code class="lang-csharp hljs">public const int WIDTH = 80</code></pre>
  184. </div>
  185. <h5 class="fieldValue">Field Value</h5>
  186. <table class="table table-bordered table-condensed">
  187. <thead>
  188. <tr>
  189. <th>Type</th>
  190. <th>Description</th>
  191. </tr>
  192. </thead>
  193. <tbody>
  194. <tr>
  195. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  196. <td></td>
  197. </tr>
  198. </tbody>
  199. </table>
  200. <h3 id="properties">Properties
  201. </h3>
  202. <span class="small pull-right mobile-hide">
  203. <span class="divider">|</span>
  204. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_BackgroundColor.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.BackgroundColor%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  205. </span>
  206. <span class="small pull-right mobile-hide">
  207. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L168">View Source</a>
  208. </span>
  209. <a id="Terminal_Gui_FakeConsole_BackgroundColor_" data-uid="Terminal.Gui.FakeConsole.BackgroundColor*"></a>
  210. <h4 id="Terminal_Gui_FakeConsole_BackgroundColor" data-uid="Terminal.Gui.FakeConsole.BackgroundColor">BackgroundColor</h4>
  211. <div class="markdown level1 summary"></div>
  212. <div class="markdown level1 conceptual"></div>
  213. <h5 class="declaration">Declaration</h5>
  214. <div class="codewrapper">
  215. <pre><code class="lang-csharp hljs">public static ConsoleColor BackgroundColor { get; set; }</code></pre>
  216. </div>
  217. <h5 class="propertyValue">Property Value</h5>
  218. <table class="table table-bordered table-condensed">
  219. <thead>
  220. <tr>
  221. <th>Type</th>
  222. <th>Description</th>
  223. </tr>
  224. </thead>
  225. <tbody>
  226. <tr>
  227. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.consolecolor">ConsoleColor</a></td>
  228. <td></td>
  229. </tr>
  230. </tbody>
  231. </table>
  232. <span class="small pull-right mobile-hide">
  233. <span class="divider">|</span>
  234. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_BufferHeight.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.BufferHeight%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  235. </span>
  236. <span class="small pull-right mobile-hide">
  237. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L215">View Source</a>
  238. </span>
  239. <a id="Terminal_Gui_FakeConsole_BufferHeight_" data-uid="Terminal.Gui.FakeConsole.BufferHeight*"></a>
  240. <h4 id="Terminal_Gui_FakeConsole_BufferHeight" data-uid="Terminal.Gui.FakeConsole.BufferHeight">BufferHeight</h4>
  241. <div class="markdown level1 summary"></div>
  242. <div class="markdown level1 conceptual"></div>
  243. <h5 class="declaration">Declaration</h5>
  244. <div class="codewrapper">
  245. <pre><code class="lang-csharp hljs">public static int BufferHeight { get; set; }</code></pre>
  246. </div>
  247. <h5 class="propertyValue">Property Value</h5>
  248. <table class="table table-bordered table-condensed">
  249. <thead>
  250. <tr>
  251. <th>Type</th>
  252. <th>Description</th>
  253. </tr>
  254. </thead>
  255. <tbody>
  256. <tr>
  257. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  258. <td></td>
  259. </tr>
  260. </tbody>
  261. </table>
  262. <span class="small pull-right mobile-hide">
  263. <span class="divider">|</span>
  264. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_BufferWidth.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.BufferWidth%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  265. </span>
  266. <span class="small pull-right mobile-hide">
  267. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L237">View Source</a>
  268. </span>
  269. <a id="Terminal_Gui_FakeConsole_BufferWidth_" data-uid="Terminal.Gui.FakeConsole.BufferWidth*"></a>
  270. <h4 id="Terminal_Gui_FakeConsole_BufferWidth" data-uid="Terminal.Gui.FakeConsole.BufferWidth">BufferWidth</h4>
  271. <div class="markdown level1 summary"></div>
  272. <div class="markdown level1 conceptual"></div>
  273. <h5 class="declaration">Declaration</h5>
  274. <div class="codewrapper">
  275. <pre><code class="lang-csharp hljs">public static int BufferWidth { get; set; }</code></pre>
  276. </div>
  277. <h5 class="propertyValue">Property Value</h5>
  278. <table class="table table-bordered table-condensed">
  279. <thead>
  280. <tr>
  281. <th>Type</th>
  282. <th>Description</th>
  283. </tr>
  284. </thead>
  285. <tbody>
  286. <tr>
  287. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  288. <td></td>
  289. </tr>
  290. </tbody>
  291. </table>
  292. <span class="small pull-right mobile-hide">
  293. <span class="divider">|</span>
  294. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_CapsLock.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.CapsLock%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  295. </span>
  296. <span class="small pull-right mobile-hide">
  297. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L481">View Source</a>
  298. </span>
  299. <a id="Terminal_Gui_FakeConsole_CapsLock_" data-uid="Terminal.Gui.FakeConsole.CapsLock*"></a>
  300. <h4 id="Terminal_Gui_FakeConsole_CapsLock" data-uid="Terminal.Gui.FakeConsole.CapsLock">CapsLock</h4>
  301. <div class="markdown level1 summary"></div>
  302. <div class="markdown level1 conceptual"></div>
  303. <h5 class="declaration">Declaration</h5>
  304. <div class="codewrapper">
  305. <pre><code class="lang-csharp hljs">public static bool CapsLock { get; }</code></pre>
  306. </div>
  307. <h5 class="propertyValue">Property Value</h5>
  308. <table class="table table-bordered table-condensed">
  309. <thead>
  310. <tr>
  311. <th>Type</th>
  312. <th>Description</th>
  313. </tr>
  314. </thead>
  315. <tbody>
  316. <tr>
  317. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
  318. <td></td>
  319. </tr>
  320. </tbody>
  321. </table>
  322. <span class="small pull-right mobile-hide">
  323. <span class="divider">|</span>
  324. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_CursorLeft.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.CursorLeft%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  325. </span>
  326. <span class="small pull-right mobile-hide">
  327. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L359">View Source</a>
  328. </span>
  329. <a id="Terminal_Gui_FakeConsole_CursorLeft_" data-uid="Terminal.Gui.FakeConsole.CursorLeft*"></a>
  330. <h4 id="Terminal_Gui_FakeConsole_CursorLeft" data-uid="Terminal.Gui.FakeConsole.CursorLeft">CursorLeft</h4>
  331. <div class="markdown level1 summary"></div>
  332. <div class="markdown level1 conceptual"></div>
  333. <h5 class="declaration">Declaration</h5>
  334. <div class="codewrapper">
  335. <pre><code class="lang-csharp hljs">public static int CursorLeft { get; set; }</code></pre>
  336. </div>
  337. <h5 class="propertyValue">Property Value</h5>
  338. <table class="table table-bordered table-condensed">
  339. <thead>
  340. <tr>
  341. <th>Type</th>
  342. <th>Description</th>
  343. </tr>
  344. </thead>
  345. <tbody>
  346. <tr>
  347. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  348. <td></td>
  349. </tr>
  350. </tbody>
  351. </table>
  352. <span class="small pull-right mobile-hide">
  353. <span class="divider">|</span>
  354. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_CursorSize.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.CursorSize%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  355. </span>
  356. <span class="small pull-right mobile-hide">
  357. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L401">View Source</a>
  358. </span>
  359. <a id="Terminal_Gui_FakeConsole_CursorSize_" data-uid="Terminal.Gui.FakeConsole.CursorSize*"></a>
  360. <h4 id="Terminal_Gui_FakeConsole_CursorSize" data-uid="Terminal.Gui.FakeConsole.CursorSize">CursorSize</h4>
  361. <div class="markdown level1 summary"></div>
  362. <div class="markdown level1 conceptual"></div>
  363. <h5 class="declaration">Declaration</h5>
  364. <div class="codewrapper">
  365. <pre><code class="lang-csharp hljs">public static int CursorSize { get; set; }</code></pre>
  366. </div>
  367. <h5 class="propertyValue">Property Value</h5>
  368. <table class="table table-bordered table-condensed">
  369. <thead>
  370. <tr>
  371. <th>Type</th>
  372. <th>Description</th>
  373. </tr>
  374. </thead>
  375. <tbody>
  376. <tr>
  377. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  378. <td></td>
  379. </tr>
  380. </tbody>
  381. </table>
  382. <span class="small pull-right mobile-hide">
  383. <span class="divider">|</span>
  384. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_CursorTop.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.CursorTop%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  385. </span>
  386. <span class="small pull-right mobile-hide">
  387. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L380">View Source</a>
  388. </span>
  389. <a id="Terminal_Gui_FakeConsole_CursorTop_" data-uid="Terminal.Gui.FakeConsole.CursorTop*"></a>
  390. <h4 id="Terminal_Gui_FakeConsole_CursorTop" data-uid="Terminal.Gui.FakeConsole.CursorTop">CursorTop</h4>
  391. <div class="markdown level1 summary"></div>
  392. <div class="markdown level1 conceptual"></div>
  393. <h5 class="declaration">Declaration</h5>
  394. <div class="codewrapper">
  395. <pre><code class="lang-csharp hljs">public static int CursorTop { get; set; }</code></pre>
  396. </div>
  397. <h5 class="propertyValue">Property Value</h5>
  398. <table class="table table-bordered table-condensed">
  399. <thead>
  400. <tr>
  401. <th>Type</th>
  402. <th>Description</th>
  403. </tr>
  404. </thead>
  405. <tbody>
  406. <tr>
  407. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  408. <td></td>
  409. </tr>
  410. </tbody>
  411. </table>
  412. <span class="small pull-right mobile-hide">
  413. <span class="divider">|</span>
  414. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_CursorVisible.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.CursorVisible%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  415. </span>
  416. <span class="small pull-right mobile-hide">
  417. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L418">View Source</a>
  418. </span>
  419. <a id="Terminal_Gui_FakeConsole_CursorVisible_" data-uid="Terminal.Gui.FakeConsole.CursorVisible*"></a>
  420. <h4 id="Terminal_Gui_FakeConsole_CursorVisible" data-uid="Terminal.Gui.FakeConsole.CursorVisible">CursorVisible</h4>
  421. <div class="markdown level1 summary"></div>
  422. <div class="markdown level1 conceptual"></div>
  423. <h5 class="declaration">Declaration</h5>
  424. <div class="codewrapper">
  425. <pre><code class="lang-csharp hljs">public static bool CursorVisible { get; set; }</code></pre>
  426. </div>
  427. <h5 class="propertyValue">Property Value</h5>
  428. <table class="table table-bordered table-condensed">
  429. <thead>
  430. <tr>
  431. <th>Type</th>
  432. <th>Description</th>
  433. </tr>
  434. </thead>
  435. <tbody>
  436. <tr>
  437. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
  438. <td></td>
  439. </tr>
  440. </tbody>
  441. </table>
  442. <span class="small pull-right mobile-hide">
  443. <span class="divider">|</span>
  444. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Error.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Error%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  445. </span>
  446. <span class="small pull-right mobile-hide">
  447. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L104">View Source</a>
  448. </span>
  449. <a id="Terminal_Gui_FakeConsole_Error_" data-uid="Terminal.Gui.FakeConsole.Error*"></a>
  450. <h4 id="Terminal_Gui_FakeConsole_Error" data-uid="Terminal.Gui.FakeConsole.Error">Error</h4>
  451. <div class="markdown level1 summary"></div>
  452. <div class="markdown level1 conceptual"></div>
  453. <h5 class="declaration">Declaration</h5>
  454. <div class="codewrapper">
  455. <pre><code class="lang-csharp hljs">public static TextWriter Error { get; }</code></pre>
  456. </div>
  457. <h5 class="propertyValue">Property Value</h5>
  458. <table class="table table-bordered table-condensed">
  459. <thead>
  460. <tr>
  461. <th>Type</th>
  462. <th>Description</th>
  463. </tr>
  464. </thead>
  465. <tbody>
  466. <tr>
  467. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.textwriter">TextWriter</a></td>
  468. <td></td>
  469. </tr>
  470. </tbody>
  471. </table>
  472. <span class="small pull-right mobile-hide">
  473. <span class="divider">|</span>
  474. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_ForegroundColor.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.ForegroundColor%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  475. </span>
  476. <span class="small pull-right mobile-hide">
  477. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L193">View Source</a>
  478. </span>
  479. <a id="Terminal_Gui_FakeConsole_ForegroundColor_" data-uid="Terminal.Gui.FakeConsole.ForegroundColor*"></a>
  480. <h4 id="Terminal_Gui_FakeConsole_ForegroundColor" data-uid="Terminal.Gui.FakeConsole.ForegroundColor">ForegroundColor</h4>
  481. <div class="markdown level1 summary"></div>
  482. <div class="markdown level1 conceptual"></div>
  483. <h5 class="declaration">Declaration</h5>
  484. <div class="codewrapper">
  485. <pre><code class="lang-csharp hljs">public static ConsoleColor ForegroundColor { get; set; }</code></pre>
  486. </div>
  487. <h5 class="propertyValue">Property Value</h5>
  488. <table class="table table-bordered table-condensed">
  489. <thead>
  490. <tr>
  491. <th>Type</th>
  492. <th>Description</th>
  493. </tr>
  494. </thead>
  495. <tbody>
  496. <tr>
  497. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.consolecolor">ConsoleColor</a></td>
  498. <td></td>
  499. </tr>
  500. </tbody>
  501. </table>
  502. <span class="small pull-right mobile-hide">
  503. <span class="divider">|</span>
  504. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_In.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.In%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  505. </span>
  506. <span class="small pull-right mobile-hide">
  507. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L84">View Source</a>
  508. </span>
  509. <a id="Terminal_Gui_FakeConsole_In_" data-uid="Terminal.Gui.FakeConsole.In*"></a>
  510. <h4 id="Terminal_Gui_FakeConsole_In" data-uid="Terminal.Gui.FakeConsole.In">In</h4>
  511. <div class="markdown level1 summary"></div>
  512. <div class="markdown level1 conceptual"></div>
  513. <h5 class="declaration">Declaration</h5>
  514. <div class="codewrapper">
  515. <pre><code class="lang-csharp hljs">public static TextReader In { get; }</code></pre>
  516. </div>
  517. <h5 class="propertyValue">Property Value</h5>
  518. <table class="table table-bordered table-condensed">
  519. <thead>
  520. <tr>
  521. <th>Type</th>
  522. <th>Description</th>
  523. </tr>
  524. </thead>
  525. <tbody>
  526. <tr>
  527. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.textreader">TextReader</a></td>
  528. <td></td>
  529. </tr>
  530. </tbody>
  531. </table>
  532. <span class="small pull-right mobile-hide">
  533. <span class="divider">|</span>
  534. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_InputEncoding.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.InputEncoding%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  535. </span>
  536. <span class="small pull-right mobile-hide">
  537. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L124">View Source</a>
  538. </span>
  539. <a id="Terminal_Gui_FakeConsole_InputEncoding_" data-uid="Terminal.Gui.FakeConsole.InputEncoding*"></a>
  540. <h4 id="Terminal_Gui_FakeConsole_InputEncoding" data-uid="Terminal.Gui.FakeConsole.InputEncoding">InputEncoding</h4>
  541. <div class="markdown level1 summary"></div>
  542. <div class="markdown level1 conceptual"></div>
  543. <h5 class="declaration">Declaration</h5>
  544. <div class="codewrapper">
  545. <pre><code class="lang-csharp hljs">public static Encoding InputEncoding { get; set; }</code></pre>
  546. </div>
  547. <h5 class="propertyValue">Property Value</h5>
  548. <table class="table table-bordered table-condensed">
  549. <thead>
  550. <tr>
  551. <th>Type</th>
  552. <th>Description</th>
  553. </tr>
  554. </thead>
  555. <tbody>
  556. <tr>
  557. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.text.encoding">Encoding</a></td>
  558. <td></td>
  559. </tr>
  560. </tbody>
  561. </table>
  562. <span class="small pull-right mobile-hide">
  563. <span class="divider">|</span>
  564. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_IsErrorRedirected.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.IsErrorRedirected%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  565. </span>
  566. <span class="small pull-right mobile-hide">
  567. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L74">View Source</a>
  568. </span>
  569. <a id="Terminal_Gui_FakeConsole_IsErrorRedirected_" data-uid="Terminal.Gui.FakeConsole.IsErrorRedirected*"></a>
  570. <h4 id="Terminal_Gui_FakeConsole_IsErrorRedirected" data-uid="Terminal.Gui.FakeConsole.IsErrorRedirected">IsErrorRedirected</h4>
  571. <div class="markdown level1 summary"></div>
  572. <div class="markdown level1 conceptual"></div>
  573. <h5 class="declaration">Declaration</h5>
  574. <div class="codewrapper">
  575. <pre><code class="lang-csharp hljs">public static bool IsErrorRedirected { get; }</code></pre>
  576. </div>
  577. <h5 class="propertyValue">Property Value</h5>
  578. <table class="table table-bordered table-condensed">
  579. <thead>
  580. <tr>
  581. <th>Type</th>
  582. <th>Description</th>
  583. </tr>
  584. </thead>
  585. <tbody>
  586. <tr>
  587. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
  588. <td></td>
  589. </tr>
  590. </tbody>
  591. </table>
  592. <span class="small pull-right mobile-hide">
  593. <span class="divider">|</span>
  594. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_IsInputRedirected.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.IsInputRedirected%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  595. </span>
  596. <span class="small pull-right mobile-hide">
  597. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L492">View Source</a>
  598. </span>
  599. <a id="Terminal_Gui_FakeConsole_IsInputRedirected_" data-uid="Terminal.Gui.FakeConsole.IsInputRedirected*"></a>
  600. <h4 id="Terminal_Gui_FakeConsole_IsInputRedirected" data-uid="Terminal.Gui.FakeConsole.IsInputRedirected">IsInputRedirected</h4>
  601. <div class="markdown level1 summary"></div>
  602. <div class="markdown level1 conceptual"></div>
  603. <h5 class="declaration">Declaration</h5>
  604. <div class="codewrapper">
  605. <pre><code class="lang-csharp hljs">public static bool IsInputRedirected { get; }</code></pre>
  606. </div>
  607. <h5 class="propertyValue">Property Value</h5>
  608. <table class="table table-bordered table-condensed">
  609. <thead>
  610. <tr>
  611. <th>Type</th>
  612. <th>Description</th>
  613. </tr>
  614. </thead>
  615. <tbody>
  616. <tr>
  617. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
  618. <td></td>
  619. </tr>
  620. </tbody>
  621. </table>
  622. <span class="small pull-right mobile-hide">
  623. <span class="divider">|</span>
  624. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_IsOutputRedirected.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.IsOutputRedirected%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  625. </span>
  626. <span class="small pull-right mobile-hide">
  627. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L63">View Source</a>
  628. </span>
  629. <a id="Terminal_Gui_FakeConsole_IsOutputRedirected_" data-uid="Terminal.Gui.FakeConsole.IsOutputRedirected*"></a>
  630. <h4 id="Terminal_Gui_FakeConsole_IsOutputRedirected" data-uid="Terminal.Gui.FakeConsole.IsOutputRedirected">IsOutputRedirected</h4>
  631. <div class="markdown level1 summary"></div>
  632. <div class="markdown level1 conceptual"></div>
  633. <h5 class="declaration">Declaration</h5>
  634. <div class="codewrapper">
  635. <pre><code class="lang-csharp hljs">public static bool IsOutputRedirected { get; }</code></pre>
  636. </div>
  637. <h5 class="propertyValue">Property Value</h5>
  638. <table class="table table-bordered table-condensed">
  639. <thead>
  640. <tr>
  641. <th>Type</th>
  642. <th>Description</th>
  643. </tr>
  644. </thead>
  645. <tbody>
  646. <tr>
  647. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
  648. <td></td>
  649. </tr>
  650. </tbody>
  651. </table>
  652. <span class="small pull-right mobile-hide">
  653. <span class="divider">|</span>
  654. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_KeyAvailable.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.KeyAvailable%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  655. </span>
  656. <span class="small pull-right mobile-hide">
  657. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L459">View Source</a>
  658. </span>
  659. <a id="Terminal_Gui_FakeConsole_KeyAvailable_" data-uid="Terminal.Gui.FakeConsole.KeyAvailable*"></a>
  660. <h4 id="Terminal_Gui_FakeConsole_KeyAvailable" data-uid="Terminal.Gui.FakeConsole.KeyAvailable">KeyAvailable</h4>
  661. <div class="markdown level1 summary"></div>
  662. <div class="markdown level1 conceptual"></div>
  663. <h5 class="declaration">Declaration</h5>
  664. <div class="codewrapper">
  665. <pre><code class="lang-csharp hljs">public static bool KeyAvailable { get; }</code></pre>
  666. </div>
  667. <h5 class="propertyValue">Property Value</h5>
  668. <table class="table table-bordered table-condensed">
  669. <thead>
  670. <tr>
  671. <th>Type</th>
  672. <th>Description</th>
  673. </tr>
  674. </thead>
  675. <tbody>
  676. <tr>
  677. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
  678. <td></td>
  679. </tr>
  680. </tbody>
  681. </table>
  682. <span class="small pull-right mobile-hide">
  683. <span class="divider">|</span>
  684. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_LargestWindowHeight.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.LargestWindowHeight%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  685. </span>
  686. <span class="small pull-right mobile-hide">
  687. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L298">View Source</a>
  688. </span>
  689. <a id="Terminal_Gui_FakeConsole_LargestWindowHeight_" data-uid="Terminal.Gui.FakeConsole.LargestWindowHeight*"></a>
  690. <h4 id="Terminal_Gui_FakeConsole_LargestWindowHeight" data-uid="Terminal.Gui.FakeConsole.LargestWindowHeight">LargestWindowHeight</h4>
  691. <div class="markdown level1 summary"></div>
  692. <div class="markdown level1 conceptual"></div>
  693. <h5 class="declaration">Declaration</h5>
  694. <div class="codewrapper">
  695. <pre><code class="lang-csharp hljs">public static int LargestWindowHeight { get; }</code></pre>
  696. </div>
  697. <h5 class="propertyValue">Property Value</h5>
  698. <table class="table table-bordered table-condensed">
  699. <thead>
  700. <tr>
  701. <th>Type</th>
  702. <th>Description</th>
  703. </tr>
  704. </thead>
  705. <tbody>
  706. <tr>
  707. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  708. <td></td>
  709. </tr>
  710. </tbody>
  711. </table>
  712. <span class="small pull-right mobile-hide">
  713. <span class="divider">|</span>
  714. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_LargestWindowWidth.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.LargestWindowWidth%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  715. </span>
  716. <span class="small pull-right mobile-hide">
  717. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L287">View Source</a>
  718. </span>
  719. <a id="Terminal_Gui_FakeConsole_LargestWindowWidth_" data-uid="Terminal.Gui.FakeConsole.LargestWindowWidth*"></a>
  720. <h4 id="Terminal_Gui_FakeConsole_LargestWindowWidth" data-uid="Terminal.Gui.FakeConsole.LargestWindowWidth">LargestWindowWidth</h4>
  721. <div class="markdown level1 summary"></div>
  722. <div class="markdown level1 conceptual"></div>
  723. <h5 class="declaration">Declaration</h5>
  724. <div class="codewrapper">
  725. <pre><code class="lang-csharp hljs">public static int LargestWindowWidth { get; }</code></pre>
  726. </div>
  727. <h5 class="propertyValue">Property Value</h5>
  728. <table class="table table-bordered table-condensed">
  729. <thead>
  730. <tr>
  731. <th>Type</th>
  732. <th>Description</th>
  733. </tr>
  734. </thead>
  735. <tbody>
  736. <tr>
  737. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  738. <td></td>
  739. </tr>
  740. </tbody>
  741. </table>
  742. <span class="small pull-right mobile-hide">
  743. <span class="divider">|</span>
  744. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_NumberLock.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.NumberLock%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  745. </span>
  746. <span class="small pull-right mobile-hide">
  747. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L470">View Source</a>
  748. </span>
  749. <a id="Terminal_Gui_FakeConsole_NumberLock_" data-uid="Terminal.Gui.FakeConsole.NumberLock*"></a>
  750. <h4 id="Terminal_Gui_FakeConsole_NumberLock" data-uid="Terminal.Gui.FakeConsole.NumberLock">NumberLock</h4>
  751. <div class="markdown level1 summary"></div>
  752. <div class="markdown level1 conceptual"></div>
  753. <h5 class="declaration">Declaration</h5>
  754. <div class="codewrapper">
  755. <pre><code class="lang-csharp hljs">public static bool NumberLock { get; }</code></pre>
  756. </div>
  757. <h5 class="propertyValue">Property Value</h5>
  758. <table class="table table-bordered table-condensed">
  759. <thead>
  760. <tr>
  761. <th>Type</th>
  762. <th>Description</th>
  763. </tr>
  764. </thead>
  765. <tbody>
  766. <tr>
  767. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
  768. <td></td>
  769. </tr>
  770. </tbody>
  771. </table>
  772. <span class="small pull-right mobile-hide">
  773. <span class="divider">|</span>
  774. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Out.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Out%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  775. </span>
  776. <span class="small pull-right mobile-hide">
  777. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L94">View Source</a>
  778. </span>
  779. <a id="Terminal_Gui_FakeConsole_Out_" data-uid="Terminal.Gui.FakeConsole.Out*"></a>
  780. <h4 id="Terminal_Gui_FakeConsole_Out" data-uid="Terminal.Gui.FakeConsole.Out">Out</h4>
  781. <div class="markdown level1 summary"></div>
  782. <div class="markdown level1 conceptual"></div>
  783. <h5 class="declaration">Declaration</h5>
  784. <div class="codewrapper">
  785. <pre><code class="lang-csharp hljs">public static TextWriter Out { get; }</code></pre>
  786. </div>
  787. <h5 class="propertyValue">Property Value</h5>
  788. <table class="table table-bordered table-condensed">
  789. <thead>
  790. <tr>
  791. <th>Type</th>
  792. <th>Description</th>
  793. </tr>
  794. </thead>
  795. <tbody>
  796. <tr>
  797. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.textwriter">TextWriter</a></td>
  798. <td></td>
  799. </tr>
  800. </tbody>
  801. </table>
  802. <span class="small pull-right mobile-hide">
  803. <span class="divider">|</span>
  804. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_OutputEncoding.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.OutputEncoding%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  805. </span>
  806. <span class="small pull-right mobile-hide">
  807. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L144">View Source</a>
  808. </span>
  809. <a id="Terminal_Gui_FakeConsole_OutputEncoding_" data-uid="Terminal.Gui.FakeConsole.OutputEncoding*"></a>
  810. <h4 id="Terminal_Gui_FakeConsole_OutputEncoding" data-uid="Terminal.Gui.FakeConsole.OutputEncoding">OutputEncoding</h4>
  811. <div class="markdown level1 summary"></div>
  812. <div class="markdown level1 conceptual"></div>
  813. <h5 class="declaration">Declaration</h5>
  814. <div class="codewrapper">
  815. <pre><code class="lang-csharp hljs">public static Encoding OutputEncoding { get; set; }</code></pre>
  816. </div>
  817. <h5 class="propertyValue">Property Value</h5>
  818. <table class="table table-bordered table-condensed">
  819. <thead>
  820. <tr>
  821. <th>Type</th>
  822. <th>Description</th>
  823. </tr>
  824. </thead>
  825. <tbody>
  826. <tr>
  827. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.text.encoding">Encoding</a></td>
  828. <td></td>
  829. </tr>
  830. </tbody>
  831. </table>
  832. <span class="small pull-right mobile-hide">
  833. <span class="divider">|</span>
  834. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Title.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Title%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  835. </span>
  836. <span class="small pull-right mobile-hide">
  837. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L442">View Source</a>
  838. </span>
  839. <a id="Terminal_Gui_FakeConsole_Title_" data-uid="Terminal.Gui.FakeConsole.Title*"></a>
  840. <h4 id="Terminal_Gui_FakeConsole_Title" data-uid="Terminal.Gui.FakeConsole.Title">Title</h4>
  841. <div class="markdown level1 summary"></div>
  842. <div class="markdown level1 conceptual"></div>
  843. <h5 class="declaration">Declaration</h5>
  844. <div class="codewrapper">
  845. <pre><code class="lang-csharp hljs">public static string Title { get; set; }</code></pre>
  846. </div>
  847. <h5 class="propertyValue">Property Value</h5>
  848. <table class="table table-bordered table-condensed">
  849. <thead>
  850. <tr>
  851. <th>Type</th>
  852. <th>Description</th>
  853. </tr>
  854. </thead>
  855. <tbody>
  856. <tr>
  857. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  858. <td></td>
  859. </tr>
  860. </tbody>
  861. </table>
  862. <span class="small pull-right mobile-hide">
  863. <span class="divider">|</span>
  864. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_TreatControlCAsInput.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.TreatControlCAsInput%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  865. </span>
  866. <span class="small pull-right mobile-hide">
  867. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L276">View Source</a>
  868. </span>
  869. <a id="Terminal_Gui_FakeConsole_TreatControlCAsInput_" data-uid="Terminal.Gui.FakeConsole.TreatControlCAsInput*"></a>
  870. <h4 id="Terminal_Gui_FakeConsole_TreatControlCAsInput" data-uid="Terminal.Gui.FakeConsole.TreatControlCAsInput">TreatControlCAsInput</h4>
  871. <div class="markdown level1 summary"></div>
  872. <div class="markdown level1 conceptual"></div>
  873. <h5 class="declaration">Declaration</h5>
  874. <div class="codewrapper">
  875. <pre><code class="lang-csharp hljs">public static bool TreatControlCAsInput { get; set; }</code></pre>
  876. </div>
  877. <h5 class="propertyValue">Property Value</h5>
  878. <table class="table table-bordered table-condensed">
  879. <thead>
  880. <tr>
  881. <th>Type</th>
  882. <th>Description</th>
  883. </tr>
  884. </thead>
  885. <tbody>
  886. <tr>
  887. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
  888. <td></td>
  889. </tr>
  890. </tbody>
  891. </table>
  892. <span class="small pull-right mobile-hide">
  893. <span class="divider">|</span>
  894. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WindowHeight.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WindowHeight%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  895. </span>
  896. <span class="small pull-right mobile-hide">
  897. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L260">View Source</a>
  898. </span>
  899. <a id="Terminal_Gui_FakeConsole_WindowHeight_" data-uid="Terminal.Gui.FakeConsole.WindowHeight*"></a>
  900. <h4 id="Terminal_Gui_FakeConsole_WindowHeight" data-uid="Terminal.Gui.FakeConsole.WindowHeight">WindowHeight</h4>
  901. <div class="markdown level1 summary"></div>
  902. <div class="markdown level1 conceptual"></div>
  903. <h5 class="declaration">Declaration</h5>
  904. <div class="codewrapper">
  905. <pre><code class="lang-csharp hljs">public static int WindowHeight { get; set; }</code></pre>
  906. </div>
  907. <h5 class="propertyValue">Property Value</h5>
  908. <table class="table table-bordered table-condensed">
  909. <thead>
  910. <tr>
  911. <th>Type</th>
  912. <th>Description</th>
  913. </tr>
  914. </thead>
  915. <tbody>
  916. <tr>
  917. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  918. <td></td>
  919. </tr>
  920. </tbody>
  921. </table>
  922. <span class="small pull-right mobile-hide">
  923. <span class="divider">|</span>
  924. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WindowLeft.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WindowLeft%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  925. </span>
  926. <span class="small pull-right mobile-hide">
  927. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L318">View Source</a>
  928. </span>
  929. <a id="Terminal_Gui_FakeConsole_WindowLeft_" data-uid="Terminal.Gui.FakeConsole.WindowLeft*"></a>
  930. <h4 id="Terminal_Gui_FakeConsole_WindowLeft" data-uid="Terminal.Gui.FakeConsole.WindowLeft">WindowLeft</h4>
  931. <div class="markdown level1 summary"></div>
  932. <div class="markdown level1 conceptual"></div>
  933. <h5 class="declaration">Declaration</h5>
  934. <div class="codewrapper">
  935. <pre><code class="lang-csharp hljs">public static int WindowLeft { get; set; }</code></pre>
  936. </div>
  937. <h5 class="propertyValue">Property Value</h5>
  938. <table class="table table-bordered table-condensed">
  939. <thead>
  940. <tr>
  941. <th>Type</th>
  942. <th>Description</th>
  943. </tr>
  944. </thead>
  945. <tbody>
  946. <tr>
  947. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  948. <td></td>
  949. </tr>
  950. </tbody>
  951. </table>
  952. <span class="small pull-right mobile-hide">
  953. <span class="divider">|</span>
  954. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WindowTop.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WindowTop%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  955. </span>
  956. <span class="small pull-right mobile-hide">
  957. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L338">View Source</a>
  958. </span>
  959. <a id="Terminal_Gui_FakeConsole_WindowTop_" data-uid="Terminal.Gui.FakeConsole.WindowTop*"></a>
  960. <h4 id="Terminal_Gui_FakeConsole_WindowTop" data-uid="Terminal.Gui.FakeConsole.WindowTop">WindowTop</h4>
  961. <div class="markdown level1 summary"></div>
  962. <div class="markdown level1 conceptual"></div>
  963. <h5 class="declaration">Declaration</h5>
  964. <div class="codewrapper">
  965. <pre><code class="lang-csharp hljs">public static int WindowTop { get; set; }</code></pre>
  966. </div>
  967. <h5 class="propertyValue">Property Value</h5>
  968. <table class="table table-bordered table-condensed">
  969. <thead>
  970. <tr>
  971. <th>Type</th>
  972. <th>Description</th>
  973. </tr>
  974. </thead>
  975. <tbody>
  976. <tr>
  977. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  978. <td></td>
  979. </tr>
  980. </tbody>
  981. </table>
  982. <span class="small pull-right mobile-hide">
  983. <span class="divider">|</span>
  984. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WindowWidth.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WindowWidth%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  985. </span>
  986. <span class="small pull-right mobile-hide">
  987. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L52">View Source</a>
  988. </span>
  989. <a id="Terminal_Gui_FakeConsole_WindowWidth_" data-uid="Terminal.Gui.FakeConsole.WindowWidth*"></a>
  990. <h4 id="Terminal_Gui_FakeConsole_WindowWidth" data-uid="Terminal.Gui.FakeConsole.WindowWidth">WindowWidth</h4>
  991. <div class="markdown level1 summary"></div>
  992. <div class="markdown level1 conceptual"></div>
  993. <h5 class="declaration">Declaration</h5>
  994. <div class="codewrapper">
  995. <pre><code class="lang-csharp hljs">public static int WindowWidth { get; set; }</code></pre>
  996. </div>
  997. <h5 class="propertyValue">Property Value</h5>
  998. <table class="table table-bordered table-condensed">
  999. <thead>
  1000. <tr>
  1001. <th>Type</th>
  1002. <th>Description</th>
  1003. </tr>
  1004. </thead>
  1005. <tbody>
  1006. <tr>
  1007. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1008. <td></td>
  1009. </tr>
  1010. </tbody>
  1011. </table>
  1012. <h3 id="methods">Methods
  1013. </h3>
  1014. <span class="small pull-right mobile-hide">
  1015. <span class="divider">|</span>
  1016. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Beep.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Beep%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1017. </span>
  1018. <span class="small pull-right mobile-hide">
  1019. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L505">View Source</a>
  1020. </span>
  1021. <a id="Terminal_Gui_FakeConsole_Beep_" data-uid="Terminal.Gui.FakeConsole.Beep*"></a>
  1022. <h4 id="Terminal_Gui_FakeConsole_Beep" data-uid="Terminal.Gui.FakeConsole.Beep">Beep()</h4>
  1023. <div class="markdown level1 summary"></div>
  1024. <div class="markdown level1 conceptual"></div>
  1025. <h5 class="declaration">Declaration</h5>
  1026. <div class="codewrapper">
  1027. <pre><code class="lang-csharp hljs">public static void Beep()</code></pre>
  1028. </div>
  1029. <span class="small pull-right mobile-hide">
  1030. <span class="divider">|</span>
  1031. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Beep_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Beep(System.Int32%2CSystem.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1032. </span>
  1033. <span class="small pull-right mobile-hide">
  1034. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L532">View Source</a>
  1035. </span>
  1036. <a id="Terminal_Gui_FakeConsole_Beep_" data-uid="Terminal.Gui.FakeConsole.Beep*"></a>
  1037. <h4 id="Terminal_Gui_FakeConsole_Beep_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.Beep(System.Int32,System.Int32)">Beep(int, int)</h4>
  1038. <div class="markdown level1 summary"></div>
  1039. <div class="markdown level1 conceptual"></div>
  1040. <h5 class="declaration">Declaration</h5>
  1041. <div class="codewrapper">
  1042. <pre><code class="lang-csharp hljs">public static void Beep(int frequency, int duration)</code></pre>
  1043. </div>
  1044. <h5 class="parameters">Parameters</h5>
  1045. <table class="table table-bordered table-condensed">
  1046. <thead>
  1047. <tr>
  1048. <th>Type</th>
  1049. <th>Name</th>
  1050. <th>Description</th>
  1051. </tr>
  1052. </thead>
  1053. <tbody>
  1054. <tr>
  1055. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1056. <td><span class="parametername">frequency</span></td>
  1057. <td></td>
  1058. </tr>
  1059. <tr>
  1060. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1061. <td><span class="parametername">duration</span></td>
  1062. <td></td>
  1063. </tr>
  1064. </tbody>
  1065. </table>
  1066. <span class="small pull-right mobile-hide">
  1067. <span class="divider">|</span>
  1068. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Clear.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Clear%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1069. </span>
  1070. <span class="small pull-right mobile-hide">
  1071. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L549">View Source</a>
  1072. </span>
  1073. <a id="Terminal_Gui_FakeConsole_Clear_" data-uid="Terminal.Gui.FakeConsole.Clear*"></a>
  1074. <h4 id="Terminal_Gui_FakeConsole_Clear" data-uid="Terminal.Gui.FakeConsole.Clear">Clear()</h4>
  1075. <div class="markdown level1 summary"></div>
  1076. <div class="markdown level1 conceptual"></div>
  1077. <h5 class="declaration">Declaration</h5>
  1078. <div class="codewrapper">
  1079. <pre><code class="lang-csharp hljs">public static void Clear()</code></pre>
  1080. </div>
  1081. <span class="small pull-right mobile-hide">
  1082. <span class="divider">|</span>
  1083. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_MoveBufferArea_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1084. </span>
  1085. <span class="small pull-right mobile-hide">
  1086. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L595">View Source</a>
  1087. </span>
  1088. <a id="Terminal_Gui_FakeConsole_MoveBufferArea_" data-uid="Terminal.Gui.FakeConsole.MoveBufferArea*"></a>
  1089. <h4 id="Terminal_Gui_FakeConsole_MoveBufferArea_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">MoveBufferArea(int, int, int, int, int, int)</h4>
  1090. <div class="markdown level1 summary"></div>
  1091. <div class="markdown level1 conceptual"></div>
  1092. <h5 class="declaration">Declaration</h5>
  1093. <div class="codewrapper">
  1094. <pre><code class="lang-csharp hljs">public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop)</code></pre>
  1095. </div>
  1096. <h5 class="parameters">Parameters</h5>
  1097. <table class="table table-bordered table-condensed">
  1098. <thead>
  1099. <tr>
  1100. <th>Type</th>
  1101. <th>Name</th>
  1102. <th>Description</th>
  1103. </tr>
  1104. </thead>
  1105. <tbody>
  1106. <tr>
  1107. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1108. <td><span class="parametername">sourceLeft</span></td>
  1109. <td></td>
  1110. </tr>
  1111. <tr>
  1112. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1113. <td><span class="parametername">sourceTop</span></td>
  1114. <td></td>
  1115. </tr>
  1116. <tr>
  1117. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1118. <td><span class="parametername">sourceWidth</span></td>
  1119. <td></td>
  1120. </tr>
  1121. <tr>
  1122. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1123. <td><span class="parametername">sourceHeight</span></td>
  1124. <td></td>
  1125. </tr>
  1126. <tr>
  1127. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1128. <td><span class="parametername">targetLeft</span></td>
  1129. <td></td>
  1130. </tr>
  1131. <tr>
  1132. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1133. <td><span class="parametername">targetTop</span></td>
  1134. <td></td>
  1135. </tr>
  1136. </tbody>
  1137. </table>
  1138. <span class="small pull-right mobile-hide">
  1139. <span class="divider">|</span>
  1140. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_MoveBufferArea_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Char_System_ConsoleColor_System_ConsoleColor_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32%2CSystem.Int32%2CSystem.Char%2CSystem.ConsoleColor%2CSystem.ConsoleColor)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1141. </span>
  1142. <span class="small pull-right mobile-hide">
  1143. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L654">View Source</a>
  1144. </span>
  1145. <a id="Terminal_Gui_FakeConsole_MoveBufferArea_" data-uid="Terminal.Gui.FakeConsole.MoveBufferArea*"></a>
  1146. <h4 id="Terminal_Gui_FakeConsole_MoveBufferArea_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Int32_System_Char_System_ConsoleColor_System_ConsoleColor_" data-uid="Terminal.Gui.FakeConsole.MoveBufferArea(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Char,System.ConsoleColor,System.ConsoleColor)">MoveBufferArea(int, int, int, int, int, int, char, ConsoleColor, ConsoleColor)</h4>
  1147. <div class="markdown level1 summary"></div>
  1148. <div class="markdown level1 conceptual"></div>
  1149. <h5 class="declaration">Declaration</h5>
  1150. <div class="codewrapper">
  1151. <pre><code class="lang-csharp hljs">public static void MoveBufferArea(int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop, char sourceChar, ConsoleColor sourceForeColor, ConsoleColor sourceBackColor)</code></pre>
  1152. </div>
  1153. <h5 class="parameters">Parameters</h5>
  1154. <table class="table table-bordered table-condensed">
  1155. <thead>
  1156. <tr>
  1157. <th>Type</th>
  1158. <th>Name</th>
  1159. <th>Description</th>
  1160. </tr>
  1161. </thead>
  1162. <tbody>
  1163. <tr>
  1164. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1165. <td><span class="parametername">sourceLeft</span></td>
  1166. <td></td>
  1167. </tr>
  1168. <tr>
  1169. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1170. <td><span class="parametername">sourceTop</span></td>
  1171. <td></td>
  1172. </tr>
  1173. <tr>
  1174. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1175. <td><span class="parametername">sourceWidth</span></td>
  1176. <td></td>
  1177. </tr>
  1178. <tr>
  1179. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1180. <td><span class="parametername">sourceHeight</span></td>
  1181. <td></td>
  1182. </tr>
  1183. <tr>
  1184. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1185. <td><span class="parametername">targetLeft</span></td>
  1186. <td></td>
  1187. </tr>
  1188. <tr>
  1189. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1190. <td><span class="parametername">targetTop</span></td>
  1191. <td></td>
  1192. </tr>
  1193. <tr>
  1194. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.char">char</a></td>
  1195. <td><span class="parametername">sourceChar</span></td>
  1196. <td></td>
  1197. </tr>
  1198. <tr>
  1199. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.consolecolor">ConsoleColor</a></td>
  1200. <td><span class="parametername">sourceForeColor</span></td>
  1201. <td></td>
  1202. </tr>
  1203. <tr>
  1204. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.consolecolor">ConsoleColor</a></td>
  1205. <td><span class="parametername">sourceBackColor</span></td>
  1206. <td></td>
  1207. </tr>
  1208. </tbody>
  1209. </table>
  1210. <span class="small pull-right mobile-hide">
  1211. <span class="divider">|</span>
  1212. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_OpenStandardError.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.OpenStandardError%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1213. </span>
  1214. <span class="small pull-right mobile-hide">
  1215. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L668">View Source</a>
  1216. </span>
  1217. <a id="Terminal_Gui_FakeConsole_OpenStandardError_" data-uid="Terminal.Gui.FakeConsole.OpenStandardError*"></a>
  1218. <h4 id="Terminal_Gui_FakeConsole_OpenStandardError" data-uid="Terminal.Gui.FakeConsole.OpenStandardError">OpenStandardError()</h4>
  1219. <div class="markdown level1 summary"></div>
  1220. <div class="markdown level1 conceptual"></div>
  1221. <h5 class="declaration">Declaration</h5>
  1222. <div class="codewrapper">
  1223. <pre><code class="lang-csharp hljs">public static Stream OpenStandardError()</code></pre>
  1224. </div>
  1225. <h5 class="returns">Returns</h5>
  1226. <table class="table table-bordered table-condensed">
  1227. <thead>
  1228. <tr>
  1229. <th>Type</th>
  1230. <th>Description</th>
  1231. </tr>
  1232. </thead>
  1233. <tbody>
  1234. <tr>
  1235. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.stream">Stream</a></td>
  1236. <td></td>
  1237. </tr>
  1238. </tbody>
  1239. </table>
  1240. <span class="small pull-right mobile-hide">
  1241. <span class="divider">|</span>
  1242. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_OpenStandardError_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.OpenStandardError(System.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1243. </span>
  1244. <span class="small pull-right mobile-hide">
  1245. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L690">View Source</a>
  1246. </span>
  1247. <a id="Terminal_Gui_FakeConsole_OpenStandardError_" data-uid="Terminal.Gui.FakeConsole.OpenStandardError*"></a>
  1248. <h4 id="Terminal_Gui_FakeConsole_OpenStandardError_System_Int32_" data-uid="Terminal.Gui.FakeConsole.OpenStandardError(System.Int32)">OpenStandardError(int)</h4>
  1249. <div class="markdown level1 summary"></div>
  1250. <div class="markdown level1 conceptual"></div>
  1251. <h5 class="declaration">Declaration</h5>
  1252. <div class="codewrapper">
  1253. <pre><code class="lang-csharp hljs">public static Stream OpenStandardError(int bufferSize)</code></pre>
  1254. </div>
  1255. <h5 class="parameters">Parameters</h5>
  1256. <table class="table table-bordered table-condensed">
  1257. <thead>
  1258. <tr>
  1259. <th>Type</th>
  1260. <th>Name</th>
  1261. <th>Description</th>
  1262. </tr>
  1263. </thead>
  1264. <tbody>
  1265. <tr>
  1266. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1267. <td><span class="parametername">bufferSize</span></td>
  1268. <td></td>
  1269. </tr>
  1270. </tbody>
  1271. </table>
  1272. <h5 class="returns">Returns</h5>
  1273. <table class="table table-bordered table-condensed">
  1274. <thead>
  1275. <tr>
  1276. <th>Type</th>
  1277. <th>Description</th>
  1278. </tr>
  1279. </thead>
  1280. <tbody>
  1281. <tr>
  1282. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.stream">Stream</a></td>
  1283. <td></td>
  1284. </tr>
  1285. </tbody>
  1286. </table>
  1287. <span class="small pull-right mobile-hide">
  1288. <span class="divider">|</span>
  1289. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_OpenStandardInput.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.OpenStandardInput%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1290. </span>
  1291. <span class="small pull-right mobile-hide">
  1292. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L726">View Source</a>
  1293. </span>
  1294. <a id="Terminal_Gui_FakeConsole_OpenStandardInput_" data-uid="Terminal.Gui.FakeConsole.OpenStandardInput*"></a>
  1295. <h4 id="Terminal_Gui_FakeConsole_OpenStandardInput" data-uid="Terminal.Gui.FakeConsole.OpenStandardInput">OpenStandardInput()</h4>
  1296. <div class="markdown level1 summary"></div>
  1297. <div class="markdown level1 conceptual"></div>
  1298. <h5 class="declaration">Declaration</h5>
  1299. <div class="codewrapper">
  1300. <pre><code class="lang-csharp hljs">public static Stream OpenStandardInput()</code></pre>
  1301. </div>
  1302. <h5 class="returns">Returns</h5>
  1303. <table class="table table-bordered table-condensed">
  1304. <thead>
  1305. <tr>
  1306. <th>Type</th>
  1307. <th>Description</th>
  1308. </tr>
  1309. </thead>
  1310. <tbody>
  1311. <tr>
  1312. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.stream">Stream</a></td>
  1313. <td></td>
  1314. </tr>
  1315. </tbody>
  1316. </table>
  1317. <span class="small pull-right mobile-hide">
  1318. <span class="divider">|</span>
  1319. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_OpenStandardInput_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.OpenStandardInput(System.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1320. </span>
  1321. <span class="small pull-right mobile-hide">
  1322. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L712">View Source</a>
  1323. </span>
  1324. <a id="Terminal_Gui_FakeConsole_OpenStandardInput_" data-uid="Terminal.Gui.FakeConsole.OpenStandardInput*"></a>
  1325. <h4 id="Terminal_Gui_FakeConsole_OpenStandardInput_System_Int32_" data-uid="Terminal.Gui.FakeConsole.OpenStandardInput(System.Int32)">OpenStandardInput(int)</h4>
  1326. <div class="markdown level1 summary"></div>
  1327. <div class="markdown level1 conceptual"></div>
  1328. <h5 class="declaration">Declaration</h5>
  1329. <div class="codewrapper">
  1330. <pre><code class="lang-csharp hljs">public static Stream OpenStandardInput(int bufferSize)</code></pre>
  1331. </div>
  1332. <h5 class="parameters">Parameters</h5>
  1333. <table class="table table-bordered table-condensed">
  1334. <thead>
  1335. <tr>
  1336. <th>Type</th>
  1337. <th>Name</th>
  1338. <th>Description</th>
  1339. </tr>
  1340. </thead>
  1341. <tbody>
  1342. <tr>
  1343. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1344. <td><span class="parametername">bufferSize</span></td>
  1345. <td></td>
  1346. </tr>
  1347. </tbody>
  1348. </table>
  1349. <h5 class="returns">Returns</h5>
  1350. <table class="table table-bordered table-condensed">
  1351. <thead>
  1352. <tr>
  1353. <th>Type</th>
  1354. <th>Description</th>
  1355. </tr>
  1356. </thead>
  1357. <tbody>
  1358. <tr>
  1359. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.stream">Stream</a></td>
  1360. <td></td>
  1361. </tr>
  1362. </tbody>
  1363. </table>
  1364. <span class="small pull-right mobile-hide">
  1365. <span class="divider">|</span>
  1366. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_OpenStandardOutput.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.OpenStandardOutput%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1367. </span>
  1368. <span class="small pull-right mobile-hide">
  1369. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L762">View Source</a>
  1370. </span>
  1371. <a id="Terminal_Gui_FakeConsole_OpenStandardOutput_" data-uid="Terminal.Gui.FakeConsole.OpenStandardOutput*"></a>
  1372. <h4 id="Terminal_Gui_FakeConsole_OpenStandardOutput" data-uid="Terminal.Gui.FakeConsole.OpenStandardOutput">OpenStandardOutput()</h4>
  1373. <div class="markdown level1 summary"></div>
  1374. <div class="markdown level1 conceptual"></div>
  1375. <h5 class="declaration">Declaration</h5>
  1376. <div class="codewrapper">
  1377. <pre><code class="lang-csharp hljs">public static Stream OpenStandardOutput()</code></pre>
  1378. </div>
  1379. <h5 class="returns">Returns</h5>
  1380. <table class="table table-bordered table-condensed">
  1381. <thead>
  1382. <tr>
  1383. <th>Type</th>
  1384. <th>Description</th>
  1385. </tr>
  1386. </thead>
  1387. <tbody>
  1388. <tr>
  1389. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.stream">Stream</a></td>
  1390. <td></td>
  1391. </tr>
  1392. </tbody>
  1393. </table>
  1394. <span class="small pull-right mobile-hide">
  1395. <span class="divider">|</span>
  1396. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_OpenStandardOutput_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.OpenStandardOutput(System.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1397. </span>
  1398. <span class="small pull-right mobile-hide">
  1399. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L748">View Source</a>
  1400. </span>
  1401. <a id="Terminal_Gui_FakeConsole_OpenStandardOutput_" data-uid="Terminal.Gui.FakeConsole.OpenStandardOutput*"></a>
  1402. <h4 id="Terminal_Gui_FakeConsole_OpenStandardOutput_System_Int32_" data-uid="Terminal.Gui.FakeConsole.OpenStandardOutput(System.Int32)">OpenStandardOutput(int)</h4>
  1403. <div class="markdown level1 summary"></div>
  1404. <div class="markdown level1 conceptual"></div>
  1405. <h5 class="declaration">Declaration</h5>
  1406. <div class="codewrapper">
  1407. <pre><code class="lang-csharp hljs">public static Stream OpenStandardOutput(int bufferSize)</code></pre>
  1408. </div>
  1409. <h5 class="parameters">Parameters</h5>
  1410. <table class="table table-bordered table-condensed">
  1411. <thead>
  1412. <tr>
  1413. <th>Type</th>
  1414. <th>Name</th>
  1415. <th>Description</th>
  1416. </tr>
  1417. </thead>
  1418. <tbody>
  1419. <tr>
  1420. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1421. <td><span class="parametername">bufferSize</span></td>
  1422. <td></td>
  1423. </tr>
  1424. </tbody>
  1425. </table>
  1426. <h5 class="returns">Returns</h5>
  1427. <table class="table table-bordered table-condensed">
  1428. <thead>
  1429. <tr>
  1430. <th>Type</th>
  1431. <th>Description</th>
  1432. </tr>
  1433. </thead>
  1434. <tbody>
  1435. <tr>
  1436. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.stream">Stream</a></td>
  1437. <td></td>
  1438. </tr>
  1439. </tbody>
  1440. </table>
  1441. <span class="small pull-right mobile-hide">
  1442. <span class="divider">|</span>
  1443. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Read.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Read%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1444. </span>
  1445. <span class="small pull-right mobile-hide">
  1446. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L781">View Source</a>
  1447. </span>
  1448. <a id="Terminal_Gui_FakeConsole_Read_" data-uid="Terminal.Gui.FakeConsole.Read*"></a>
  1449. <h4 id="Terminal_Gui_FakeConsole_Read" data-uid="Terminal.Gui.FakeConsole.Read">Read()</h4>
  1450. <div class="markdown level1 summary"></div>
  1451. <div class="markdown level1 conceptual"></div>
  1452. <h5 class="declaration">Declaration</h5>
  1453. <div class="codewrapper">
  1454. <pre><code class="lang-csharp hljs">public static int Read()</code></pre>
  1455. </div>
  1456. <h5 class="returns">Returns</h5>
  1457. <table class="table table-bordered table-condensed">
  1458. <thead>
  1459. <tr>
  1460. <th>Type</th>
  1461. <th>Description</th>
  1462. </tr>
  1463. </thead>
  1464. <tbody>
  1465. <tr>
  1466. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1467. <td></td>
  1468. </tr>
  1469. </tbody>
  1470. </table>
  1471. <span class="small pull-right mobile-hide">
  1472. <span class="divider">|</span>
  1473. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_ReadKey.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.ReadKey%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1474. </span>
  1475. <span class="small pull-right mobile-hide">
  1476. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L844">View Source</a>
  1477. </span>
  1478. <a id="Terminal_Gui_FakeConsole_ReadKey_" data-uid="Terminal.Gui.FakeConsole.ReadKey*"></a>
  1479. <h4 id="Terminal_Gui_FakeConsole_ReadKey" data-uid="Terminal.Gui.FakeConsole.ReadKey">ReadKey()</h4>
  1480. <div class="markdown level1 summary"></div>
  1481. <div class="markdown level1 conceptual"></div>
  1482. <h5 class="declaration">Declaration</h5>
  1483. <div class="codewrapper">
  1484. <pre><code class="lang-csharp hljs">public static ConsoleKeyInfo ReadKey()</code></pre>
  1485. </div>
  1486. <h5 class="returns">Returns</h5>
  1487. <table class="table table-bordered table-condensed">
  1488. <thead>
  1489. <tr>
  1490. <th>Type</th>
  1491. <th>Description</th>
  1492. </tr>
  1493. </thead>
  1494. <tbody>
  1495. <tr>
  1496. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.consolekeyinfo">ConsoleKeyInfo</a></td>
  1497. <td></td>
  1498. </tr>
  1499. </tbody>
  1500. </table>
  1501. <span class="small pull-right mobile-hide">
  1502. <span class="divider">|</span>
  1503. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_ReadKey_System_Boolean_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.ReadKey(System.Boolean)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1504. </span>
  1505. <span class="small pull-right mobile-hide">
  1506. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L811">View Source</a>
  1507. </span>
  1508. <a id="Terminal_Gui_FakeConsole_ReadKey_" data-uid="Terminal.Gui.FakeConsole.ReadKey*"></a>
  1509. <h4 id="Terminal_Gui_FakeConsole_ReadKey_System_Boolean_" data-uid="Terminal.Gui.FakeConsole.ReadKey(System.Boolean)">ReadKey(bool)</h4>
  1510. <div class="markdown level1 summary"></div>
  1511. <div class="markdown level1 conceptual"></div>
  1512. <h5 class="declaration">Declaration</h5>
  1513. <div class="codewrapper">
  1514. <pre><code class="lang-csharp hljs">public static ConsoleKeyInfo ReadKey(bool intercept)</code></pre>
  1515. </div>
  1516. <h5 class="parameters">Parameters</h5>
  1517. <table class="table table-bordered table-condensed">
  1518. <thead>
  1519. <tr>
  1520. <th>Type</th>
  1521. <th>Name</th>
  1522. <th>Description</th>
  1523. </tr>
  1524. </thead>
  1525. <tbody>
  1526. <tr>
  1527. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
  1528. <td><span class="parametername">intercept</span></td>
  1529. <td></td>
  1530. </tr>
  1531. </tbody>
  1532. </table>
  1533. <h5 class="returns">Returns</h5>
  1534. <table class="table table-bordered table-condensed">
  1535. <thead>
  1536. <tr>
  1537. <th>Type</th>
  1538. <th>Description</th>
  1539. </tr>
  1540. </thead>
  1541. <tbody>
  1542. <tr>
  1543. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.consolekeyinfo">ConsoleKeyInfo</a></td>
  1544. <td></td>
  1545. </tr>
  1546. </tbody>
  1547. </table>
  1548. <span class="small pull-right mobile-hide">
  1549. <span class="divider">|</span>
  1550. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_ReadLine.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.ReadLine%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1551. </span>
  1552. <span class="small pull-right mobile-hide">
  1553. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L869">View Source</a>
  1554. </span>
  1555. <a id="Terminal_Gui_FakeConsole_ReadLine_" data-uid="Terminal.Gui.FakeConsole.ReadLine*"></a>
  1556. <h4 id="Terminal_Gui_FakeConsole_ReadLine" data-uid="Terminal.Gui.FakeConsole.ReadLine">ReadLine()</h4>
  1557. <div class="markdown level1 summary"></div>
  1558. <div class="markdown level1 conceptual"></div>
  1559. <h5 class="declaration">Declaration</h5>
  1560. <div class="codewrapper">
  1561. <pre><code class="lang-csharp hljs">public static string ReadLine()</code></pre>
  1562. </div>
  1563. <h5 class="returns">Returns</h5>
  1564. <table class="table table-bordered table-condensed">
  1565. <thead>
  1566. <tr>
  1567. <th>Type</th>
  1568. <th>Description</th>
  1569. </tr>
  1570. </thead>
  1571. <tbody>
  1572. <tr>
  1573. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  1574. <td></td>
  1575. </tr>
  1576. </tbody>
  1577. </table>
  1578. <span class="small pull-right mobile-hide">
  1579. <span class="divider">|</span>
  1580. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_ResetColor.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.ResetColor%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1581. </span>
  1582. <span class="small pull-right mobile-hide">
  1583. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L888">View Source</a>
  1584. </span>
  1585. <a id="Terminal_Gui_FakeConsole_ResetColor_" data-uid="Terminal.Gui.FakeConsole.ResetColor*"></a>
  1586. <h4 id="Terminal_Gui_FakeConsole_ResetColor" data-uid="Terminal.Gui.FakeConsole.ResetColor">ResetColor()</h4>
  1587. <div class="markdown level1 summary"></div>
  1588. <div class="markdown level1 conceptual"></div>
  1589. <h5 class="declaration">Declaration</h5>
  1590. <div class="codewrapper">
  1591. <pre><code class="lang-csharp hljs">public static void ResetColor()</code></pre>
  1592. </div>
  1593. <span class="small pull-right mobile-hide">
  1594. <span class="divider">|</span>
  1595. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_SetBufferSize_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.SetBufferSize(System.Int32%2CSystem.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1596. </span>
  1597. <span class="small pull-right mobile-hide">
  1598. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L921">View Source</a>
  1599. </span>
  1600. <a id="Terminal_Gui_FakeConsole_SetBufferSize_" data-uid="Terminal.Gui.FakeConsole.SetBufferSize*"></a>
  1601. <h4 id="Terminal_Gui_FakeConsole_SetBufferSize_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.SetBufferSize(System.Int32,System.Int32)">SetBufferSize(int, int)</h4>
  1602. <div class="markdown level1 summary"></div>
  1603. <div class="markdown level1 conceptual"></div>
  1604. <h5 class="declaration">Declaration</h5>
  1605. <div class="codewrapper">
  1606. <pre><code class="lang-csharp hljs">public static void SetBufferSize(int width, int height)</code></pre>
  1607. </div>
  1608. <h5 class="parameters">Parameters</h5>
  1609. <table class="table table-bordered table-condensed">
  1610. <thead>
  1611. <tr>
  1612. <th>Type</th>
  1613. <th>Name</th>
  1614. <th>Description</th>
  1615. </tr>
  1616. </thead>
  1617. <tbody>
  1618. <tr>
  1619. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1620. <td><span class="parametername">width</span></td>
  1621. <td></td>
  1622. </tr>
  1623. <tr>
  1624. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1625. <td><span class="parametername">height</span></td>
  1626. <td></td>
  1627. </tr>
  1628. </tbody>
  1629. </table>
  1630. <span class="small pull-right mobile-hide">
  1631. <span class="divider">|</span>
  1632. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_SetCursorPosition_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.SetCursorPosition(System.Int32%2CSystem.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1633. </span>
  1634. <span class="small pull-right mobile-hide">
  1635. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L955">View Source</a>
  1636. </span>
  1637. <a id="Terminal_Gui_FakeConsole_SetCursorPosition_" data-uid="Terminal.Gui.FakeConsole.SetCursorPosition*"></a>
  1638. <h4 id="Terminal_Gui_FakeConsole_SetCursorPosition_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.SetCursorPosition(System.Int32,System.Int32)">SetCursorPosition(int, int)</h4>
  1639. <div class="markdown level1 summary"></div>
  1640. <div class="markdown level1 conceptual"></div>
  1641. <h5 class="declaration">Declaration</h5>
  1642. <div class="codewrapper">
  1643. <pre><code class="lang-csharp hljs">public static void SetCursorPosition(int left, int top)</code></pre>
  1644. </div>
  1645. <h5 class="parameters">Parameters</h5>
  1646. <table class="table table-bordered table-condensed">
  1647. <thead>
  1648. <tr>
  1649. <th>Type</th>
  1650. <th>Name</th>
  1651. <th>Description</th>
  1652. </tr>
  1653. </thead>
  1654. <tbody>
  1655. <tr>
  1656. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1657. <td><span class="parametername">left</span></td>
  1658. <td></td>
  1659. </tr>
  1660. <tr>
  1661. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1662. <td><span class="parametername">top</span></td>
  1663. <td></td>
  1664. </tr>
  1665. </tbody>
  1666. </table>
  1667. <span class="small pull-right mobile-hide">
  1668. <span class="divider">|</span>
  1669. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_SetError_System_IO_TextWriter_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.SetError(System.IO.TextWriter)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1670. </span>
  1671. <span class="small pull-right mobile-hide">
  1672. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L982">View Source</a>
  1673. </span>
  1674. <a id="Terminal_Gui_FakeConsole_SetError_" data-uid="Terminal.Gui.FakeConsole.SetError*"></a>
  1675. <h4 id="Terminal_Gui_FakeConsole_SetError_System_IO_TextWriter_" data-uid="Terminal.Gui.FakeConsole.SetError(System.IO.TextWriter)">SetError(TextWriter)</h4>
  1676. <div class="markdown level1 summary"></div>
  1677. <div class="markdown level1 conceptual"></div>
  1678. <h5 class="declaration">Declaration</h5>
  1679. <div class="codewrapper">
  1680. <pre><code class="lang-csharp hljs">public static void SetError(TextWriter newError)</code></pre>
  1681. </div>
  1682. <h5 class="parameters">Parameters</h5>
  1683. <table class="table table-bordered table-condensed">
  1684. <thead>
  1685. <tr>
  1686. <th>Type</th>
  1687. <th>Name</th>
  1688. <th>Description</th>
  1689. </tr>
  1690. </thead>
  1691. <tbody>
  1692. <tr>
  1693. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.textwriter">TextWriter</a></td>
  1694. <td><span class="parametername">newError</span></td>
  1695. <td></td>
  1696. </tr>
  1697. </tbody>
  1698. </table>
  1699. <span class="small pull-right mobile-hide">
  1700. <span class="divider">|</span>
  1701. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_SetIn_System_IO_TextReader_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.SetIn(System.IO.TextReader)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1702. </span>
  1703. <span class="small pull-right mobile-hide">
  1704. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1005">View Source</a>
  1705. </span>
  1706. <a id="Terminal_Gui_FakeConsole_SetIn_" data-uid="Terminal.Gui.FakeConsole.SetIn*"></a>
  1707. <h4 id="Terminal_Gui_FakeConsole_SetIn_System_IO_TextReader_" data-uid="Terminal.Gui.FakeConsole.SetIn(System.IO.TextReader)">SetIn(TextReader)</h4>
  1708. <div class="markdown level1 summary"></div>
  1709. <div class="markdown level1 conceptual"></div>
  1710. <h5 class="declaration">Declaration</h5>
  1711. <div class="codewrapper">
  1712. <pre><code class="lang-csharp hljs">public static void SetIn(TextReader newIn)</code></pre>
  1713. </div>
  1714. <h5 class="parameters">Parameters</h5>
  1715. <table class="table table-bordered table-condensed">
  1716. <thead>
  1717. <tr>
  1718. <th>Type</th>
  1719. <th>Name</th>
  1720. <th>Description</th>
  1721. </tr>
  1722. </thead>
  1723. <tbody>
  1724. <tr>
  1725. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.textreader">TextReader</a></td>
  1726. <td><span class="parametername">newIn</span></td>
  1727. <td></td>
  1728. </tr>
  1729. </tbody>
  1730. </table>
  1731. <span class="small pull-right mobile-hide">
  1732. <span class="divider">|</span>
  1733. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_SetOut_System_IO_TextWriter_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.SetOut(System.IO.TextWriter)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1734. </span>
  1735. <span class="small pull-right mobile-hide">
  1736. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1029">View Source</a>
  1737. </span>
  1738. <a id="Terminal_Gui_FakeConsole_SetOut_" data-uid="Terminal.Gui.FakeConsole.SetOut*"></a>
  1739. <h4 id="Terminal_Gui_FakeConsole_SetOut_System_IO_TextWriter_" data-uid="Terminal.Gui.FakeConsole.SetOut(System.IO.TextWriter)">SetOut(TextWriter)</h4>
  1740. <div class="markdown level1 summary"></div>
  1741. <div class="markdown level1 conceptual"></div>
  1742. <h5 class="declaration">Declaration</h5>
  1743. <div class="codewrapper">
  1744. <pre><code class="lang-csharp hljs">public static void SetOut(TextWriter newOut)</code></pre>
  1745. </div>
  1746. <h5 class="parameters">Parameters</h5>
  1747. <table class="table table-bordered table-condensed">
  1748. <thead>
  1749. <tr>
  1750. <th>Type</th>
  1751. <th>Name</th>
  1752. <th>Description</th>
  1753. </tr>
  1754. </thead>
  1755. <tbody>
  1756. <tr>
  1757. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.io.textwriter">TextWriter</a></td>
  1758. <td><span class="parametername">newOut</span></td>
  1759. <td></td>
  1760. </tr>
  1761. </tbody>
  1762. </table>
  1763. <span class="small pull-right mobile-hide">
  1764. <span class="divider">|</span>
  1765. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_SetWindowPosition_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.SetWindowPosition(System.Int32%2CSystem.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1766. </span>
  1767. <span class="small pull-right mobile-hide">
  1768. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1062">View Source</a>
  1769. </span>
  1770. <a id="Terminal_Gui_FakeConsole_SetWindowPosition_" data-uid="Terminal.Gui.FakeConsole.SetWindowPosition*"></a>
  1771. <h4 id="Terminal_Gui_FakeConsole_SetWindowPosition_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.SetWindowPosition(System.Int32,System.Int32)">SetWindowPosition(int, int)</h4>
  1772. <div class="markdown level1 summary"></div>
  1773. <div class="markdown level1 conceptual"></div>
  1774. <h5 class="declaration">Declaration</h5>
  1775. <div class="codewrapper">
  1776. <pre><code class="lang-csharp hljs">public static void SetWindowPosition(int left, int top)</code></pre>
  1777. </div>
  1778. <h5 class="parameters">Parameters</h5>
  1779. <table class="table table-bordered table-condensed">
  1780. <thead>
  1781. <tr>
  1782. <th>Type</th>
  1783. <th>Name</th>
  1784. <th>Description</th>
  1785. </tr>
  1786. </thead>
  1787. <tbody>
  1788. <tr>
  1789. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1790. <td><span class="parametername">left</span></td>
  1791. <td></td>
  1792. </tr>
  1793. <tr>
  1794. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1795. <td><span class="parametername">top</span></td>
  1796. <td></td>
  1797. </tr>
  1798. </tbody>
  1799. </table>
  1800. <span class="small pull-right mobile-hide">
  1801. <span class="divider">|</span>
  1802. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_SetWindowSize_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.SetWindowSize(System.Int32%2CSystem.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1803. </span>
  1804. <span class="small pull-right mobile-hide">
  1805. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1097">View Source</a>
  1806. </span>
  1807. <a id="Terminal_Gui_FakeConsole_SetWindowSize_" data-uid="Terminal.Gui.FakeConsole.SetWindowSize*"></a>
  1808. <h4 id="Terminal_Gui_FakeConsole_SetWindowSize_System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.SetWindowSize(System.Int32,System.Int32)">SetWindowSize(int, int)</h4>
  1809. <div class="markdown level1 summary"></div>
  1810. <div class="markdown level1 conceptual"></div>
  1811. <h5 class="declaration">Declaration</h5>
  1812. <div class="codewrapper">
  1813. <pre><code class="lang-csharp hljs">public static void SetWindowSize(int width, int height)</code></pre>
  1814. </div>
  1815. <h5 class="parameters">Parameters</h5>
  1816. <table class="table table-bordered table-condensed">
  1817. <thead>
  1818. <tr>
  1819. <th>Type</th>
  1820. <th>Name</th>
  1821. <th>Description</th>
  1822. </tr>
  1823. </thead>
  1824. <tbody>
  1825. <tr>
  1826. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1827. <td><span class="parametername">width</span></td>
  1828. <td></td>
  1829. </tr>
  1830. <tr>
  1831. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1832. <td><span class="parametername">height</span></td>
  1833. <td></td>
  1834. </tr>
  1835. </tbody>
  1836. </table>
  1837. <span class="small pull-right mobile-hide">
  1838. <span class="divider">|</span>
  1839. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_Boolean_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.Boolean)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1840. </span>
  1841. <span class="small pull-right mobile-hide">
  1842. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1357">View Source</a>
  1843. </span>
  1844. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1845. <h4 id="Terminal_Gui_FakeConsole_Write_System_Boolean_" data-uid="Terminal.Gui.FakeConsole.Write(System.Boolean)">Write(bool)</h4>
  1846. <div class="markdown level1 summary"></div>
  1847. <div class="markdown level1 conceptual"></div>
  1848. <h5 class="declaration">Declaration</h5>
  1849. <div class="codewrapper">
  1850. <pre><code class="lang-csharp hljs">public static void Write(bool value)</code></pre>
  1851. </div>
  1852. <h5 class="parameters">Parameters</h5>
  1853. <table class="table table-bordered table-condensed">
  1854. <thead>
  1855. <tr>
  1856. <th>Type</th>
  1857. <th>Name</th>
  1858. <th>Description</th>
  1859. </tr>
  1860. </thead>
  1861. <tbody>
  1862. <tr>
  1863. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
  1864. <td><span class="parametername">value</span></td>
  1865. <td></td>
  1866. </tr>
  1867. </tbody>
  1868. </table>
  1869. <span class="small pull-right mobile-hide">
  1870. <span class="divider">|</span>
  1871. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_Char_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.Char)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1872. </span>
  1873. <span class="small pull-right mobile-hide">
  1874. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1377">View Source</a>
  1875. </span>
  1876. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1877. <h4 id="Terminal_Gui_FakeConsole_Write_System_Char_" data-uid="Terminal.Gui.FakeConsole.Write(System.Char)">Write(char)</h4>
  1878. <div class="markdown level1 summary"></div>
  1879. <div class="markdown level1 conceptual"></div>
  1880. <h5 class="declaration">Declaration</h5>
  1881. <div class="codewrapper">
  1882. <pre><code class="lang-csharp hljs">public static void Write(char value)</code></pre>
  1883. </div>
  1884. <h5 class="parameters">Parameters</h5>
  1885. <table class="table table-bordered table-condensed">
  1886. <thead>
  1887. <tr>
  1888. <th>Type</th>
  1889. <th>Name</th>
  1890. <th>Description</th>
  1891. </tr>
  1892. </thead>
  1893. <tbody>
  1894. <tr>
  1895. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.char">char</a></td>
  1896. <td><span class="parametername">value</span></td>
  1897. <td></td>
  1898. </tr>
  1899. </tbody>
  1900. </table>
  1901. <span class="small pull-right mobile-hide">
  1902. <span class="divider">|</span>
  1903. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_Char___.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.Char%5B%5D)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1904. </span>
  1905. <span class="small pull-right mobile-hide">
  1906. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1397">View Source</a>
  1907. </span>
  1908. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1909. <h4 id="Terminal_Gui_FakeConsole_Write_System_Char___" data-uid="Terminal.Gui.FakeConsole.Write(System.Char[])">Write(char[])</h4>
  1910. <div class="markdown level1 summary"></div>
  1911. <div class="markdown level1 conceptual"></div>
  1912. <h5 class="declaration">Declaration</h5>
  1913. <div class="codewrapper">
  1914. <pre><code class="lang-csharp hljs">public static void Write(char[] buffer)</code></pre>
  1915. </div>
  1916. <h5 class="parameters">Parameters</h5>
  1917. <table class="table table-bordered table-condensed">
  1918. <thead>
  1919. <tr>
  1920. <th>Type</th>
  1921. <th>Name</th>
  1922. <th>Description</th>
  1923. </tr>
  1924. </thead>
  1925. <tbody>
  1926. <tr>
  1927. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.char">char</a>[]</td>
  1928. <td><span class="parametername">buffer</span></td>
  1929. <td></td>
  1930. </tr>
  1931. </tbody>
  1932. </table>
  1933. <span class="small pull-right mobile-hide">
  1934. <span class="divider">|</span>
  1935. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_Char___System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.Char%5B%5D%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1936. </span>
  1937. <span class="small pull-right mobile-hide">
  1938. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1437">View Source</a>
  1939. </span>
  1940. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1941. <h4 id="Terminal_Gui_FakeConsole_Write_System_Char___System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.Write(System.Char[],System.Int32,System.Int32)">Write(char[], int, int)</h4>
  1942. <div class="markdown level1 summary"></div>
  1943. <div class="markdown level1 conceptual"></div>
  1944. <h5 class="declaration">Declaration</h5>
  1945. <div class="codewrapper">
  1946. <pre><code class="lang-csharp hljs">public static void Write(char[] buffer, int index, int count)</code></pre>
  1947. </div>
  1948. <h5 class="parameters">Parameters</h5>
  1949. <table class="table table-bordered table-condensed">
  1950. <thead>
  1951. <tr>
  1952. <th>Type</th>
  1953. <th>Name</th>
  1954. <th>Description</th>
  1955. </tr>
  1956. </thead>
  1957. <tbody>
  1958. <tr>
  1959. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.char">char</a>[]</td>
  1960. <td><span class="parametername">buffer</span></td>
  1961. <td></td>
  1962. </tr>
  1963. <tr>
  1964. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1965. <td><span class="parametername">index</span></td>
  1966. <td></td>
  1967. </tr>
  1968. <tr>
  1969. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  1970. <td><span class="parametername">count</span></td>
  1971. <td></td>
  1972. </tr>
  1973. </tbody>
  1974. </table>
  1975. <span class="small pull-right mobile-hide">
  1976. <span class="divider">|</span>
  1977. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_Decimal_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.Decimal)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  1978. </span>
  1979. <span class="small pull-right mobile-hide">
  1980. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1497">View Source</a>
  1981. </span>
  1982. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  1983. <h4 id="Terminal_Gui_FakeConsole_Write_System_Decimal_" data-uid="Terminal.Gui.FakeConsole.Write(System.Decimal)">Write(decimal)</h4>
  1984. <div class="markdown level1 summary"></div>
  1985. <div class="markdown level1 conceptual"></div>
  1986. <h5 class="declaration">Declaration</h5>
  1987. <div class="codewrapper">
  1988. <pre><code class="lang-csharp hljs">public static void Write(decimal value)</code></pre>
  1989. </div>
  1990. <h5 class="parameters">Parameters</h5>
  1991. <table class="table table-bordered table-condensed">
  1992. <thead>
  1993. <tr>
  1994. <th>Type</th>
  1995. <th>Name</th>
  1996. <th>Description</th>
  1997. </tr>
  1998. </thead>
  1999. <tbody>
  2000. <tr>
  2001. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.decimal">decimal</a></td>
  2002. <td><span class="parametername">value</span></td>
  2003. <td></td>
  2004. </tr>
  2005. </tbody>
  2006. </table>
  2007. <span class="small pull-right mobile-hide">
  2008. <span class="divider">|</span>
  2009. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_Double_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.Double)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2010. </span>
  2011. <span class="small pull-right mobile-hide">
  2012. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1539">View Source</a>
  2013. </span>
  2014. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2015. <h4 id="Terminal_Gui_FakeConsole_Write_System_Double_" data-uid="Terminal.Gui.FakeConsole.Write(System.Double)">Write(double)</h4>
  2016. <div class="markdown level1 summary"></div>
  2017. <div class="markdown level1 conceptual"></div>
  2018. <h5 class="declaration">Declaration</h5>
  2019. <div class="codewrapper">
  2020. <pre><code class="lang-csharp hljs">public static void Write(double value)</code></pre>
  2021. </div>
  2022. <h5 class="parameters">Parameters</h5>
  2023. <table class="table table-bordered table-condensed">
  2024. <thead>
  2025. <tr>
  2026. <th>Type</th>
  2027. <th>Name</th>
  2028. <th>Description</th>
  2029. </tr>
  2030. </thead>
  2031. <tbody>
  2032. <tr>
  2033. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.double">double</a></td>
  2034. <td><span class="parametername">value</span></td>
  2035. <td></td>
  2036. </tr>
  2037. </tbody>
  2038. </table>
  2039. <span class="small pull-right mobile-hide">
  2040. <span class="divider">|</span>
  2041. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2042. </span>
  2043. <span class="small pull-right mobile-hide">
  2044. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1238">View Source</a>
  2045. </span>
  2046. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2047. <h4 id="Terminal_Gui_FakeConsole_Write_System_Int32_" data-uid="Terminal.Gui.FakeConsole.Write(System.Int32)">Write(int)</h4>
  2048. <div class="markdown level1 summary"></div>
  2049. <div class="markdown level1 conceptual"></div>
  2050. <h5 class="declaration">Declaration</h5>
  2051. <div class="codewrapper">
  2052. <pre><code class="lang-csharp hljs">public static void Write(int value)</code></pre>
  2053. </div>
  2054. <h5 class="parameters">Parameters</h5>
  2055. <table class="table table-bordered table-condensed">
  2056. <thead>
  2057. <tr>
  2058. <th>Type</th>
  2059. <th>Name</th>
  2060. <th>Description</th>
  2061. </tr>
  2062. </thead>
  2063. <tbody>
  2064. <tr>
  2065. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  2066. <td><span class="parametername">value</span></td>
  2067. <td></td>
  2068. </tr>
  2069. </tbody>
  2070. </table>
  2071. <span class="small pull-right mobile-hide">
  2072. <span class="divider">|</span>
  2073. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_Int64_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.Int64)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2074. </span>
  2075. <span class="small pull-right mobile-hide">
  2076. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1182">View Source</a>
  2077. </span>
  2078. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2079. <h4 id="Terminal_Gui_FakeConsole_Write_System_Int64_" data-uid="Terminal.Gui.FakeConsole.Write(System.Int64)">Write(long)</h4>
  2080. <div class="markdown level1 summary"></div>
  2081. <div class="markdown level1 conceptual"></div>
  2082. <h5 class="declaration">Declaration</h5>
  2083. <div class="codewrapper">
  2084. <pre><code class="lang-csharp hljs">public static void Write(long value)</code></pre>
  2085. </div>
  2086. <h5 class="parameters">Parameters</h5>
  2087. <table class="table table-bordered table-condensed">
  2088. <thead>
  2089. <tr>
  2090. <th>Type</th>
  2091. <th>Name</th>
  2092. <th>Description</th>
  2093. </tr>
  2094. </thead>
  2095. <tbody>
  2096. <tr>
  2097. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int64">long</a></td>
  2098. <td><span class="parametername">value</span></td>
  2099. <td></td>
  2100. </tr>
  2101. </tbody>
  2102. </table>
  2103. <span class="small pull-right mobile-hide">
  2104. <span class="divider">|</span>
  2105. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_Object_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.Object)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2106. </span>
  2107. <span class="small pull-right mobile-hide">
  2108. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1139">View Source</a>
  2109. </span>
  2110. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2111. <h4 id="Terminal_Gui_FakeConsole_Write_System_Object_" data-uid="Terminal.Gui.FakeConsole.Write(System.Object)">Write(object)</h4>
  2112. <div class="markdown level1 summary"></div>
  2113. <div class="markdown level1 conceptual"></div>
  2114. <h5 class="declaration">Declaration</h5>
  2115. <div class="codewrapper">
  2116. <pre><code class="lang-csharp hljs">public static void Write(object value)</code></pre>
  2117. </div>
  2118. <h5 class="parameters">Parameters</h5>
  2119. <table class="table table-bordered table-condensed">
  2120. <thead>
  2121. <tr>
  2122. <th>Type</th>
  2123. <th>Name</th>
  2124. <th>Description</th>
  2125. </tr>
  2126. </thead>
  2127. <tbody>
  2128. <tr>
  2129. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2130. <td><span class="parametername">value</span></td>
  2131. <td></td>
  2132. </tr>
  2133. </tbody>
  2134. </table>
  2135. <span class="small pull-right mobile-hide">
  2136. <span class="divider">|</span>
  2137. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_Single_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.Single)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2138. </span>
  2139. <span class="small pull-right mobile-hide">
  2140. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1518">View Source</a>
  2141. </span>
  2142. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2143. <h4 id="Terminal_Gui_FakeConsole_Write_System_Single_" data-uid="Terminal.Gui.FakeConsole.Write(System.Single)">Write(float)</h4>
  2144. <div class="markdown level1 summary"></div>
  2145. <div class="markdown level1 conceptual"></div>
  2146. <h5 class="declaration">Declaration</h5>
  2147. <div class="codewrapper">
  2148. <pre><code class="lang-csharp hljs">public static void Write(float value)</code></pre>
  2149. </div>
  2150. <h5 class="parameters">Parameters</h5>
  2151. <table class="table table-bordered table-condensed">
  2152. <thead>
  2153. <tr>
  2154. <th>Type</th>
  2155. <th>Name</th>
  2156. <th>Description</th>
  2157. </tr>
  2158. </thead>
  2159. <tbody>
  2160. <tr>
  2161. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
  2162. <td><span class="parametername">value</span></td>
  2163. <td></td>
  2164. </tr>
  2165. </tbody>
  2166. </table>
  2167. <span class="small pull-right mobile-hide">
  2168. <span class="divider">|</span>
  2169. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_String_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.String)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2170. </span>
  2171. <span class="small pull-right mobile-hide">
  2172. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1118">View Source</a>
  2173. </span>
  2174. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2175. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_" data-uid="Terminal.Gui.FakeConsole.Write(System.String)">Write(string)</h4>
  2176. <div class="markdown level1 summary"></div>
  2177. <div class="markdown level1 conceptual"></div>
  2178. <h5 class="declaration">Declaration</h5>
  2179. <div class="codewrapper">
  2180. <pre><code class="lang-csharp hljs">public static void Write(string value)</code></pre>
  2181. </div>
  2182. <h5 class="parameters">Parameters</h5>
  2183. <table class="table table-bordered table-condensed">
  2184. <thead>
  2185. <tr>
  2186. <th>Type</th>
  2187. <th>Name</th>
  2188. <th>Description</th>
  2189. </tr>
  2190. </thead>
  2191. <tbody>
  2192. <tr>
  2193. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  2194. <td><span class="parametername">value</span></td>
  2195. <td></td>
  2196. </tr>
  2197. </tbody>
  2198. </table>
  2199. <span class="small pull-right mobile-hide">
  2200. <span class="divider">|</span>
  2201. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_String_System_Object_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.String%2CSystem.Object)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2202. </span>
  2203. <span class="small pull-right mobile-hide">
  2204. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1269">View Source</a>
  2205. </span>
  2206. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2207. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_System_Object_" data-uid="Terminal.Gui.FakeConsole.Write(System.String,System.Object)">Write(string, object)</h4>
  2208. <div class="markdown level1 summary"></div>
  2209. <div class="markdown level1 conceptual"></div>
  2210. <h5 class="declaration">Declaration</h5>
  2211. <div class="codewrapper">
  2212. <pre><code class="lang-csharp hljs">public static void Write(string format, object arg0)</code></pre>
  2213. </div>
  2214. <h5 class="parameters">Parameters</h5>
  2215. <table class="table table-bordered table-condensed">
  2216. <thead>
  2217. <tr>
  2218. <th>Type</th>
  2219. <th>Name</th>
  2220. <th>Description</th>
  2221. </tr>
  2222. </thead>
  2223. <tbody>
  2224. <tr>
  2225. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  2226. <td><span class="parametername">format</span></td>
  2227. <td></td>
  2228. </tr>
  2229. <tr>
  2230. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2231. <td><span class="parametername">arg0</span></td>
  2232. <td></td>
  2233. </tr>
  2234. </tbody>
  2235. </table>
  2236. <span class="small pull-right mobile-hide">
  2237. <span class="divider">|</span>
  2238. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.String%2CSystem.Object%2CSystem.Object)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2239. </span>
  2240. <span class="small pull-right mobile-hide">
  2241. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1217">View Source</a>
  2242. </span>
  2243. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2244. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object)">Write(string, object, object)</h4>
  2245. <div class="markdown level1 summary"></div>
  2246. <div class="markdown level1 conceptual"></div>
  2247. <h5 class="declaration">Declaration</h5>
  2248. <div class="codewrapper">
  2249. <pre><code class="lang-csharp hljs">public static void Write(string format, object arg0, object arg1)</code></pre>
  2250. </div>
  2251. <h5 class="parameters">Parameters</h5>
  2252. <table class="table table-bordered table-condensed">
  2253. <thead>
  2254. <tr>
  2255. <th>Type</th>
  2256. <th>Name</th>
  2257. <th>Description</th>
  2258. </tr>
  2259. </thead>
  2260. <tbody>
  2261. <tr>
  2262. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  2263. <td><span class="parametername">format</span></td>
  2264. <td></td>
  2265. </tr>
  2266. <tr>
  2267. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2268. <td><span class="parametername">arg0</span></td>
  2269. <td></td>
  2270. </tr>
  2271. <tr>
  2272. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2273. <td><span class="parametername">arg1</span></td>
  2274. <td></td>
  2275. </tr>
  2276. </tbody>
  2277. </table>
  2278. <span class="small pull-right mobile-hide">
  2279. <span class="divider">|</span>
  2280. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_System_Object_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.String%2CSystem.Object%2CSystem.Object%2CSystem.Object)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2281. </span>
  2282. <span class="small pull-right mobile-hide">
  2283. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1476">View Source</a>
  2284. </span>
  2285. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2286. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object,System.Object)">Write(string, object, object, object)</h4>
  2287. <div class="markdown level1 summary"></div>
  2288. <div class="markdown level1 conceptual"></div>
  2289. <h5 class="declaration">Declaration</h5>
  2290. <div class="codewrapper">
  2291. <pre><code class="lang-csharp hljs">public static void Write(string format, object arg0, object arg1, object arg2)</code></pre>
  2292. </div>
  2293. <h5 class="parameters">Parameters</h5>
  2294. <table class="table table-bordered table-condensed">
  2295. <thead>
  2296. <tr>
  2297. <th>Type</th>
  2298. <th>Name</th>
  2299. <th>Description</th>
  2300. </tr>
  2301. </thead>
  2302. <tbody>
  2303. <tr>
  2304. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  2305. <td><span class="parametername">format</span></td>
  2306. <td></td>
  2307. </tr>
  2308. <tr>
  2309. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2310. <td><span class="parametername">arg0</span></td>
  2311. <td></td>
  2312. </tr>
  2313. <tr>
  2314. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2315. <td><span class="parametername">arg1</span></td>
  2316. <td></td>
  2317. </tr>
  2318. <tr>
  2319. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2320. <td><span class="parametername">arg2</span></td>
  2321. <td></td>
  2322. </tr>
  2323. </tbody>
  2324. </table>
  2325. <span class="small pull-right mobile-hide">
  2326. <span class="divider">|</span>
  2327. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_System_Object_System_Object_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.String%2CSystem.Object%2CSystem.Object%2CSystem.Object%2CSystem.Object)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2328. </span>
  2329. <span class="small pull-right mobile-hide">
  2330. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1305">View Source</a>
  2331. </span>
  2332. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2333. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_System_Object_System_Object_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.Write(System.String,System.Object,System.Object,System.Object,System.Object)">Write(string, object, object, object, object)</h4>
  2334. <div class="markdown level1 summary"></div>
  2335. <div class="markdown level1 conceptual"></div>
  2336. <h5 class="declaration">Declaration</h5>
  2337. <div class="codewrapper">
  2338. <pre><code class="lang-csharp hljs">public static void Write(string format, object arg0, object arg1, object arg2, object arg3)</code></pre>
  2339. </div>
  2340. <h5 class="parameters">Parameters</h5>
  2341. <table class="table table-bordered table-condensed">
  2342. <thead>
  2343. <tr>
  2344. <th>Type</th>
  2345. <th>Name</th>
  2346. <th>Description</th>
  2347. </tr>
  2348. </thead>
  2349. <tbody>
  2350. <tr>
  2351. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  2352. <td><span class="parametername">format</span></td>
  2353. <td></td>
  2354. </tr>
  2355. <tr>
  2356. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2357. <td><span class="parametername">arg0</span></td>
  2358. <td></td>
  2359. </tr>
  2360. <tr>
  2361. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2362. <td><span class="parametername">arg1</span></td>
  2363. <td></td>
  2364. </tr>
  2365. <tr>
  2366. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2367. <td><span class="parametername">arg2</span></td>
  2368. <td></td>
  2369. </tr>
  2370. <tr>
  2371. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2372. <td><span class="parametername">arg3</span></td>
  2373. <td></td>
  2374. </tr>
  2375. </tbody>
  2376. </table>
  2377. <span class="small pull-right mobile-hide">
  2378. <span class="divider">|</span>
  2379. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_String_System_Object___.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.String%2CSystem.Object%5B%5D)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2380. </span>
  2381. <span class="small pull-right mobile-hide">
  2382. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1336">View Source</a>
  2383. </span>
  2384. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2385. <h4 id="Terminal_Gui_FakeConsole_Write_System_String_System_Object___" data-uid="Terminal.Gui.FakeConsole.Write(System.String,System.Object[])">Write(string, params object[])</h4>
  2386. <div class="markdown level1 summary"></div>
  2387. <div class="markdown level1 conceptual"></div>
  2388. <h5 class="declaration">Declaration</h5>
  2389. <div class="codewrapper">
  2390. <pre><code class="lang-csharp hljs">public static void Write(string format, params object[] arg)</code></pre>
  2391. </div>
  2392. <h5 class="parameters">Parameters</h5>
  2393. <table class="table table-bordered table-condensed">
  2394. <thead>
  2395. <tr>
  2396. <th>Type</th>
  2397. <th>Name</th>
  2398. <th>Description</th>
  2399. </tr>
  2400. </thead>
  2401. <tbody>
  2402. <tr>
  2403. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  2404. <td><span class="parametername">format</span></td>
  2405. <td></td>
  2406. </tr>
  2407. <tr>
  2408. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a>[]</td>
  2409. <td><span class="parametername">arg</span></td>
  2410. <td></td>
  2411. </tr>
  2412. </tbody>
  2413. </table>
  2414. <span class="small pull-right mobile-hide">
  2415. <span class="divider">|</span>
  2416. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_UInt32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.UInt32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2417. </span>
  2418. <span class="small pull-right mobile-hide">
  2419. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1291">View Source</a>
  2420. </span>
  2421. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2422. <h4 id="Terminal_Gui_FakeConsole_Write_System_UInt32_" data-uid="Terminal.Gui.FakeConsole.Write(System.UInt32)">Write(uint)</h4>
  2423. <div class="markdown level1 summary"></div>
  2424. <div class="markdown level1 conceptual"></div>
  2425. <h5 class="declaration">Declaration</h5>
  2426. <div class="codewrapper">
  2427. <pre><code class="lang-csharp hljs">public static void Write(uint value)</code></pre>
  2428. </div>
  2429. <h5 class="parameters">Parameters</h5>
  2430. <table class="table table-bordered table-condensed">
  2431. <thead>
  2432. <tr>
  2433. <th>Type</th>
  2434. <th>Name</th>
  2435. <th>Description</th>
  2436. </tr>
  2437. </thead>
  2438. <tbody>
  2439. <tr>
  2440. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.uint32">uint</a></td>
  2441. <td><span class="parametername">value</span></td>
  2442. <td></td>
  2443. </tr>
  2444. </tbody>
  2445. </table>
  2446. <span class="small pull-right mobile-hide">
  2447. <span class="divider">|</span>
  2448. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_Write_System_UInt64_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.Write(System.UInt64)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2449. </span>
  2450. <span class="small pull-right mobile-hide">
  2451. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1161">View Source</a>
  2452. </span>
  2453. <a id="Terminal_Gui_FakeConsole_Write_" data-uid="Terminal.Gui.FakeConsole.Write*"></a>
  2454. <h4 id="Terminal_Gui_FakeConsole_Write_System_UInt64_" data-uid="Terminal.Gui.FakeConsole.Write(System.UInt64)">Write(ulong)</h4>
  2455. <div class="markdown level1 summary"></div>
  2456. <div class="markdown level1 conceptual"></div>
  2457. <h5 class="declaration">Declaration</h5>
  2458. <div class="codewrapper">
  2459. <pre><code class="lang-csharp hljs">public static void Write(ulong value)</code></pre>
  2460. </div>
  2461. <h5 class="parameters">Parameters</h5>
  2462. <table class="table table-bordered table-condensed">
  2463. <thead>
  2464. <tr>
  2465. <th>Type</th>
  2466. <th>Name</th>
  2467. <th>Description</th>
  2468. </tr>
  2469. </thead>
  2470. <tbody>
  2471. <tr>
  2472. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.uint64">ulong</a></td>
  2473. <td><span class="parametername">value</span></td>
  2474. <td></td>
  2475. </tr>
  2476. </tbody>
  2477. </table>
  2478. <span class="small pull-right mobile-hide">
  2479. <span class="divider">|</span>
  2480. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2481. </span>
  2482. <span class="small pull-right mobile-hide">
  2483. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1554">View Source</a>
  2484. </span>
  2485. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2486. <h4 id="Terminal_Gui_FakeConsole_WriteLine" data-uid="Terminal.Gui.FakeConsole.WriteLine">WriteLine()</h4>
  2487. <div class="markdown level1 summary"></div>
  2488. <div class="markdown level1 conceptual"></div>
  2489. <h5 class="declaration">Declaration</h5>
  2490. <div class="codewrapper">
  2491. <pre><code class="lang-csharp hljs">public static void WriteLine()</code></pre>
  2492. </div>
  2493. <span class="small pull-right mobile-hide">
  2494. <span class="divider">|</span>
  2495. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_Boolean_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.Boolean)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2496. </span>
  2497. <span class="small pull-right mobile-hide">
  2498. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1941">View Source</a>
  2499. </span>
  2500. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2501. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Boolean_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Boolean)">WriteLine(bool)</h4>
  2502. <div class="markdown level1 summary"></div>
  2503. <div class="markdown level1 conceptual"></div>
  2504. <h5 class="declaration">Declaration</h5>
  2505. <div class="codewrapper">
  2506. <pre><code class="lang-csharp hljs">public static void WriteLine(bool value)</code></pre>
  2507. </div>
  2508. <h5 class="parameters">Parameters</h5>
  2509. <table class="table table-bordered table-condensed">
  2510. <thead>
  2511. <tr>
  2512. <th>Type</th>
  2513. <th>Name</th>
  2514. <th>Description</th>
  2515. </tr>
  2516. </thead>
  2517. <tbody>
  2518. <tr>
  2519. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
  2520. <td><span class="parametername">value</span></td>
  2521. <td></td>
  2522. </tr>
  2523. </tbody>
  2524. </table>
  2525. <span class="small pull-right mobile-hide">
  2526. <span class="divider">|</span>
  2527. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_Char_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.Char)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2528. </span>
  2529. <span class="small pull-right mobile-hide">
  2530. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1920">View Source</a>
  2531. </span>
  2532. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2533. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Char_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Char)">WriteLine(char)</h4>
  2534. <div class="markdown level1 summary"></div>
  2535. <div class="markdown level1 conceptual"></div>
  2536. <h5 class="declaration">Declaration</h5>
  2537. <div class="codewrapper">
  2538. <pre><code class="lang-csharp hljs">public static void WriteLine(char value)</code></pre>
  2539. </div>
  2540. <h5 class="parameters">Parameters</h5>
  2541. <table class="table table-bordered table-condensed">
  2542. <thead>
  2543. <tr>
  2544. <th>Type</th>
  2545. <th>Name</th>
  2546. <th>Description</th>
  2547. </tr>
  2548. </thead>
  2549. <tbody>
  2550. <tr>
  2551. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.char">char</a></td>
  2552. <td><span class="parametername">value</span></td>
  2553. <td></td>
  2554. </tr>
  2555. </tbody>
  2556. </table>
  2557. <span class="small pull-right mobile-hide">
  2558. <span class="divider">|</span>
  2559. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_Char___.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.Char%5B%5D)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2560. </span>
  2561. <span class="small pull-right mobile-hide">
  2562. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1899">View Source</a>
  2563. </span>
  2564. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2565. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Char___" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Char[])">WriteLine(char[])</h4>
  2566. <div class="markdown level1 summary"></div>
  2567. <div class="markdown level1 conceptual"></div>
  2568. <h5 class="declaration">Declaration</h5>
  2569. <div class="codewrapper">
  2570. <pre><code class="lang-csharp hljs">public static void WriteLine(char[] buffer)</code></pre>
  2571. </div>
  2572. <h5 class="parameters">Parameters</h5>
  2573. <table class="table table-bordered table-condensed">
  2574. <thead>
  2575. <tr>
  2576. <th>Type</th>
  2577. <th>Name</th>
  2578. <th>Description</th>
  2579. </tr>
  2580. </thead>
  2581. <tbody>
  2582. <tr>
  2583. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.char">char</a>[]</td>
  2584. <td><span class="parametername">buffer</span></td>
  2585. <td></td>
  2586. </tr>
  2587. </tbody>
  2588. </table>
  2589. <span class="small pull-right mobile-hide">
  2590. <span class="divider">|</span>
  2591. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_Char___System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.Char%5B%5D%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2592. </span>
  2593. <span class="small pull-right mobile-hide">
  2594. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1857">View Source</a>
  2595. </span>
  2596. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2597. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Char___System_Int32_System_Int32_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Char[],System.Int32,System.Int32)">WriteLine(char[], int, int)</h4>
  2598. <div class="markdown level1 summary"></div>
  2599. <div class="markdown level1 conceptual"></div>
  2600. <h5 class="declaration">Declaration</h5>
  2601. <div class="codewrapper">
  2602. <pre><code class="lang-csharp hljs">public static void WriteLine(char[] buffer, int index, int count)</code></pre>
  2603. </div>
  2604. <h5 class="parameters">Parameters</h5>
  2605. <table class="table table-bordered table-condensed">
  2606. <thead>
  2607. <tr>
  2608. <th>Type</th>
  2609. <th>Name</th>
  2610. <th>Description</th>
  2611. </tr>
  2612. </thead>
  2613. <tbody>
  2614. <tr>
  2615. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.char">char</a>[]</td>
  2616. <td><span class="parametername">buffer</span></td>
  2617. <td></td>
  2618. </tr>
  2619. <tr>
  2620. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  2621. <td><span class="parametername">index</span></td>
  2622. <td></td>
  2623. </tr>
  2624. <tr>
  2625. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  2626. <td><span class="parametername">count</span></td>
  2627. <td></td>
  2628. </tr>
  2629. </tbody>
  2630. </table>
  2631. <span class="small pull-right mobile-hide">
  2632. <span class="divider">|</span>
  2633. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_Decimal_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.Decimal)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2634. </span>
  2635. <span class="small pull-right mobile-hide">
  2636. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1878">View Source</a>
  2637. </span>
  2638. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2639. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Decimal_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Decimal)">WriteLine(decimal)</h4>
  2640. <div class="markdown level1 summary"></div>
  2641. <div class="markdown level1 conceptual"></div>
  2642. <h5 class="declaration">Declaration</h5>
  2643. <div class="codewrapper">
  2644. <pre><code class="lang-csharp hljs">public static void WriteLine(decimal value)</code></pre>
  2645. </div>
  2646. <h5 class="parameters">Parameters</h5>
  2647. <table class="table table-bordered table-condensed">
  2648. <thead>
  2649. <tr>
  2650. <th>Type</th>
  2651. <th>Name</th>
  2652. <th>Description</th>
  2653. </tr>
  2654. </thead>
  2655. <tbody>
  2656. <tr>
  2657. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.decimal">decimal</a></td>
  2658. <td><span class="parametername">value</span></td>
  2659. <td></td>
  2660. </tr>
  2661. </tbody>
  2662. </table>
  2663. <span class="small pull-right mobile-hide">
  2664. <span class="divider">|</span>
  2665. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_Double_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.Double)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2666. </span>
  2667. <span class="small pull-right mobile-hide">
  2668. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1997">View Source</a>
  2669. </span>
  2670. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2671. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Double_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Double)">WriteLine(double)</h4>
  2672. <div class="markdown level1 summary"></div>
  2673. <div class="markdown level1 conceptual"></div>
  2674. <h5 class="declaration">Declaration</h5>
  2675. <div class="codewrapper">
  2676. <pre><code class="lang-csharp hljs">public static void WriteLine(double value)</code></pre>
  2677. </div>
  2678. <h5 class="parameters">Parameters</h5>
  2679. <table class="table table-bordered table-condensed">
  2680. <thead>
  2681. <tr>
  2682. <th>Type</th>
  2683. <th>Name</th>
  2684. <th>Description</th>
  2685. </tr>
  2686. </thead>
  2687. <tbody>
  2688. <tr>
  2689. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.double">double</a></td>
  2690. <td><span class="parametername">value</span></td>
  2691. <td></td>
  2692. </tr>
  2693. </tbody>
  2694. </table>
  2695. <span class="small pull-right mobile-hide">
  2696. <span class="divider">|</span>
  2697. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_Int32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.Int32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2698. </span>
  2699. <span class="small pull-right mobile-hide">
  2700. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1596">View Source</a>
  2701. </span>
  2702. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2703. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Int32_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Int32)">WriteLine(int)</h4>
  2704. <div class="markdown level1 summary"></div>
  2705. <div class="markdown level1 conceptual"></div>
  2706. <h5 class="declaration">Declaration</h5>
  2707. <div class="codewrapper">
  2708. <pre><code class="lang-csharp hljs">public static void WriteLine(int value)</code></pre>
  2709. </div>
  2710. <h5 class="parameters">Parameters</h5>
  2711. <table class="table table-bordered table-condensed">
  2712. <thead>
  2713. <tr>
  2714. <th>Type</th>
  2715. <th>Name</th>
  2716. <th>Description</th>
  2717. </tr>
  2718. </thead>
  2719. <tbody>
  2720. <tr>
  2721. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
  2722. <td><span class="parametername">value</span></td>
  2723. <td></td>
  2724. </tr>
  2725. </tbody>
  2726. </table>
  2727. <span class="small pull-right mobile-hide">
  2728. <span class="divider">|</span>
  2729. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_Int64_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.Int64)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2730. </span>
  2731. <span class="small pull-right mobile-hide">
  2732. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1639">View Source</a>
  2733. </span>
  2734. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2735. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Int64_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Int64)">WriteLine(long)</h4>
  2736. <div class="markdown level1 summary"></div>
  2737. <div class="markdown level1 conceptual"></div>
  2738. <h5 class="declaration">Declaration</h5>
  2739. <div class="codewrapper">
  2740. <pre><code class="lang-csharp hljs">public static void WriteLine(long value)</code></pre>
  2741. </div>
  2742. <h5 class="parameters">Parameters</h5>
  2743. <table class="table table-bordered table-condensed">
  2744. <thead>
  2745. <tr>
  2746. <th>Type</th>
  2747. <th>Name</th>
  2748. <th>Description</th>
  2749. </tr>
  2750. </thead>
  2751. <tbody>
  2752. <tr>
  2753. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int64">long</a></td>
  2754. <td><span class="parametername">value</span></td>
  2755. <td></td>
  2756. </tr>
  2757. </tbody>
  2758. </table>
  2759. <span class="small pull-right mobile-hide">
  2760. <span class="divider">|</span>
  2761. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_Object_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.Object)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2762. </span>
  2763. <span class="small pull-right mobile-hide">
  2764. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1682">View Source</a>
  2765. </span>
  2766. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2767. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Object_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Object)">WriteLine(object)</h4>
  2768. <div class="markdown level1 summary"></div>
  2769. <div class="markdown level1 conceptual"></div>
  2770. <h5 class="declaration">Declaration</h5>
  2771. <div class="codewrapper">
  2772. <pre><code class="lang-csharp hljs">public static void WriteLine(object value)</code></pre>
  2773. </div>
  2774. <h5 class="parameters">Parameters</h5>
  2775. <table class="table table-bordered table-condensed">
  2776. <thead>
  2777. <tr>
  2778. <th>Type</th>
  2779. <th>Name</th>
  2780. <th>Description</th>
  2781. </tr>
  2782. </thead>
  2783. <tbody>
  2784. <tr>
  2785. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2786. <td><span class="parametername">value</span></td>
  2787. <td></td>
  2788. </tr>
  2789. </tbody>
  2790. </table>
  2791. <span class="small pull-right mobile-hide">
  2792. <span class="divider">|</span>
  2793. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_Single_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.Single)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2794. </span>
  2795. <span class="small pull-right mobile-hide">
  2796. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1575">View Source</a>
  2797. </span>
  2798. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2799. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_Single_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.Single)">WriteLine(float)</h4>
  2800. <div class="markdown level1 summary"></div>
  2801. <div class="markdown level1 conceptual"></div>
  2802. <h5 class="declaration">Declaration</h5>
  2803. <div class="codewrapper">
  2804. <pre><code class="lang-csharp hljs">public static void WriteLine(float value)</code></pre>
  2805. </div>
  2806. <h5 class="parameters">Parameters</h5>
  2807. <table class="table table-bordered table-condensed">
  2808. <thead>
  2809. <tr>
  2810. <th>Type</th>
  2811. <th>Name</th>
  2812. <th>Description</th>
  2813. </tr>
  2814. </thead>
  2815. <tbody>
  2816. <tr>
  2817. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.single">float</a></td>
  2818. <td><span class="parametername">value</span></td>
  2819. <td></td>
  2820. </tr>
  2821. </tbody>
  2822. </table>
  2823. <span class="small pull-right mobile-hide">
  2824. <span class="divider">|</span>
  2825. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_String_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.String)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2826. </span>
  2827. <span class="small pull-right mobile-hide">
  2828. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1703">View Source</a>
  2829. </span>
  2830. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2831. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String)">WriteLine(string)</h4>
  2832. <div class="markdown level1 summary"></div>
  2833. <div class="markdown level1 conceptual"></div>
  2834. <h5 class="declaration">Declaration</h5>
  2835. <div class="codewrapper">
  2836. <pre><code class="lang-csharp hljs">public static void WriteLine(string value)</code></pre>
  2837. </div>
  2838. <h5 class="parameters">Parameters</h5>
  2839. <table class="table table-bordered table-condensed">
  2840. <thead>
  2841. <tr>
  2842. <th>Type</th>
  2843. <th>Name</th>
  2844. <th>Description</th>
  2845. </tr>
  2846. </thead>
  2847. <tbody>
  2848. <tr>
  2849. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  2850. <td><span class="parametername">value</span></td>
  2851. <td></td>
  2852. </tr>
  2853. </tbody>
  2854. </table>
  2855. <span class="small pull-right mobile-hide">
  2856. <span class="divider">|</span>
  2857. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.String%2CSystem.Object)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2858. </span>
  2859. <span class="small pull-right mobile-hide">
  2860. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1734">View Source</a>
  2861. </span>
  2862. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2863. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object)">WriteLine(string, object)</h4>
  2864. <div class="markdown level1 summary"></div>
  2865. <div class="markdown level1 conceptual"></div>
  2866. <h5 class="declaration">Declaration</h5>
  2867. <div class="codewrapper">
  2868. <pre><code class="lang-csharp hljs">public static void WriteLine(string format, object arg0)</code></pre>
  2869. </div>
  2870. <h5 class="parameters">Parameters</h5>
  2871. <table class="table table-bordered table-condensed">
  2872. <thead>
  2873. <tr>
  2874. <th>Type</th>
  2875. <th>Name</th>
  2876. <th>Description</th>
  2877. </tr>
  2878. </thead>
  2879. <tbody>
  2880. <tr>
  2881. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  2882. <td><span class="parametername">format</span></td>
  2883. <td></td>
  2884. </tr>
  2885. <tr>
  2886. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2887. <td><span class="parametername">arg0</span></td>
  2888. <td></td>
  2889. </tr>
  2890. </tbody>
  2891. </table>
  2892. <span class="small pull-right mobile-hide">
  2893. <span class="divider">|</span>
  2894. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.String%2CSystem.Object%2CSystem.Object)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2895. </span>
  2896. <span class="small pull-right mobile-hide">
  2897. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1976">View Source</a>
  2898. </span>
  2899. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2900. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object)">WriteLine(string, object, object)</h4>
  2901. <div class="markdown level1 summary"></div>
  2902. <div class="markdown level1 conceptual"></div>
  2903. <h5 class="declaration">Declaration</h5>
  2904. <div class="codewrapper">
  2905. <pre><code class="lang-csharp hljs">public static void WriteLine(string format, object arg0, object arg1)</code></pre>
  2906. </div>
  2907. <h5 class="parameters">Parameters</h5>
  2908. <table class="table table-bordered table-condensed">
  2909. <thead>
  2910. <tr>
  2911. <th>Type</th>
  2912. <th>Name</th>
  2913. <th>Description</th>
  2914. </tr>
  2915. </thead>
  2916. <tbody>
  2917. <tr>
  2918. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  2919. <td><span class="parametername">format</span></td>
  2920. <td></td>
  2921. </tr>
  2922. <tr>
  2923. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2924. <td><span class="parametername">arg0</span></td>
  2925. <td></td>
  2926. </tr>
  2927. <tr>
  2928. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2929. <td><span class="parametername">arg1</span></td>
  2930. <td></td>
  2931. </tr>
  2932. </tbody>
  2933. </table>
  2934. <span class="small pull-right mobile-hide">
  2935. <span class="divider">|</span>
  2936. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_System_Object_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.String%2CSystem.Object%2CSystem.Object%2CSystem.Object)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2937. </span>
  2938. <span class="small pull-right mobile-hide">
  2939. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1773">View Source</a>
  2940. </span>
  2941. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2942. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object,System.Object)">WriteLine(string, object, object, object)</h4>
  2943. <div class="markdown level1 summary"></div>
  2944. <div class="markdown level1 conceptual"></div>
  2945. <h5 class="declaration">Declaration</h5>
  2946. <div class="codewrapper">
  2947. <pre><code class="lang-csharp hljs">public static void WriteLine(string format, object arg0, object arg1, object arg2)</code></pre>
  2948. </div>
  2949. <h5 class="parameters">Parameters</h5>
  2950. <table class="table table-bordered table-condensed">
  2951. <thead>
  2952. <tr>
  2953. <th>Type</th>
  2954. <th>Name</th>
  2955. <th>Description</th>
  2956. </tr>
  2957. </thead>
  2958. <tbody>
  2959. <tr>
  2960. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  2961. <td><span class="parametername">format</span></td>
  2962. <td></td>
  2963. </tr>
  2964. <tr>
  2965. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2966. <td><span class="parametername">arg0</span></td>
  2967. <td></td>
  2968. </tr>
  2969. <tr>
  2970. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2971. <td><span class="parametername">arg1</span></td>
  2972. <td></td>
  2973. </tr>
  2974. <tr>
  2975. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  2976. <td><span class="parametername">arg2</span></td>
  2977. <td></td>
  2978. </tr>
  2979. </tbody>
  2980. </table>
  2981. <span class="small pull-right mobile-hide">
  2982. <span class="divider">|</span>
  2983. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_System_Object_System_Object_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.String%2CSystem.Object%2CSystem.Object%2CSystem.Object%2CSystem.Object)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  2984. </span>
  2985. <span class="small pull-right mobile-hide">
  2986. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1787">View Source</a>
  2987. </span>
  2988. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  2989. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object_System_Object_System_Object_System_Object_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object,System.Object,System.Object,System.Object)">WriteLine(string, object, object, object, object)</h4>
  2990. <div class="markdown level1 summary"></div>
  2991. <div class="markdown level1 conceptual"></div>
  2992. <h5 class="declaration">Declaration</h5>
  2993. <div class="codewrapper">
  2994. <pre><code class="lang-csharp hljs">public static void WriteLine(string format, object arg0, object arg1, object arg2, object arg3)</code></pre>
  2995. </div>
  2996. <h5 class="parameters">Parameters</h5>
  2997. <table class="table table-bordered table-condensed">
  2998. <thead>
  2999. <tr>
  3000. <th>Type</th>
  3001. <th>Name</th>
  3002. <th>Description</th>
  3003. </tr>
  3004. </thead>
  3005. <tbody>
  3006. <tr>
  3007. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  3008. <td><span class="parametername">format</span></td>
  3009. <td></td>
  3010. </tr>
  3011. <tr>
  3012. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  3013. <td><span class="parametername">arg0</span></td>
  3014. <td></td>
  3015. </tr>
  3016. <tr>
  3017. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  3018. <td><span class="parametername">arg1</span></td>
  3019. <td></td>
  3020. </tr>
  3021. <tr>
  3022. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  3023. <td><span class="parametername">arg2</span></td>
  3024. <td></td>
  3025. </tr>
  3026. <tr>
  3027. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></td>
  3028. <td><span class="parametername">arg3</span></td>
  3029. <td></td>
  3030. </tr>
  3031. </tbody>
  3032. </table>
  3033. <span class="small pull-right mobile-hide">
  3034. <span class="divider">|</span>
  3035. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object___.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.String%2CSystem.Object%5B%5D)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  3036. </span>
  3037. <span class="small pull-right mobile-hide">
  3038. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1819">View Source</a>
  3039. </span>
  3040. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  3041. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_String_System_Object___" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.String,System.Object[])">WriteLine(string, params object[])</h4>
  3042. <div class="markdown level1 summary"></div>
  3043. <div class="markdown level1 conceptual"></div>
  3044. <h5 class="declaration">Declaration</h5>
  3045. <div class="codewrapper">
  3046. <pre><code class="lang-csharp hljs">public static void WriteLine(string format, params object[] arg)</code></pre>
  3047. </div>
  3048. <h5 class="parameters">Parameters</h5>
  3049. <table class="table table-bordered table-condensed">
  3050. <thead>
  3051. <tr>
  3052. <th>Type</th>
  3053. <th>Name</th>
  3054. <th>Description</th>
  3055. </tr>
  3056. </thead>
  3057. <tbody>
  3058. <tr>
  3059. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
  3060. <td><span class="parametername">format</span></td>
  3061. <td></td>
  3062. </tr>
  3063. <tr>
  3064. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a>[]</td>
  3065. <td><span class="parametername">arg</span></td>
  3066. <td></td>
  3067. </tr>
  3068. </tbody>
  3069. </table>
  3070. <span class="small pull-right mobile-hide">
  3071. <span class="divider">|</span>
  3072. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_UInt32_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.UInt32)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  3073. </span>
  3074. <span class="small pull-right mobile-hide">
  3075. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1618">View Source</a>
  3076. </span>
  3077. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  3078. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_UInt32_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.UInt32)">WriteLine(uint)</h4>
  3079. <div class="markdown level1 summary"></div>
  3080. <div class="markdown level1 conceptual"></div>
  3081. <h5 class="declaration">Declaration</h5>
  3082. <div class="codewrapper">
  3083. <pre><code class="lang-csharp hljs">public static void WriteLine(uint value)</code></pre>
  3084. </div>
  3085. <h5 class="parameters">Parameters</h5>
  3086. <table class="table table-bordered table-condensed">
  3087. <thead>
  3088. <tr>
  3089. <th>Type</th>
  3090. <th>Name</th>
  3091. <th>Description</th>
  3092. </tr>
  3093. </thead>
  3094. <tbody>
  3095. <tr>
  3096. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.uint32">uint</a></td>
  3097. <td><span class="parametername">value</span></td>
  3098. <td></td>
  3099. </tr>
  3100. </tbody>
  3101. </table>
  3102. <span class="small pull-right mobile-hide">
  3103. <span class="divider">|</span>
  3104. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole_WriteLine_System_UInt64_.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole.WriteLine(System.UInt64)%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Edit this page</a>
  3105. </span>
  3106. <span class="small pull-right mobile-hide">
  3107. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L1661">View Source</a>
  3108. </span>
  3109. <a id="Terminal_Gui_FakeConsole_WriteLine_" data-uid="Terminal.Gui.FakeConsole.WriteLine*"></a>
  3110. <h4 id="Terminal_Gui_FakeConsole_WriteLine_System_UInt64_" data-uid="Terminal.Gui.FakeConsole.WriteLine(System.UInt64)">WriteLine(ulong)</h4>
  3111. <div class="markdown level1 summary"></div>
  3112. <div class="markdown level1 conceptual"></div>
  3113. <h5 class="declaration">Declaration</h5>
  3114. <div class="codewrapper">
  3115. <pre><code class="lang-csharp hljs">public static void WriteLine(ulong value)</code></pre>
  3116. </div>
  3117. <h5 class="parameters">Parameters</h5>
  3118. <table class="table table-bordered table-condensed">
  3119. <thead>
  3120. <tr>
  3121. <th>Type</th>
  3122. <th>Name</th>
  3123. <th>Description</th>
  3124. </tr>
  3125. </thead>
  3126. <tbody>
  3127. <tr>
  3128. <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.uint64">ulong</a></td>
  3129. <td><span class="parametername">value</span></td>
  3130. <td></td>
  3131. </tr>
  3132. </tbody>
  3133. </table>
  3134. </article>
  3135. </div>
  3136. <div class="hidden-sm col-md-2" role="complementary">
  3137. <div class="sideaffix">
  3138. <div class="contribution">
  3139. <ul class="nav">
  3140. <li>
  3141. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/docfx/overrides/new?filename=Terminal_Gui_FakeConsole.md&amp;value=---%0Auid%3A%20Terminal.Gui.FakeConsole%0Asummary%3A%20&#39;*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax&#39;%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Edit this page</a>
  3142. </li>
  3143. <li>
  3144. <a href="tig:tig/Terminal.Gui/blob/v2_develop/Terminal.Gui/ConsoleDrivers/FakeDriver/FakeConsole.cs/#L15" class="contribution-link">View Source</a>
  3145. </li>
  3146. </ul>
  3147. </div>
  3148. <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
  3149. <h5>In this article</h5>
  3150. <div></div>
  3151. </nav>
  3152. </div>
  3153. </div>
  3154. </div>
  3155. </div>
  3156. <footer>
  3157. <div class="grad-bottom"></div>
  3158. <div class="footer">
  3159. <div class="container">
  3160. <span class="pull-right">
  3161. <a href="#top">Back to top</a>
  3162. </span>
  3163. <span>Generated by <strong>DocFX</strong></span>
  3164. </div>
  3165. </div>
  3166. </footer>
  3167. </div>
  3168. <script type="text/javascript" src="../../styles/docfx.vendor.min.js"></script>
  3169. <script type="text/javascript" src="../../styles/docfx.js"></script>
  3170. <script type="text/javascript" src="../../styles/main.js"></script>
  3171. </body>
  3172. </html>