Terminal.Application.html 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  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 Application
  8. </title>
  9. <meta name="viewport" content="width=device-width">
  10. <meta name="title" content="Class Application
  11. ">
  12. <meta name="generator" content="docfx 2.18.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="">
  18. <meta property="docfx:tocrel" content="../toc.html">
  19. </head>
  20. <body data-spy="scroll" data-target="#affix">
  21. <div id="wrapper">
  22. <header>
  23. <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
  24. <div class="container">
  25. <div class="navbar-header">
  26. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
  27. <span class="sr-only">Toggle navigation</span>
  28. <span class="icon-bar"></span>
  29. <span class="icon-bar"></span>
  30. <span class="icon-bar"></span>
  31. </button>
  32. <a class="navbar-brand" href="../../index.html">
  33. <img id="logo" class="svg" src="../../logo.svg" alt="">
  34. </a>
  35. </div>
  36. <div class="collapse navbar-collapse" id="navbar">
  37. <form class="navbar-form navbar-right" role="search" id="search">
  38. <div class="form-group">
  39. <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
  40. </div>
  41. </form>
  42. </div>
  43. </div>
  44. </nav>
  45. <div class="subnav navbar navbar-default">
  46. <div class="container hide-when-search" id="breadcrumb">
  47. <ul class="breadcrumb">
  48. <li></li>
  49. </ul>
  50. </div>
  51. </div>
  52. </header>
  53. <div role="main" class="container body-content hide-when-search">
  54. <div class="sidenav hide-when-search">
  55. <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
  56. <div class="sidetoggle collapse" id="sidetoggle">
  57. <div id="sidetoc"></div>
  58. </div>
  59. </div>
  60. <div class="article row grid-right">
  61. <div class="col-md-10">
  62. <article class="content wrap" id="_content" data-uid="Terminal.Application">
  63. <h1 id="Terminal_Application" data-uid="Terminal.Application">Class Application
  64. </h1>
  65. <div class="markdown level0 summary"><p>The application driver for gui.cs</p>
  66. </div>
  67. <div class="markdown level0 conceptual"></div>
  68. <div class="inheritance">
  69. <h5>Inheritance</h5>
  70. <div class="level0"><span class="xref">System.Object</span></div>
  71. <div class="level1"><span class="xref">Application</span></div>
  72. </div>
  73. <h6><strong>Namespace</strong>: <a class="xref" href="../Terminal.html">Terminal</a></h6>
  74. <h6><strong>Assembly</strong>: Terminal.dll</h6>
  75. <h5 id="Terminal_Application_syntax">Syntax</h5>
  76. <div class="codewrapper">
  77. <pre><code class="lang-csharp hljs">public class Application</code></pre>
  78. </div>
  79. <h5 id="Terminal_Application_remarks"><strong>Remarks</strong></h5>
  80. <div class="markdown level0 remarks"><p>
  81. You can hook up to the Iteration event to have your method
  82. invoked on each iteration of the mainloop.
  83. </p>
  84. <p>
  85. Creates a mainloop to process input events, handle timers and
  86. other sources of data. It is accessible via the MainLoop property.
  87. </p>
  88. <p>
  89. When invoked sets the SynchronizationContext to one that is tied
  90. to the mainloop, allowing user code to use async/await.
  91. </p></div>
  92. <h3 id="constructors">Constructors
  93. </h3>
  94. <a id="Terminal_Application__ctor_" data-uid="Terminal.Application.#ctor*"></a>
  95. <h4 id="Terminal_Application__ctor" data-uid="Terminal.Application.#ctor">Application()</h4>
  96. <div class="markdown level1 summary"></div>
  97. <div class="markdown level1 conceptual"></div>
  98. <h5 class="decalaration">Declaration</h5>
  99. <div class="codewrapper">
  100. <pre><code class="lang-csharp hljs">public Application ();</code></pre>
  101. </div>
  102. <h3 id="fields">Fields
  103. </h3>
  104. <h4 id="Terminal_Application_DebugDrawBounds" data-uid="Terminal.Application.DebugDrawBounds">DebugDrawBounds</h4>
  105. <div class="markdown level1 summary"></div>
  106. <div class="markdown level1 conceptual"></div>
  107. <h5 class="decalaration">Declaration</h5>
  108. <div class="codewrapper">
  109. <pre><code class="lang-csharp hljs">public static bool DebugDrawBounds;</code></pre>
  110. </div>
  111. <h5 class="fieldValue">Field Value</h5>
  112. <table class="table table-bordered table-striped table-condensed">
  113. <thead>
  114. <tr>
  115. <th>Type</th>
  116. <th>Description</th>
  117. </tr>
  118. </thead>
  119. <tbody>
  120. <tr>
  121. <td><span class="xref">System.Boolean</span></td>
  122. <td><p>To be added.</p>
  123. </td>
  124. </tr>
  125. </tbody>
  126. </table>
  127. <h4 id="Terminal_Application_Driver" data-uid="Terminal.Application.Driver">Driver</h4>
  128. <div class="markdown level1 summary"></div>
  129. <div class="markdown level1 conceptual"></div>
  130. <h5 class="decalaration">Declaration</h5>
  131. <div class="codewrapper">
  132. <pre><code class="lang-csharp hljs">public static Terminal.ConsoleDriver Driver;</code></pre>
  133. </div>
  134. <h5 class="fieldValue">Field Value</h5>
  135. <table class="table table-bordered table-striped table-condensed">
  136. <thead>
  137. <tr>
  138. <th>Type</th>
  139. <th>Description</th>
  140. </tr>
  141. </thead>
  142. <tbody>
  143. <tr>
  144. <td><a class="xref" href="Terminal.ConsoleDriver.html">ConsoleDriver</a></td>
  145. <td><p>To be added.</p>
  146. </td>
  147. </tr>
  148. </tbody>
  149. </table>
  150. <h4 id="Terminal_Application_RootMouseEvent" data-uid="Terminal.Application.RootMouseEvent">RootMouseEvent</h4>
  151. <div class="markdown level1 summary"><p>Merely a debugging aid to see the raw mouse events</p>
  152. </div>
  153. <div class="markdown level1 conceptual"></div>
  154. <h5 class="decalaration">Declaration</h5>
  155. <div class="codewrapper">
  156. <pre><code class="lang-csharp hljs">public static Action&lt;Terminal.MouseEvent&gt; RootMouseEvent;</code></pre>
  157. </div>
  158. <h5 class="fieldValue">Field Value</h5>
  159. <table class="table table-bordered table-striped table-condensed">
  160. <thead>
  161. <tr>
  162. <th>Type</th>
  163. <th>Description</th>
  164. </tr>
  165. </thead>
  166. <tbody>
  167. <tr>
  168. <td><span class="xref">System.Action</span>&lt;<a class="xref" href="Terminal.MouseEvent.html">MouseEvent</a>&gt;</td>
  169. <td><p>To be added.</p>
  170. </td>
  171. </tr>
  172. </tbody>
  173. </table>
  174. <h3 id="properties">Properties
  175. </h3>
  176. <a id="Terminal_Application_Current_" data-uid="Terminal.Application.Current*"></a>
  177. <h4 id="Terminal_Application_Current" data-uid="Terminal.Application.Current">Current</h4>
  178. <div class="markdown level1 summary"></div>
  179. <div class="markdown level1 conceptual"></div>
  180. <h5 class="decalaration">Declaration</h5>
  181. <div class="codewrapper">
  182. <pre><code class="lang-csharp hljs">public static Terminal.Toplevel Current { get; }</code></pre>
  183. </div>
  184. <h5 class="propertyValue">Property Value</h5>
  185. <table class="table table-bordered table-striped table-condensed">
  186. <thead>
  187. <tr>
  188. <th>Type</th>
  189. <th>Description</th>
  190. </tr>
  191. </thead>
  192. <tbody>
  193. <tr>
  194. <td><a class="xref" href="Terminal.Toplevel.html">Toplevel</a></td>
  195. <td><p>To be added.</p>
  196. </td>
  197. </tr>
  198. </tbody>
  199. </table>
  200. <a id="Terminal_Application_MainLoop_" data-uid="Terminal.Application.MainLoop*"></a>
  201. <h4 id="Terminal_Application_MainLoop" data-uid="Terminal.Application.MainLoop">MainLoop</h4>
  202. <div class="markdown level1 summary"></div>
  203. <div class="markdown level1 conceptual"></div>
  204. <h5 class="decalaration">Declaration</h5>
  205. <div class="codewrapper">
  206. <pre><code class="lang-csharp hljs">public static Mono.Terminal.MainLoop MainLoop { get; }</code></pre>
  207. </div>
  208. <h5 class="propertyValue">Property Value</h5>
  209. <table class="table table-bordered table-striped table-condensed">
  210. <thead>
  211. <tr>
  212. <th>Type</th>
  213. <th>Description</th>
  214. </tr>
  215. </thead>
  216. <tbody>
  217. <tr>
  218. <td><span class="xref">Mono.Terminal.MainLoop</span></td>
  219. <td><p>To be added.</p>
  220. </td>
  221. </tr>
  222. </tbody>
  223. </table>
  224. <a id="Terminal_Application_Top_" data-uid="Terminal.Application.Top*"></a>
  225. <h4 id="Terminal_Application_Top" data-uid="Terminal.Application.Top">Top</h4>
  226. <div class="markdown level1 summary"></div>
  227. <div class="markdown level1 conceptual"></div>
  228. <h5 class="decalaration">Declaration</h5>
  229. <div class="codewrapper">
  230. <pre><code class="lang-csharp hljs">public static Terminal.Toplevel Top { get; }</code></pre>
  231. </div>
  232. <h5 class="propertyValue">Property Value</h5>
  233. <table class="table table-bordered table-striped table-condensed">
  234. <thead>
  235. <tr>
  236. <th>Type</th>
  237. <th>Description</th>
  238. </tr>
  239. </thead>
  240. <tbody>
  241. <tr>
  242. <td><a class="xref" href="Terminal.Toplevel.html">Toplevel</a></td>
  243. <td><p>To be added.</p>
  244. </td>
  245. </tr>
  246. </tbody>
  247. </table>
  248. <h3 id="methods">Methods
  249. </h3>
  250. <a id="Terminal_Application_Begin_" data-uid="Terminal.Application.Begin*"></a>
  251. <h4 id="Terminal_Application_Begin_Terminal_Toplevel_" data-uid="Terminal.Application.Begin(Terminal.Toplevel)">Begin(Toplevel)</h4>
  252. <div class="markdown level1 summary"></div>
  253. <div class="markdown level1 conceptual"></div>
  254. <h5 class="decalaration">Declaration</h5>
  255. <div class="codewrapper">
  256. <pre><code class="lang-csharp hljs">public static Terminal.Application.RunState Begin (Terminal.Toplevel toplevel);</code></pre>
  257. </div>
  258. <h5 class="parameters">Parameters</h5>
  259. <table class="table table-bordered table-striped table-condensed">
  260. <thead>
  261. <tr>
  262. <th>Type</th>
  263. <th>Name</th>
  264. <th>Description</th>
  265. </tr>
  266. </thead>
  267. <tbody>
  268. <tr>
  269. <td><a class="xref" href="Terminal.Toplevel.html">Toplevel</a></td>
  270. <td><span class="parametername">toplevel</span></td>
  271. <td><p>To be added.</p>
  272. </td>
  273. </tr>
  274. </tbody>
  275. </table>
  276. <h5 class="returns">Returns</h5>
  277. <table class="table table-bordered table-striped table-condensed">
  278. <thead>
  279. <tr>
  280. <th>Type</th>
  281. <th>Description</th>
  282. </tr>
  283. </thead>
  284. <tbody>
  285. <tr>
  286. <td></td>
  287. <td><p>To be added.</p>
  288. </td>
  289. </tr>
  290. </tbody>
  291. </table>
  292. <a id="Terminal_Application_End_" data-uid="Terminal.Application.End*"></a>
  293. <h4 id="Terminal_Application_End_Terminal_Application_RunState_" data-uid="Terminal.Application.End(Terminal.Application.RunState)">End(Application+RunState)</h4>
  294. <div class="markdown level1 summary"></div>
  295. <div class="markdown level1 conceptual"></div>
  296. <h5 class="decalaration">Declaration</h5>
  297. <div class="codewrapper">
  298. <pre><code class="lang-csharp hljs">public static void End (Terminal.Application.RunState rs);</code></pre>
  299. </div>
  300. <h5 class="parameters">Parameters</h5>
  301. <table class="table table-bordered table-striped table-condensed">
  302. <thead>
  303. <tr>
  304. <th>Type</th>
  305. <th>Name</th>
  306. <th>Description</th>
  307. </tr>
  308. </thead>
  309. <tbody>
  310. <tr>
  311. <td></td>
  312. <td><span class="parametername">rs</span></td>
  313. <td><p>To be added.</p>
  314. </td>
  315. </tr>
  316. </tbody>
  317. </table>
  318. <a id="Terminal_Application_GrabMouse_" data-uid="Terminal.Application.GrabMouse*"></a>
  319. <h4 id="Terminal_Application_GrabMouse_Terminal_View_" data-uid="Terminal.Application.GrabMouse(Terminal.View)">GrabMouse(View)</h4>
  320. <div class="markdown level1 summary"><p>Grabs the mouse, forcing all mouse events to be routed to the specified view until UngrabMouse is called.</p>
  321. </div>
  322. <div class="markdown level1 conceptual"></div>
  323. <h5 class="decalaration">Declaration</h5>
  324. <div class="codewrapper">
  325. <pre><code class="lang-csharp hljs">public static void GrabMouse (Terminal.View view);</code></pre>
  326. </div>
  327. <h5 class="parameters">Parameters</h5>
  328. <table class="table table-bordered table-striped table-condensed">
  329. <thead>
  330. <tr>
  331. <th>Type</th>
  332. <th>Name</th>
  333. <th>Description</th>
  334. </tr>
  335. </thead>
  336. <tbody>
  337. <tr>
  338. <td><a class="xref" href="Terminal.View.html">View</a></td>
  339. <td><span class="parametername">view</span></td>
  340. <td><p>View that will receive all mouse events until UngrabMouse is invoked.</p>
  341. </td>
  342. </tr>
  343. </tbody>
  344. </table>
  345. <a id="Terminal_Application_Init_" data-uid="Terminal.Application.Init*"></a>
  346. <h4 id="Terminal_Application_Init" data-uid="Terminal.Application.Init">Init()</h4>
  347. <div class="markdown level1 summary"><p>Initializes the Application</p>
  348. </div>
  349. <div class="markdown level1 conceptual"></div>
  350. <h5 class="decalaration">Declaration</h5>
  351. <div class="codewrapper">
  352. <pre><code class="lang-csharp hljs">public static void Init ();</code></pre>
  353. </div>
  354. <a id="Terminal_Application_MakeCenteredRect_" data-uid="Terminal.Application.MakeCenteredRect*"></a>
  355. <h4 id="Terminal_Application_MakeCenteredRect_Terminal_Size_" data-uid="Terminal.Application.MakeCenteredRect(Terminal.Size)">MakeCenteredRect(Size)</h4>
  356. <div class="markdown level1 summary"><p>Returns a rectangle that is centered in the screen for the provided size.</p>
  357. </div>
  358. <div class="markdown level1 conceptual"></div>
  359. <h5 class="decalaration">Declaration</h5>
  360. <div class="codewrapper">
  361. <pre><code class="lang-csharp hljs">public static Terminal.Rect MakeCenteredRect (Terminal.Size size);</code></pre>
  362. </div>
  363. <h5 class="parameters">Parameters</h5>
  364. <table class="table table-bordered table-striped table-condensed">
  365. <thead>
  366. <tr>
  367. <th>Type</th>
  368. <th>Name</th>
  369. <th>Description</th>
  370. </tr>
  371. </thead>
  372. <tbody>
  373. <tr>
  374. <td><a class="xref" href="Terminal.Size.html">Size</a></td>
  375. <td><span class="parametername">size</span></td>
  376. <td><p>Size for the rectangle.</p>
  377. </td>
  378. </tr>
  379. </tbody>
  380. </table>
  381. <h5 class="returns">Returns</h5>
  382. <table class="table table-bordered table-striped table-condensed">
  383. <thead>
  384. <tr>
  385. <th>Type</th>
  386. <th>Description</th>
  387. </tr>
  388. </thead>
  389. <tbody>
  390. <tr>
  391. <td><a class="xref" href="Terminal.Rect.html">Rect</a></td>
  392. <td><p>The centered rect.</p>
  393. </td>
  394. </tr>
  395. </tbody>
  396. </table>
  397. <a id="Terminal_Application_Refresh_" data-uid="Terminal.Application.Refresh*"></a>
  398. <h4 id="Terminal_Application_Refresh" data-uid="Terminal.Application.Refresh">Refresh()</h4>
  399. <div class="markdown level1 summary"><p>Triggers a refresh of the entire display.</p>
  400. </div>
  401. <div class="markdown level1 conceptual"></div>
  402. <h5 class="decalaration">Declaration</h5>
  403. <div class="codewrapper">
  404. <pre><code class="lang-csharp hljs">public static void Refresh ();</code></pre>
  405. </div>
  406. <a id="Terminal_Application_RequestStop_" data-uid="Terminal.Application.RequestStop*"></a>
  407. <h4 id="Terminal_Application_RequestStop" data-uid="Terminal.Application.RequestStop">RequestStop()</h4>
  408. <div class="markdown level1 summary"><p>Stops running the most recent toplevel</p>
  409. </div>
  410. <div class="markdown level1 conceptual"></div>
  411. <h5 class="decalaration">Declaration</h5>
  412. <div class="codewrapper">
  413. <pre><code class="lang-csharp hljs">public static void RequestStop ();</code></pre>
  414. </div>
  415. <a id="Terminal_Application_Run_" data-uid="Terminal.Application.Run*"></a>
  416. <h4 id="Terminal_Application_Run" data-uid="Terminal.Application.Run">Run()</h4>
  417. <div class="markdown level1 summary"><p>Runs the application with the built-in toplevel view</p>
  418. </div>
  419. <div class="markdown level1 conceptual"></div>
  420. <h5 class="decalaration">Declaration</h5>
  421. <div class="codewrapper">
  422. <pre><code class="lang-csharp hljs">public static void Run ();</code></pre>
  423. </div>
  424. <a id="Terminal_Application_Run_" data-uid="Terminal.Application.Run*"></a>
  425. <h4 id="Terminal_Application_Run_Terminal_Toplevel_" data-uid="Terminal.Application.Run(Terminal.Toplevel)">Run(Toplevel)</h4>
  426. <div class="markdown level1 summary"><p>Runs the main loop on the given container.</p>
  427. </div>
  428. <div class="markdown level1 conceptual"></div>
  429. <h5 class="decalaration">Declaration</h5>
  430. <div class="codewrapper">
  431. <pre><code class="lang-csharp hljs">public static void Run (Terminal.Toplevel view);</code></pre>
  432. </div>
  433. <h5 class="parameters">Parameters</h5>
  434. <table class="table table-bordered table-striped table-condensed">
  435. <thead>
  436. <tr>
  437. <th>Type</th>
  438. <th>Name</th>
  439. <th>Description</th>
  440. </tr>
  441. </thead>
  442. <tbody>
  443. <tr>
  444. <td><a class="xref" href="Terminal.Toplevel.html">Toplevel</a></td>
  445. <td><span class="parametername">view</span></td>
  446. <td><p>To be added.</p>
  447. </td>
  448. </tr>
  449. </tbody>
  450. </table>
  451. <h5 id="Terminal_Application_Run_Terminal_Toplevel__remarks">Remarks</h5>
  452. <div class="markdown level1 remarks"><p>
  453. This method is used to start processing events
  454. for the main application, but it is also used to
  455. run modal dialog boxes.
  456. </p>
  457. <p>
  458. To make a toplevel stop execution, set the &quot;Running&quot;
  459. property to false.
  460. </p></div>
  461. <a id="Terminal_Application_RunLoop_" data-uid="Terminal.Application.RunLoop*"></a>
  462. <h4 id="Terminal_Application_RunLoop_Terminal_Application_RunState_System_Boolean_" data-uid="Terminal.Application.RunLoop(Terminal.Application.RunState,System.Boolean)">RunLoop(Application+RunState, Boolean)</h4>
  463. <div class="markdown level1 summary"><p>Runs the main loop for the created dialog</p>
  464. </div>
  465. <div class="markdown level1 conceptual"></div>
  466. <h5 class="decalaration">Declaration</h5>
  467. <div class="codewrapper">
  468. <pre><code class="lang-csharp hljs">public static void RunLoop (Terminal.Application.RunState state, bool wait = true);</code></pre>
  469. </div>
  470. <h5 class="parameters">Parameters</h5>
  471. <table class="table table-bordered table-striped table-condensed">
  472. <thead>
  473. <tr>
  474. <th>Type</th>
  475. <th>Name</th>
  476. <th>Description</th>
  477. </tr>
  478. </thead>
  479. <tbody>
  480. <tr>
  481. <td></td>
  482. <td><span class="parametername">state</span></td>
  483. <td><p>To be added.</p>
  484. </td>
  485. </tr>
  486. <tr>
  487. <td><span class="xref">System.Boolean</span></td>
  488. <td><span class="parametername">wait</span></td>
  489. <td><p>To be added.</p>
  490. </td>
  491. </tr>
  492. </tbody>
  493. </table>
  494. <h5 id="Terminal_Application_RunLoop_Terminal_Application_RunState_System_Boolean__remarks">Remarks</h5>
  495. <div class="markdown level1 remarks"><p>Use the wait parameter to control whether this is a
  496. blocking or non-blocking call.</p>
  497. </div>
  498. <a id="Terminal_Application_UngrabMouse_" data-uid="Terminal.Application.UngrabMouse*"></a>
  499. <h4 id="Terminal_Application_UngrabMouse" data-uid="Terminal.Application.UngrabMouse">UngrabMouse()</h4>
  500. <div class="markdown level1 summary"><p>Releases the mouse grab, so mouse events will be routed to the view on which the mouse is.</p>
  501. </div>
  502. <div class="markdown level1 conceptual"></div>
  503. <h5 class="decalaration">Declaration</h5>
  504. <div class="codewrapper">
  505. <pre><code class="lang-csharp hljs">public static void UngrabMouse ();</code></pre>
  506. </div>
  507. <h3 id="events">Events
  508. </h3>
  509. <h4 id="Terminal_Application_Iteration" data-uid="Terminal.Application.Iteration">Iteration</h4>
  510. <div class="markdown level1 summary"><p>This event is raised on each iteration of the
  511. main loop.</p>
  512. </div>
  513. <div class="markdown level1 conceptual"></div>
  514. <h5 class="decalaration">Declaration</h5>
  515. <div class="codewrapper">
  516. <pre><code class="lang-csharp hljs">public static event EventHandler Iteration;</code></pre>
  517. </div>
  518. <h5 class="eventType">Event Type</h5>
  519. <table class="table table-bordered table-striped table-condensed">
  520. <thead>
  521. <tr>
  522. <th>Type</th>
  523. <th>Description</th>
  524. </tr>
  525. </thead>
  526. <tbody>
  527. <tr>
  528. <td><span class="xref">System.EventHandler</span></td>
  529. <td><p>To be added.</p>
  530. </td>
  531. </tr>
  532. </tbody>
  533. </table>
  534. <h5 id="Terminal_Application_Iteration_remarks">Remarks</h5>
  535. <div class="markdown level1 remarks"><p>See also <span class="xref">System.Threading.Timeout</span></p>
  536. </div>
  537. </article>
  538. </div>
  539. <div class="hidden-sm col-md-2" role="complementary">
  540. <div class="sideaffix">
  541. <div class="contribution">
  542. <ul class="nav">
  543. </ul>
  544. </div>
  545. <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
  546. <!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
  547. </nav>
  548. </div>
  549. </div>
  550. </div>
  551. </div>
  552. <footer>
  553. <div class="grad-bottom"></div>
  554. <div class="footer">
  555. <div class="container">
  556. <span class="pull-right">
  557. <a href="#top">Back to top</a>
  558. </span>
  559. <span>Copyright © 2015-2017 Microsoft<br>Generated by <strong>DocFX</strong></span>
  560. </div>
  561. </div>
  562. </footer>
  563. </div>
  564. <script type="text/javascript" src="../../styles/docfx.vendor.js"></script>
  565. <script type="text/javascript" src="../../styles/docfx.js"></script>
  566. <script type="text/javascript" src="../../styles/main.js"></script>
  567. </body>
  568. </html>