Terminal.Gui.FakeConsole.html 93 KB

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