Terminal.Gui.Key.yml 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  1. ### YamlMime:ManagedReference
  2. items:
  3. - uid: Terminal.Gui.Key
  4. commentId: T:Terminal.Gui.Key
  5. id: Key
  6. parent: Terminal.Gui
  7. children:
  8. - Terminal.Gui.Key.AltMask
  9. - Terminal.Gui.Key.Backspace
  10. - Terminal.Gui.Key.BackTab
  11. - Terminal.Gui.Key.CharMask
  12. - Terminal.Gui.Key.ControlA
  13. - Terminal.Gui.Key.ControlB
  14. - Terminal.Gui.Key.ControlC
  15. - Terminal.Gui.Key.ControlD
  16. - Terminal.Gui.Key.ControlE
  17. - Terminal.Gui.Key.ControlF
  18. - Terminal.Gui.Key.ControlG
  19. - Terminal.Gui.Key.ControlH
  20. - Terminal.Gui.Key.ControlI
  21. - Terminal.Gui.Key.ControlJ
  22. - Terminal.Gui.Key.ControlK
  23. - Terminal.Gui.Key.ControlL
  24. - Terminal.Gui.Key.ControlM
  25. - Terminal.Gui.Key.ControlN
  26. - Terminal.Gui.Key.ControlO
  27. - Terminal.Gui.Key.ControlP
  28. - Terminal.Gui.Key.ControlQ
  29. - Terminal.Gui.Key.ControlR
  30. - Terminal.Gui.Key.ControlS
  31. - Terminal.Gui.Key.ControlSpace
  32. - Terminal.Gui.Key.ControlT
  33. - Terminal.Gui.Key.ControlU
  34. - Terminal.Gui.Key.ControlV
  35. - Terminal.Gui.Key.ControlW
  36. - Terminal.Gui.Key.ControlX
  37. - Terminal.Gui.Key.ControlY
  38. - Terminal.Gui.Key.ControlZ
  39. - Terminal.Gui.Key.CtrlMask
  40. - Terminal.Gui.Key.CursorDown
  41. - Terminal.Gui.Key.CursorLeft
  42. - Terminal.Gui.Key.CursorRight
  43. - Terminal.Gui.Key.CursorUp
  44. - Terminal.Gui.Key.Delete
  45. - Terminal.Gui.Key.DeleteChar
  46. - Terminal.Gui.Key.End
  47. - Terminal.Gui.Key.Enter
  48. - Terminal.Gui.Key.Esc
  49. - Terminal.Gui.Key.F1
  50. - Terminal.Gui.Key.F10
  51. - Terminal.Gui.Key.F2
  52. - Terminal.Gui.Key.F3
  53. - Terminal.Gui.Key.F4
  54. - Terminal.Gui.Key.F5
  55. - Terminal.Gui.Key.F6
  56. - Terminal.Gui.Key.F7
  57. - Terminal.Gui.Key.F8
  58. - Terminal.Gui.Key.F9
  59. - Terminal.Gui.Key.Home
  60. - Terminal.Gui.Key.InsertChar
  61. - Terminal.Gui.Key.PageDown
  62. - Terminal.Gui.Key.PageUp
  63. - Terminal.Gui.Key.ShiftMask
  64. - Terminal.Gui.Key.Space
  65. - Terminal.Gui.Key.SpecialMask
  66. - Terminal.Gui.Key.Tab
  67. - Terminal.Gui.Key.Unknown
  68. langs:
  69. - csharp
  70. - vb
  71. name: Key
  72. nameWithType: Key
  73. fullName: Terminal.Gui.Key
  74. type: Enum
  75. source:
  76. remote:
  77. path: Terminal.Gui/Event.cs
  78. branch: docs_tweaks
  79. repo: tig:tig/gui.cs.git
  80. id: Key
  81. path: ../Terminal.Gui/Event.cs
  82. startLine: 26
  83. assemblies:
  84. - Terminal.Gui
  85. namespace: Terminal.Gui
  86. summary: "\nThe <xref href=\"Terminal.Gui.Key\" data-throw-if-not-resolved=\"false\"></xref> enumeration contains special encoding for some keys, but can also\nencode all the unicode values that can be passed. \n"
  87. remarks: "\n<p>\n If the SpecialMask is set, then the value is that of the special mask,\n otherwise, the value is the one of the lower bits (as extracted by CharMask)\n</p>\n<p>\n Control keys are the values between 1 and 26 corresponding to Control-A to Control-Z\n</p>\n<p>\n Unicode runes are also stored here, the letter &apos;A&quot; for example is encoded as a value 65 (not surfaced in the enum).\n</p>\n"
  88. example: []
  89. syntax:
  90. content: >-
  91. [Flags]
  92. public enum Key : uint
  93. content.vb: >-
  94. <Flags>
  95. Public Enum Key As UInteger
  96. attributes:
  97. - type: System.FlagsAttribute
  98. ctor: System.FlagsAttribute.#ctor
  99. arguments: []
  100. modifiers.csharp:
  101. - public
  102. - enum
  103. modifiers.vb:
  104. - Public
  105. - Enum
  106. - uid: Terminal.Gui.Key.CharMask
  107. commentId: F:Terminal.Gui.Key.CharMask
  108. id: CharMask
  109. parent: Terminal.Gui.Key
  110. langs:
  111. - csharp
  112. - vb
  113. name: CharMask
  114. nameWithType: Key.CharMask
  115. fullName: Terminal.Gui.Key.CharMask
  116. type: Field
  117. source:
  118. remote:
  119. path: Terminal.Gui/Event.cs
  120. branch: docs_tweaks
  121. repo: tig:tig/gui.cs.git
  122. id: CharMask
  123. path: ../Terminal.Gui/Event.cs
  124. startLine: 33
  125. assemblies:
  126. - Terminal.Gui
  127. namespace: Terminal.Gui
  128. summary: "\nMask that indicates that this is a character value, values outside this range\nindicate special characters like Alt-key combinations or special keys on the\nkeyboard like function keys, arrows keys and so on.\n"
  129. example: []
  130. syntax:
  131. content: CharMask = 1048575U
  132. return:
  133. type: Terminal.Gui.Key
  134. content.vb: CharMask = 1048575UI
  135. modifiers.csharp:
  136. - public
  137. - const
  138. modifiers.vb:
  139. - Public
  140. - Const
  141. - uid: Terminal.Gui.Key.SpecialMask
  142. commentId: F:Terminal.Gui.Key.SpecialMask
  143. id: SpecialMask
  144. parent: Terminal.Gui.Key
  145. langs:
  146. - csharp
  147. - vb
  148. name: SpecialMask
  149. nameWithType: Key.SpecialMask
  150. fullName: Terminal.Gui.Key.SpecialMask
  151. type: Field
  152. source:
  153. remote:
  154. path: Terminal.Gui/Event.cs
  155. branch: docs_tweaks
  156. repo: tig:tig/gui.cs.git
  157. id: SpecialMask
  158. path: ../Terminal.Gui/Event.cs
  159. startLine: 39
  160. assemblies:
  161. - Terminal.Gui
  162. namespace: Terminal.Gui
  163. summary: "\nIf the SpecialMask is set, then the value is that of the special mask,\notherwise, the value is the one of the lower bits (as extracted by CharMask).\n"
  164. example: []
  165. syntax:
  166. content: SpecialMask = 4293918720U
  167. return:
  168. type: Terminal.Gui.Key
  169. content.vb: SpecialMask = 4293918720UI
  170. modifiers.csharp:
  171. - public
  172. - const
  173. modifiers.vb:
  174. - Public
  175. - Const
  176. - uid: Terminal.Gui.Key.ControlSpace
  177. commentId: F:Terminal.Gui.Key.ControlSpace
  178. id: ControlSpace
  179. parent: Terminal.Gui.Key
  180. langs:
  181. - csharp
  182. - vb
  183. name: ControlSpace
  184. nameWithType: Key.ControlSpace
  185. fullName: Terminal.Gui.Key.ControlSpace
  186. type: Field
  187. source:
  188. remote:
  189. path: Terminal.Gui/Event.cs
  190. branch: docs_tweaks
  191. repo: tig:tig/gui.cs.git
  192. id: ControlSpace
  193. path: ../Terminal.Gui/Event.cs
  194. startLine: 44
  195. assemblies:
  196. - Terminal.Gui
  197. namespace: Terminal.Gui
  198. summary: "\nThe key code for the user pressing Control-spacebar\n"
  199. example: []
  200. syntax:
  201. content: ControlSpace = 0U
  202. return:
  203. type: Terminal.Gui.Key
  204. content.vb: ControlSpace = 0UI
  205. modifiers.csharp:
  206. - public
  207. - const
  208. modifiers.vb:
  209. - Public
  210. - Const
  211. - uid: Terminal.Gui.Key.ControlA
  212. commentId: F:Terminal.Gui.Key.ControlA
  213. id: ControlA
  214. parent: Terminal.Gui.Key
  215. langs:
  216. - csharp
  217. - vb
  218. name: ControlA
  219. nameWithType: Key.ControlA
  220. fullName: Terminal.Gui.Key.ControlA
  221. type: Field
  222. source:
  223. remote:
  224. path: Terminal.Gui/Event.cs
  225. branch: docs_tweaks
  226. repo: tig:tig/gui.cs.git
  227. id: ControlA
  228. path: ../Terminal.Gui/Event.cs
  229. startLine: 49
  230. assemblies:
  231. - Terminal.Gui
  232. namespace: Terminal.Gui
  233. summary: "\nThe key code for the user pressing Control-A\n"
  234. example: []
  235. syntax:
  236. content: ControlA = 1U
  237. return:
  238. type: Terminal.Gui.Key
  239. content.vb: ControlA = 1UI
  240. modifiers.csharp:
  241. - public
  242. - const
  243. modifiers.vb:
  244. - Public
  245. - Const
  246. - uid: Terminal.Gui.Key.ControlB
  247. commentId: F:Terminal.Gui.Key.ControlB
  248. id: ControlB
  249. parent: Terminal.Gui.Key
  250. langs:
  251. - csharp
  252. - vb
  253. name: ControlB
  254. nameWithType: Key.ControlB
  255. fullName: Terminal.Gui.Key.ControlB
  256. type: Field
  257. source:
  258. remote:
  259. path: Terminal.Gui/Event.cs
  260. branch: docs_tweaks
  261. repo: tig:tig/gui.cs.git
  262. id: ControlB
  263. path: ../Terminal.Gui/Event.cs
  264. startLine: 53
  265. assemblies:
  266. - Terminal.Gui
  267. namespace: Terminal.Gui
  268. summary: "\nThe key code for the user pressing Control-B\n"
  269. example: []
  270. syntax:
  271. content: ControlB = 2U
  272. return:
  273. type: Terminal.Gui.Key
  274. content.vb: ControlB = 2UI
  275. modifiers.csharp:
  276. - public
  277. - const
  278. modifiers.vb:
  279. - Public
  280. - Const
  281. - uid: Terminal.Gui.Key.ControlC
  282. commentId: F:Terminal.Gui.Key.ControlC
  283. id: ControlC
  284. parent: Terminal.Gui.Key
  285. langs:
  286. - csharp
  287. - vb
  288. name: ControlC
  289. nameWithType: Key.ControlC
  290. fullName: Terminal.Gui.Key.ControlC
  291. type: Field
  292. source:
  293. remote:
  294. path: Terminal.Gui/Event.cs
  295. branch: docs_tweaks
  296. repo: tig:tig/gui.cs.git
  297. id: ControlC
  298. path: ../Terminal.Gui/Event.cs
  299. startLine: 57
  300. assemblies:
  301. - Terminal.Gui
  302. namespace: Terminal.Gui
  303. summary: "\nThe key code for the user pressing Control-C\n"
  304. example: []
  305. syntax:
  306. content: ControlC = 3U
  307. return:
  308. type: Terminal.Gui.Key
  309. content.vb: ControlC = 3UI
  310. modifiers.csharp:
  311. - public
  312. - const
  313. modifiers.vb:
  314. - Public
  315. - Const
  316. - uid: Terminal.Gui.Key.ControlD
  317. commentId: F:Terminal.Gui.Key.ControlD
  318. id: ControlD
  319. parent: Terminal.Gui.Key
  320. langs:
  321. - csharp
  322. - vb
  323. name: ControlD
  324. nameWithType: Key.ControlD
  325. fullName: Terminal.Gui.Key.ControlD
  326. type: Field
  327. source:
  328. remote:
  329. path: Terminal.Gui/Event.cs
  330. branch: docs_tweaks
  331. repo: tig:tig/gui.cs.git
  332. id: ControlD
  333. path: ../Terminal.Gui/Event.cs
  334. startLine: 61
  335. assemblies:
  336. - Terminal.Gui
  337. namespace: Terminal.Gui
  338. summary: "\nThe key code for the user pressing Control-D\n"
  339. example: []
  340. syntax:
  341. content: ControlD = 4U
  342. return:
  343. type: Terminal.Gui.Key
  344. content.vb: ControlD = 4UI
  345. modifiers.csharp:
  346. - public
  347. - const
  348. modifiers.vb:
  349. - Public
  350. - Const
  351. - uid: Terminal.Gui.Key.ControlE
  352. commentId: F:Terminal.Gui.Key.ControlE
  353. id: ControlE
  354. parent: Terminal.Gui.Key
  355. langs:
  356. - csharp
  357. - vb
  358. name: ControlE
  359. nameWithType: Key.ControlE
  360. fullName: Terminal.Gui.Key.ControlE
  361. type: Field
  362. source:
  363. remote:
  364. path: Terminal.Gui/Event.cs
  365. branch: docs_tweaks
  366. repo: tig:tig/gui.cs.git
  367. id: ControlE
  368. path: ../Terminal.Gui/Event.cs
  369. startLine: 65
  370. assemblies:
  371. - Terminal.Gui
  372. namespace: Terminal.Gui
  373. summary: "\nThe key code for the user pressing Control-E\n"
  374. example: []
  375. syntax:
  376. content: ControlE = 5U
  377. return:
  378. type: Terminal.Gui.Key
  379. content.vb: ControlE = 5UI
  380. modifiers.csharp:
  381. - public
  382. - const
  383. modifiers.vb:
  384. - Public
  385. - Const
  386. - uid: Terminal.Gui.Key.ControlF
  387. commentId: F:Terminal.Gui.Key.ControlF
  388. id: ControlF
  389. parent: Terminal.Gui.Key
  390. langs:
  391. - csharp
  392. - vb
  393. name: ControlF
  394. nameWithType: Key.ControlF
  395. fullName: Terminal.Gui.Key.ControlF
  396. type: Field
  397. source:
  398. remote:
  399. path: Terminal.Gui/Event.cs
  400. branch: docs_tweaks
  401. repo: tig:tig/gui.cs.git
  402. id: ControlF
  403. path: ../Terminal.Gui/Event.cs
  404. startLine: 69
  405. assemblies:
  406. - Terminal.Gui
  407. namespace: Terminal.Gui
  408. summary: "\nThe key code for the user pressing Control-F\n"
  409. example: []
  410. syntax:
  411. content: ControlF = 6U
  412. return:
  413. type: Terminal.Gui.Key
  414. content.vb: ControlF = 6UI
  415. modifiers.csharp:
  416. - public
  417. - const
  418. modifiers.vb:
  419. - Public
  420. - Const
  421. - uid: Terminal.Gui.Key.ControlG
  422. commentId: F:Terminal.Gui.Key.ControlG
  423. id: ControlG
  424. parent: Terminal.Gui.Key
  425. langs:
  426. - csharp
  427. - vb
  428. name: ControlG
  429. nameWithType: Key.ControlG
  430. fullName: Terminal.Gui.Key.ControlG
  431. type: Field
  432. source:
  433. remote:
  434. path: Terminal.Gui/Event.cs
  435. branch: docs_tweaks
  436. repo: tig:tig/gui.cs.git
  437. id: ControlG
  438. path: ../Terminal.Gui/Event.cs
  439. startLine: 73
  440. assemblies:
  441. - Terminal.Gui
  442. namespace: Terminal.Gui
  443. summary: "\nThe key code for the user pressing Control-G\n"
  444. example: []
  445. syntax:
  446. content: ControlG = 7U
  447. return:
  448. type: Terminal.Gui.Key
  449. content.vb: ControlG = 7UI
  450. modifiers.csharp:
  451. - public
  452. - const
  453. modifiers.vb:
  454. - Public
  455. - Const
  456. - uid: Terminal.Gui.Key.ControlH
  457. commentId: F:Terminal.Gui.Key.ControlH
  458. id: ControlH
  459. parent: Terminal.Gui.Key
  460. langs:
  461. - csharp
  462. - vb
  463. name: ControlH
  464. nameWithType: Key.ControlH
  465. fullName: Terminal.Gui.Key.ControlH
  466. type: Field
  467. source:
  468. remote:
  469. path: Terminal.Gui/Event.cs
  470. branch: docs_tweaks
  471. repo: tig:tig/gui.cs.git
  472. id: ControlH
  473. path: ../Terminal.Gui/Event.cs
  474. startLine: 77
  475. assemblies:
  476. - Terminal.Gui
  477. namespace: Terminal.Gui
  478. summary: "\nThe key code for the user pressing Control-H\n"
  479. example: []
  480. syntax:
  481. content: ControlH = 8U
  482. return:
  483. type: Terminal.Gui.Key
  484. content.vb: ControlH = 8UI
  485. modifiers.csharp:
  486. - public
  487. - const
  488. modifiers.vb:
  489. - Public
  490. - Const
  491. - uid: Terminal.Gui.Key.ControlI
  492. commentId: F:Terminal.Gui.Key.ControlI
  493. id: ControlI
  494. parent: Terminal.Gui.Key
  495. langs:
  496. - csharp
  497. - vb
  498. name: ControlI
  499. nameWithType: Key.ControlI
  500. fullName: Terminal.Gui.Key.ControlI
  501. type: Field
  502. source:
  503. remote:
  504. path: Terminal.Gui/Event.cs
  505. branch: docs_tweaks
  506. repo: tig:tig/gui.cs.git
  507. id: ControlI
  508. path: ../Terminal.Gui/Event.cs
  509. startLine: 81
  510. assemblies:
  511. - Terminal.Gui
  512. namespace: Terminal.Gui
  513. summary: "\nThe key code for the user pressing Control-I (same as the tab key).\n"
  514. example: []
  515. syntax:
  516. content: ControlI = 9U
  517. return:
  518. type: Terminal.Gui.Key
  519. content.vb: ControlI = 9UI
  520. modifiers.csharp:
  521. - public
  522. - const
  523. modifiers.vb:
  524. - Public
  525. - Const
  526. - uid: Terminal.Gui.Key.ControlJ
  527. commentId: F:Terminal.Gui.Key.ControlJ
  528. id: ControlJ
  529. parent: Terminal.Gui.Key
  530. langs:
  531. - csharp
  532. - vb
  533. name: ControlJ
  534. nameWithType: Key.ControlJ
  535. fullName: Terminal.Gui.Key.ControlJ
  536. type: Field
  537. source:
  538. remote:
  539. path: Terminal.Gui/Event.cs
  540. branch: docs_tweaks
  541. repo: tig:tig/gui.cs.git
  542. id: ControlJ
  543. path: ../Terminal.Gui/Event.cs
  544. startLine: 85
  545. assemblies:
  546. - Terminal.Gui
  547. namespace: Terminal.Gui
  548. summary: "\nThe key code for the user pressing Control-J\n"
  549. example: []
  550. syntax:
  551. content: ControlJ = 10U
  552. return:
  553. type: Terminal.Gui.Key
  554. content.vb: ControlJ = 10UI
  555. modifiers.csharp:
  556. - public
  557. - const
  558. modifiers.vb:
  559. - Public
  560. - Const
  561. - uid: Terminal.Gui.Key.ControlK
  562. commentId: F:Terminal.Gui.Key.ControlK
  563. id: ControlK
  564. parent: Terminal.Gui.Key
  565. langs:
  566. - csharp
  567. - vb
  568. name: ControlK
  569. nameWithType: Key.ControlK
  570. fullName: Terminal.Gui.Key.ControlK
  571. type: Field
  572. source:
  573. remote:
  574. path: Terminal.Gui/Event.cs
  575. branch: docs_tweaks
  576. repo: tig:tig/gui.cs.git
  577. id: ControlK
  578. path: ../Terminal.Gui/Event.cs
  579. startLine: 89
  580. assemblies:
  581. - Terminal.Gui
  582. namespace: Terminal.Gui
  583. summary: "\nThe key code for the user pressing Control-K\n"
  584. example: []
  585. syntax:
  586. content: ControlK = 11U
  587. return:
  588. type: Terminal.Gui.Key
  589. content.vb: ControlK = 11UI
  590. modifiers.csharp:
  591. - public
  592. - const
  593. modifiers.vb:
  594. - Public
  595. - Const
  596. - uid: Terminal.Gui.Key.ControlL
  597. commentId: F:Terminal.Gui.Key.ControlL
  598. id: ControlL
  599. parent: Terminal.Gui.Key
  600. langs:
  601. - csharp
  602. - vb
  603. name: ControlL
  604. nameWithType: Key.ControlL
  605. fullName: Terminal.Gui.Key.ControlL
  606. type: Field
  607. source:
  608. remote:
  609. path: Terminal.Gui/Event.cs
  610. branch: docs_tweaks
  611. repo: tig:tig/gui.cs.git
  612. id: ControlL
  613. path: ../Terminal.Gui/Event.cs
  614. startLine: 93
  615. assemblies:
  616. - Terminal.Gui
  617. namespace: Terminal.Gui
  618. summary: "\nThe key code for the user pressing Control-L\n"
  619. example: []
  620. syntax:
  621. content: ControlL = 12U
  622. return:
  623. type: Terminal.Gui.Key
  624. content.vb: ControlL = 12UI
  625. modifiers.csharp:
  626. - public
  627. - const
  628. modifiers.vb:
  629. - Public
  630. - Const
  631. - uid: Terminal.Gui.Key.ControlM
  632. commentId: F:Terminal.Gui.Key.ControlM
  633. id: ControlM
  634. parent: Terminal.Gui.Key
  635. langs:
  636. - csharp
  637. - vb
  638. name: ControlM
  639. nameWithType: Key.ControlM
  640. fullName: Terminal.Gui.Key.ControlM
  641. type: Field
  642. source:
  643. remote:
  644. path: Terminal.Gui/Event.cs
  645. branch: docs_tweaks
  646. repo: tig:tig/gui.cs.git
  647. id: ControlM
  648. path: ../Terminal.Gui/Event.cs
  649. startLine: 97
  650. assemblies:
  651. - Terminal.Gui
  652. namespace: Terminal.Gui
  653. summary: "\nThe key code for the user pressing Control-M\n"
  654. example: []
  655. syntax:
  656. content: ControlM = 13U
  657. return:
  658. type: Terminal.Gui.Key
  659. content.vb: ControlM = 13UI
  660. modifiers.csharp:
  661. - public
  662. - const
  663. modifiers.vb:
  664. - Public
  665. - Const
  666. - uid: Terminal.Gui.Key.ControlN
  667. commentId: F:Terminal.Gui.Key.ControlN
  668. id: ControlN
  669. parent: Terminal.Gui.Key
  670. langs:
  671. - csharp
  672. - vb
  673. name: ControlN
  674. nameWithType: Key.ControlN
  675. fullName: Terminal.Gui.Key.ControlN
  676. type: Field
  677. source:
  678. remote:
  679. path: Terminal.Gui/Event.cs
  680. branch: docs_tweaks
  681. repo: tig:tig/gui.cs.git
  682. id: ControlN
  683. path: ../Terminal.Gui/Event.cs
  684. startLine: 101
  685. assemblies:
  686. - Terminal.Gui
  687. namespace: Terminal.Gui
  688. summary: "\nThe key code for the user pressing Control-N (same as the return key).\n"
  689. example: []
  690. syntax:
  691. content: ControlN = 14U
  692. return:
  693. type: Terminal.Gui.Key
  694. content.vb: ControlN = 14UI
  695. modifiers.csharp:
  696. - public
  697. - const
  698. modifiers.vb:
  699. - Public
  700. - Const
  701. - uid: Terminal.Gui.Key.ControlO
  702. commentId: F:Terminal.Gui.Key.ControlO
  703. id: ControlO
  704. parent: Terminal.Gui.Key
  705. langs:
  706. - csharp
  707. - vb
  708. name: ControlO
  709. nameWithType: Key.ControlO
  710. fullName: Terminal.Gui.Key.ControlO
  711. type: Field
  712. source:
  713. remote:
  714. path: Terminal.Gui/Event.cs
  715. branch: docs_tweaks
  716. repo: tig:tig/gui.cs.git
  717. id: ControlO
  718. path: ../Terminal.Gui/Event.cs
  719. startLine: 105
  720. assemblies:
  721. - Terminal.Gui
  722. namespace: Terminal.Gui
  723. summary: "\nThe key code for the user pressing Control-O\n"
  724. example: []
  725. syntax:
  726. content: ControlO = 15U
  727. return:
  728. type: Terminal.Gui.Key
  729. content.vb: ControlO = 15UI
  730. modifiers.csharp:
  731. - public
  732. - const
  733. modifiers.vb:
  734. - Public
  735. - Const
  736. - uid: Terminal.Gui.Key.ControlP
  737. commentId: F:Terminal.Gui.Key.ControlP
  738. id: ControlP
  739. parent: Terminal.Gui.Key
  740. langs:
  741. - csharp
  742. - vb
  743. name: ControlP
  744. nameWithType: Key.ControlP
  745. fullName: Terminal.Gui.Key.ControlP
  746. type: Field
  747. source:
  748. remote:
  749. path: Terminal.Gui/Event.cs
  750. branch: docs_tweaks
  751. repo: tig:tig/gui.cs.git
  752. id: ControlP
  753. path: ../Terminal.Gui/Event.cs
  754. startLine: 109
  755. assemblies:
  756. - Terminal.Gui
  757. namespace: Terminal.Gui
  758. summary: "\nThe key code for the user pressing Control-P\n"
  759. example: []
  760. syntax:
  761. content: ControlP = 16U
  762. return:
  763. type: Terminal.Gui.Key
  764. content.vb: ControlP = 16UI
  765. modifiers.csharp:
  766. - public
  767. - const
  768. modifiers.vb:
  769. - Public
  770. - Const
  771. - uid: Terminal.Gui.Key.ControlQ
  772. commentId: F:Terminal.Gui.Key.ControlQ
  773. id: ControlQ
  774. parent: Terminal.Gui.Key
  775. langs:
  776. - csharp
  777. - vb
  778. name: ControlQ
  779. nameWithType: Key.ControlQ
  780. fullName: Terminal.Gui.Key.ControlQ
  781. type: Field
  782. source:
  783. remote:
  784. path: Terminal.Gui/Event.cs
  785. branch: docs_tweaks
  786. repo: tig:tig/gui.cs.git
  787. id: ControlQ
  788. path: ../Terminal.Gui/Event.cs
  789. startLine: 113
  790. assemblies:
  791. - Terminal.Gui
  792. namespace: Terminal.Gui
  793. summary: "\nThe key code for the user pressing Control-Q\n"
  794. example: []
  795. syntax:
  796. content: ControlQ = 17U
  797. return:
  798. type: Terminal.Gui.Key
  799. content.vb: ControlQ = 17UI
  800. modifiers.csharp:
  801. - public
  802. - const
  803. modifiers.vb:
  804. - Public
  805. - Const
  806. - uid: Terminal.Gui.Key.ControlR
  807. commentId: F:Terminal.Gui.Key.ControlR
  808. id: ControlR
  809. parent: Terminal.Gui.Key
  810. langs:
  811. - csharp
  812. - vb
  813. name: ControlR
  814. nameWithType: Key.ControlR
  815. fullName: Terminal.Gui.Key.ControlR
  816. type: Field
  817. source:
  818. remote:
  819. path: Terminal.Gui/Event.cs
  820. branch: docs_tweaks
  821. repo: tig:tig/gui.cs.git
  822. id: ControlR
  823. path: ../Terminal.Gui/Event.cs
  824. startLine: 117
  825. assemblies:
  826. - Terminal.Gui
  827. namespace: Terminal.Gui
  828. summary: "\nThe key code for the user pressing Control-R\n"
  829. example: []
  830. syntax:
  831. content: ControlR = 18U
  832. return:
  833. type: Terminal.Gui.Key
  834. content.vb: ControlR = 18UI
  835. modifiers.csharp:
  836. - public
  837. - const
  838. modifiers.vb:
  839. - Public
  840. - Const
  841. - uid: Terminal.Gui.Key.ControlS
  842. commentId: F:Terminal.Gui.Key.ControlS
  843. id: ControlS
  844. parent: Terminal.Gui.Key
  845. langs:
  846. - csharp
  847. - vb
  848. name: ControlS
  849. nameWithType: Key.ControlS
  850. fullName: Terminal.Gui.Key.ControlS
  851. type: Field
  852. source:
  853. remote:
  854. path: Terminal.Gui/Event.cs
  855. branch: docs_tweaks
  856. repo: tig:tig/gui.cs.git
  857. id: ControlS
  858. path: ../Terminal.Gui/Event.cs
  859. startLine: 121
  860. assemblies:
  861. - Terminal.Gui
  862. namespace: Terminal.Gui
  863. summary: "\nThe key code for the user pressing Control-S\n"
  864. example: []
  865. syntax:
  866. content: ControlS = 19U
  867. return:
  868. type: Terminal.Gui.Key
  869. content.vb: ControlS = 19UI
  870. modifiers.csharp:
  871. - public
  872. - const
  873. modifiers.vb:
  874. - Public
  875. - Const
  876. - uid: Terminal.Gui.Key.ControlT
  877. commentId: F:Terminal.Gui.Key.ControlT
  878. id: ControlT
  879. parent: Terminal.Gui.Key
  880. langs:
  881. - csharp
  882. - vb
  883. name: ControlT
  884. nameWithType: Key.ControlT
  885. fullName: Terminal.Gui.Key.ControlT
  886. type: Field
  887. source:
  888. remote:
  889. path: Terminal.Gui/Event.cs
  890. branch: docs_tweaks
  891. repo: tig:tig/gui.cs.git
  892. id: ControlT
  893. path: ../Terminal.Gui/Event.cs
  894. startLine: 125
  895. assemblies:
  896. - Terminal.Gui
  897. namespace: Terminal.Gui
  898. summary: "\nThe key code for the user pressing Control-T\n"
  899. example: []
  900. syntax:
  901. content: ControlT = 20U
  902. return:
  903. type: Terminal.Gui.Key
  904. content.vb: ControlT = 20UI
  905. modifiers.csharp:
  906. - public
  907. - const
  908. modifiers.vb:
  909. - Public
  910. - Const
  911. - uid: Terminal.Gui.Key.ControlU
  912. commentId: F:Terminal.Gui.Key.ControlU
  913. id: ControlU
  914. parent: Terminal.Gui.Key
  915. langs:
  916. - csharp
  917. - vb
  918. name: ControlU
  919. nameWithType: Key.ControlU
  920. fullName: Terminal.Gui.Key.ControlU
  921. type: Field
  922. source:
  923. remote:
  924. path: Terminal.Gui/Event.cs
  925. branch: docs_tweaks
  926. repo: tig:tig/gui.cs.git
  927. id: ControlU
  928. path: ../Terminal.Gui/Event.cs
  929. startLine: 129
  930. assemblies:
  931. - Terminal.Gui
  932. namespace: Terminal.Gui
  933. summary: "\nThe key code for the user pressing Control-U\n"
  934. example: []
  935. syntax:
  936. content: ControlU = 21U
  937. return:
  938. type: Terminal.Gui.Key
  939. content.vb: ControlU = 21UI
  940. modifiers.csharp:
  941. - public
  942. - const
  943. modifiers.vb:
  944. - Public
  945. - Const
  946. - uid: Terminal.Gui.Key.ControlV
  947. commentId: F:Terminal.Gui.Key.ControlV
  948. id: ControlV
  949. parent: Terminal.Gui.Key
  950. langs:
  951. - csharp
  952. - vb
  953. name: ControlV
  954. nameWithType: Key.ControlV
  955. fullName: Terminal.Gui.Key.ControlV
  956. type: Field
  957. source:
  958. remote:
  959. path: Terminal.Gui/Event.cs
  960. branch: docs_tweaks
  961. repo: tig:tig/gui.cs.git
  962. id: ControlV
  963. path: ../Terminal.Gui/Event.cs
  964. startLine: 133
  965. assemblies:
  966. - Terminal.Gui
  967. namespace: Terminal.Gui
  968. summary: "\nThe key code for the user pressing Control-V\n"
  969. example: []
  970. syntax:
  971. content: ControlV = 22U
  972. return:
  973. type: Terminal.Gui.Key
  974. content.vb: ControlV = 22UI
  975. modifiers.csharp:
  976. - public
  977. - const
  978. modifiers.vb:
  979. - Public
  980. - Const
  981. - uid: Terminal.Gui.Key.ControlW
  982. commentId: F:Terminal.Gui.Key.ControlW
  983. id: ControlW
  984. parent: Terminal.Gui.Key
  985. langs:
  986. - csharp
  987. - vb
  988. name: ControlW
  989. nameWithType: Key.ControlW
  990. fullName: Terminal.Gui.Key.ControlW
  991. type: Field
  992. source:
  993. remote:
  994. path: Terminal.Gui/Event.cs
  995. branch: docs_tweaks
  996. repo: tig:tig/gui.cs.git
  997. id: ControlW
  998. path: ../Terminal.Gui/Event.cs
  999. startLine: 137
  1000. assemblies:
  1001. - Terminal.Gui
  1002. namespace: Terminal.Gui
  1003. summary: "\nThe key code for the user pressing Control-W\n"
  1004. example: []
  1005. syntax:
  1006. content: ControlW = 23U
  1007. return:
  1008. type: Terminal.Gui.Key
  1009. content.vb: ControlW = 23UI
  1010. modifiers.csharp:
  1011. - public
  1012. - const
  1013. modifiers.vb:
  1014. - Public
  1015. - Const
  1016. - uid: Terminal.Gui.Key.ControlX
  1017. commentId: F:Terminal.Gui.Key.ControlX
  1018. id: ControlX
  1019. parent: Terminal.Gui.Key
  1020. langs:
  1021. - csharp
  1022. - vb
  1023. name: ControlX
  1024. nameWithType: Key.ControlX
  1025. fullName: Terminal.Gui.Key.ControlX
  1026. type: Field
  1027. source:
  1028. remote:
  1029. path: Terminal.Gui/Event.cs
  1030. branch: docs_tweaks
  1031. repo: tig:tig/gui.cs.git
  1032. id: ControlX
  1033. path: ../Terminal.Gui/Event.cs
  1034. startLine: 141
  1035. assemblies:
  1036. - Terminal.Gui
  1037. namespace: Terminal.Gui
  1038. summary: "\nThe key code for the user pressing Control-X\n"
  1039. example: []
  1040. syntax:
  1041. content: ControlX = 24U
  1042. return:
  1043. type: Terminal.Gui.Key
  1044. content.vb: ControlX = 24UI
  1045. modifiers.csharp:
  1046. - public
  1047. - const
  1048. modifiers.vb:
  1049. - Public
  1050. - Const
  1051. - uid: Terminal.Gui.Key.ControlY
  1052. commentId: F:Terminal.Gui.Key.ControlY
  1053. id: ControlY
  1054. parent: Terminal.Gui.Key
  1055. langs:
  1056. - csharp
  1057. - vb
  1058. name: ControlY
  1059. nameWithType: Key.ControlY
  1060. fullName: Terminal.Gui.Key.ControlY
  1061. type: Field
  1062. source:
  1063. remote:
  1064. path: Terminal.Gui/Event.cs
  1065. branch: docs_tweaks
  1066. repo: tig:tig/gui.cs.git
  1067. id: ControlY
  1068. path: ../Terminal.Gui/Event.cs
  1069. startLine: 145
  1070. assemblies:
  1071. - Terminal.Gui
  1072. namespace: Terminal.Gui
  1073. summary: "\nThe key code for the user pressing Control-Y\n"
  1074. example: []
  1075. syntax:
  1076. content: ControlY = 25U
  1077. return:
  1078. type: Terminal.Gui.Key
  1079. content.vb: ControlY = 25UI
  1080. modifiers.csharp:
  1081. - public
  1082. - const
  1083. modifiers.vb:
  1084. - Public
  1085. - Const
  1086. - uid: Terminal.Gui.Key.ControlZ
  1087. commentId: F:Terminal.Gui.Key.ControlZ
  1088. id: ControlZ
  1089. parent: Terminal.Gui.Key
  1090. langs:
  1091. - csharp
  1092. - vb
  1093. name: ControlZ
  1094. nameWithType: Key.ControlZ
  1095. fullName: Terminal.Gui.Key.ControlZ
  1096. type: Field
  1097. source:
  1098. remote:
  1099. path: Terminal.Gui/Event.cs
  1100. branch: docs_tweaks
  1101. repo: tig:tig/gui.cs.git
  1102. id: ControlZ
  1103. path: ../Terminal.Gui/Event.cs
  1104. startLine: 149
  1105. assemblies:
  1106. - Terminal.Gui
  1107. namespace: Terminal.Gui
  1108. summary: "\nThe key code for the user pressing Control-Z\n"
  1109. example: []
  1110. syntax:
  1111. content: ControlZ = 26U
  1112. return:
  1113. type: Terminal.Gui.Key
  1114. content.vb: ControlZ = 26UI
  1115. modifiers.csharp:
  1116. - public
  1117. - const
  1118. modifiers.vb:
  1119. - Public
  1120. - Const
  1121. - uid: Terminal.Gui.Key.Esc
  1122. commentId: F:Terminal.Gui.Key.Esc
  1123. id: Esc
  1124. parent: Terminal.Gui.Key
  1125. langs:
  1126. - csharp
  1127. - vb
  1128. name: Esc
  1129. nameWithType: Key.Esc
  1130. fullName: Terminal.Gui.Key.Esc
  1131. type: Field
  1132. source:
  1133. remote:
  1134. path: Terminal.Gui/Event.cs
  1135. branch: docs_tweaks
  1136. repo: tig:tig/gui.cs.git
  1137. id: Esc
  1138. path: ../Terminal.Gui/Event.cs
  1139. startLine: 154
  1140. assemblies:
  1141. - Terminal.Gui
  1142. namespace: Terminal.Gui
  1143. summary: "\nThe key code for the user pressing the escape key\n"
  1144. example: []
  1145. syntax:
  1146. content: Esc = 27U
  1147. return:
  1148. type: Terminal.Gui.Key
  1149. content.vb: Esc = 27UI
  1150. modifiers.csharp:
  1151. - public
  1152. - const
  1153. modifiers.vb:
  1154. - Public
  1155. - Const
  1156. - uid: Terminal.Gui.Key.Enter
  1157. commentId: F:Terminal.Gui.Key.Enter
  1158. id: Enter
  1159. parent: Terminal.Gui.Key
  1160. langs:
  1161. - csharp
  1162. - vb
  1163. name: Enter
  1164. nameWithType: Key.Enter
  1165. fullName: Terminal.Gui.Key.Enter
  1166. type: Field
  1167. source:
  1168. remote:
  1169. path: Terminal.Gui/Event.cs
  1170. branch: docs_tweaks
  1171. repo: tig:tig/gui.cs.git
  1172. id: Enter
  1173. path: ../Terminal.Gui/Event.cs
  1174. startLine: 159
  1175. assemblies:
  1176. - Terminal.Gui
  1177. namespace: Terminal.Gui
  1178. summary: "\nThe key code for the user pressing the return key.\n"
  1179. example: []
  1180. syntax:
  1181. content: Enter = 10U
  1182. return:
  1183. type: Terminal.Gui.Key
  1184. content.vb: Enter = 10UI
  1185. modifiers.csharp:
  1186. - public
  1187. - const
  1188. modifiers.vb:
  1189. - Public
  1190. - Const
  1191. - uid: Terminal.Gui.Key.Space
  1192. commentId: F:Terminal.Gui.Key.Space
  1193. id: Space
  1194. parent: Terminal.Gui.Key
  1195. langs:
  1196. - csharp
  1197. - vb
  1198. name: Space
  1199. nameWithType: Key.Space
  1200. fullName: Terminal.Gui.Key.Space
  1201. type: Field
  1202. source:
  1203. remote:
  1204. path: Terminal.Gui/Event.cs
  1205. branch: docs_tweaks
  1206. repo: tig:tig/gui.cs.git
  1207. id: Space
  1208. path: ../Terminal.Gui/Event.cs
  1209. startLine: 164
  1210. assemblies:
  1211. - Terminal.Gui
  1212. namespace: Terminal.Gui
  1213. summary: "\nThe key code for the user pressing the space bar\n"
  1214. example: []
  1215. syntax:
  1216. content: Space = 32U
  1217. return:
  1218. type: Terminal.Gui.Key
  1219. content.vb: Space = 32UI
  1220. modifiers.csharp:
  1221. - public
  1222. - const
  1223. modifiers.vb:
  1224. - Public
  1225. - Const
  1226. - uid: Terminal.Gui.Key.Delete
  1227. commentId: F:Terminal.Gui.Key.Delete
  1228. id: Delete
  1229. parent: Terminal.Gui.Key
  1230. langs:
  1231. - csharp
  1232. - vb
  1233. name: Delete
  1234. nameWithType: Key.Delete
  1235. fullName: Terminal.Gui.Key.Delete
  1236. type: Field
  1237. source:
  1238. remote:
  1239. path: Terminal.Gui/Event.cs
  1240. branch: docs_tweaks
  1241. repo: tig:tig/gui.cs.git
  1242. id: Delete
  1243. path: ../Terminal.Gui/Event.cs
  1244. startLine: 169
  1245. assemblies:
  1246. - Terminal.Gui
  1247. namespace: Terminal.Gui
  1248. summary: "\nThe key code for the user pressing the delete key.\n"
  1249. example: []
  1250. syntax:
  1251. content: Delete = 127U
  1252. return:
  1253. type: Terminal.Gui.Key
  1254. content.vb: Delete = 127UI
  1255. modifiers.csharp:
  1256. - public
  1257. - const
  1258. modifiers.vb:
  1259. - Public
  1260. - Const
  1261. - uid: Terminal.Gui.Key.ShiftMask
  1262. commentId: F:Terminal.Gui.Key.ShiftMask
  1263. id: ShiftMask
  1264. parent: Terminal.Gui.Key
  1265. langs:
  1266. - csharp
  1267. - vb
  1268. name: ShiftMask
  1269. nameWithType: Key.ShiftMask
  1270. fullName: Terminal.Gui.Key.ShiftMask
  1271. type: Field
  1272. source:
  1273. remote:
  1274. path: Terminal.Gui/Event.cs
  1275. branch: docs_tweaks
  1276. repo: tig:tig/gui.cs.git
  1277. id: ShiftMask
  1278. path: ../Terminal.Gui/Event.cs
  1279. startLine: 174
  1280. assemblies:
  1281. - Terminal.Gui
  1282. namespace: Terminal.Gui
  1283. summary: "\nWhen this value is set, the Key encodes the sequence Shift-KeyValue.\n"
  1284. example: []
  1285. syntax:
  1286. content: ShiftMask = 268435456U
  1287. return:
  1288. type: Terminal.Gui.Key
  1289. content.vb: ShiftMask = 268435456UI
  1290. modifiers.csharp:
  1291. - public
  1292. - const
  1293. modifiers.vb:
  1294. - Public
  1295. - Const
  1296. - uid: Terminal.Gui.Key.AltMask
  1297. commentId: F:Terminal.Gui.Key.AltMask
  1298. id: AltMask
  1299. parent: Terminal.Gui.Key
  1300. langs:
  1301. - csharp
  1302. - vb
  1303. name: AltMask
  1304. nameWithType: Key.AltMask
  1305. fullName: Terminal.Gui.Key.AltMask
  1306. type: Field
  1307. source:
  1308. remote:
  1309. path: Terminal.Gui/Event.cs
  1310. branch: docs_tweaks
  1311. repo: tig:tig/gui.cs.git
  1312. id: AltMask
  1313. path: ../Terminal.Gui/Event.cs
  1314. startLine: 180
  1315. assemblies:
  1316. - Terminal.Gui
  1317. namespace: Terminal.Gui
  1318. summary: "\nWhen this value is set, the Key encodes the sequence Alt-KeyValue.\nAnd the actual value must be extracted by removing the AltMask.\n"
  1319. example: []
  1320. syntax:
  1321. content: AltMask = 2147483648U
  1322. return:
  1323. type: Terminal.Gui.Key
  1324. content.vb: AltMask = 2147483648UI
  1325. modifiers.csharp:
  1326. - public
  1327. - const
  1328. modifiers.vb:
  1329. - Public
  1330. - Const
  1331. - uid: Terminal.Gui.Key.CtrlMask
  1332. commentId: F:Terminal.Gui.Key.CtrlMask
  1333. id: CtrlMask
  1334. parent: Terminal.Gui.Key
  1335. langs:
  1336. - csharp
  1337. - vb
  1338. name: CtrlMask
  1339. nameWithType: Key.CtrlMask
  1340. fullName: Terminal.Gui.Key.CtrlMask
  1341. type: Field
  1342. source:
  1343. remote:
  1344. path: Terminal.Gui/Event.cs
  1345. branch: docs_tweaks
  1346. repo: tig:tig/gui.cs.git
  1347. id: CtrlMask
  1348. path: ../Terminal.Gui/Event.cs
  1349. startLine: 186
  1350. assemblies:
  1351. - Terminal.Gui
  1352. namespace: Terminal.Gui
  1353. summary: "\nWhen this value is set, the Key encodes the sequence Ctrl-KeyValue.\nAnd the actual value must be extracted by removing the CtrlMask.\n"
  1354. example: []
  1355. syntax:
  1356. content: CtrlMask = 1073741824U
  1357. return:
  1358. type: Terminal.Gui.Key
  1359. content.vb: CtrlMask = 1073741824UI
  1360. modifiers.csharp:
  1361. - public
  1362. - const
  1363. modifiers.vb:
  1364. - Public
  1365. - Const
  1366. - uid: Terminal.Gui.Key.Backspace
  1367. commentId: F:Terminal.Gui.Key.Backspace
  1368. id: Backspace
  1369. parent: Terminal.Gui.Key
  1370. langs:
  1371. - csharp
  1372. - vb
  1373. name: Backspace
  1374. nameWithType: Key.Backspace
  1375. fullName: Terminal.Gui.Key.Backspace
  1376. type: Field
  1377. source:
  1378. remote:
  1379. path: Terminal.Gui/Event.cs
  1380. branch: docs_tweaks
  1381. repo: tig:tig/gui.cs.git
  1382. id: Backspace
  1383. path: ../Terminal.Gui/Event.cs
  1384. startLine: 191
  1385. assemblies:
  1386. - Terminal.Gui
  1387. namespace: Terminal.Gui
  1388. summary: "\nBackspace key.\n"
  1389. example: []
  1390. syntax:
  1391. content: Backspace = 1048576U
  1392. return:
  1393. type: Terminal.Gui.Key
  1394. content.vb: Backspace = 1048576UI
  1395. modifiers.csharp:
  1396. - public
  1397. - const
  1398. modifiers.vb:
  1399. - Public
  1400. - Const
  1401. - uid: Terminal.Gui.Key.CursorUp
  1402. commentId: F:Terminal.Gui.Key.CursorUp
  1403. id: CursorUp
  1404. parent: Terminal.Gui.Key
  1405. langs:
  1406. - csharp
  1407. - vb
  1408. name: CursorUp
  1409. nameWithType: Key.CursorUp
  1410. fullName: Terminal.Gui.Key.CursorUp
  1411. type: Field
  1412. source:
  1413. remote:
  1414. path: Terminal.Gui/Event.cs
  1415. branch: docs_tweaks
  1416. repo: tig:tig/gui.cs.git
  1417. id: CursorUp
  1418. path: ../Terminal.Gui/Event.cs
  1419. startLine: 196
  1420. assemblies:
  1421. - Terminal.Gui
  1422. namespace: Terminal.Gui
  1423. summary: "\nCursor up key\n"
  1424. example: []
  1425. syntax:
  1426. content: CursorUp = 1048577U
  1427. return:
  1428. type: Terminal.Gui.Key
  1429. content.vb: CursorUp = 1048577UI
  1430. modifiers.csharp:
  1431. - public
  1432. - const
  1433. modifiers.vb:
  1434. - Public
  1435. - Const
  1436. - uid: Terminal.Gui.Key.CursorDown
  1437. commentId: F:Terminal.Gui.Key.CursorDown
  1438. id: CursorDown
  1439. parent: Terminal.Gui.Key
  1440. langs:
  1441. - csharp
  1442. - vb
  1443. name: CursorDown
  1444. nameWithType: Key.CursorDown
  1445. fullName: Terminal.Gui.Key.CursorDown
  1446. type: Field
  1447. source:
  1448. remote:
  1449. path: Terminal.Gui/Event.cs
  1450. branch: docs_tweaks
  1451. repo: tig:tig/gui.cs.git
  1452. id: CursorDown
  1453. path: ../Terminal.Gui/Event.cs
  1454. startLine: 200
  1455. assemblies:
  1456. - Terminal.Gui
  1457. namespace: Terminal.Gui
  1458. summary: "\nCursor down key.\n"
  1459. example: []
  1460. syntax:
  1461. content: CursorDown = 1048578U
  1462. return:
  1463. type: Terminal.Gui.Key
  1464. content.vb: CursorDown = 1048578UI
  1465. modifiers.csharp:
  1466. - public
  1467. - const
  1468. modifiers.vb:
  1469. - Public
  1470. - Const
  1471. - uid: Terminal.Gui.Key.CursorLeft
  1472. commentId: F:Terminal.Gui.Key.CursorLeft
  1473. id: CursorLeft
  1474. parent: Terminal.Gui.Key
  1475. langs:
  1476. - csharp
  1477. - vb
  1478. name: CursorLeft
  1479. nameWithType: Key.CursorLeft
  1480. fullName: Terminal.Gui.Key.CursorLeft
  1481. type: Field
  1482. source:
  1483. remote:
  1484. path: Terminal.Gui/Event.cs
  1485. branch: docs_tweaks
  1486. repo: tig:tig/gui.cs.git
  1487. id: CursorLeft
  1488. path: ../Terminal.Gui/Event.cs
  1489. startLine: 204
  1490. assemblies:
  1491. - Terminal.Gui
  1492. namespace: Terminal.Gui
  1493. summary: "\nCursor left key.\n"
  1494. example: []
  1495. syntax:
  1496. content: CursorLeft = 1048579U
  1497. return:
  1498. type: Terminal.Gui.Key
  1499. content.vb: CursorLeft = 1048579UI
  1500. modifiers.csharp:
  1501. - public
  1502. - const
  1503. modifiers.vb:
  1504. - Public
  1505. - Const
  1506. - uid: Terminal.Gui.Key.CursorRight
  1507. commentId: F:Terminal.Gui.Key.CursorRight
  1508. id: CursorRight
  1509. parent: Terminal.Gui.Key
  1510. langs:
  1511. - csharp
  1512. - vb
  1513. name: CursorRight
  1514. nameWithType: Key.CursorRight
  1515. fullName: Terminal.Gui.Key.CursorRight
  1516. type: Field
  1517. source:
  1518. remote:
  1519. path: Terminal.Gui/Event.cs
  1520. branch: docs_tweaks
  1521. repo: tig:tig/gui.cs.git
  1522. id: CursorRight
  1523. path: ../Terminal.Gui/Event.cs
  1524. startLine: 208
  1525. assemblies:
  1526. - Terminal.Gui
  1527. namespace: Terminal.Gui
  1528. summary: "\nCursor right key.\n"
  1529. example: []
  1530. syntax:
  1531. content: CursorRight = 1048580U
  1532. return:
  1533. type: Terminal.Gui.Key
  1534. content.vb: CursorRight = 1048580UI
  1535. modifiers.csharp:
  1536. - public
  1537. - const
  1538. modifiers.vb:
  1539. - Public
  1540. - Const
  1541. - uid: Terminal.Gui.Key.PageUp
  1542. commentId: F:Terminal.Gui.Key.PageUp
  1543. id: PageUp
  1544. parent: Terminal.Gui.Key
  1545. langs:
  1546. - csharp
  1547. - vb
  1548. name: PageUp
  1549. nameWithType: Key.PageUp
  1550. fullName: Terminal.Gui.Key.PageUp
  1551. type: Field
  1552. source:
  1553. remote:
  1554. path: Terminal.Gui/Event.cs
  1555. branch: docs_tweaks
  1556. repo: tig:tig/gui.cs.git
  1557. id: PageUp
  1558. path: ../Terminal.Gui/Event.cs
  1559. startLine: 212
  1560. assemblies:
  1561. - Terminal.Gui
  1562. namespace: Terminal.Gui
  1563. summary: "\nPage Up key.\n"
  1564. example: []
  1565. syntax:
  1566. content: PageUp = 1048581U
  1567. return:
  1568. type: Terminal.Gui.Key
  1569. content.vb: PageUp = 1048581UI
  1570. modifiers.csharp:
  1571. - public
  1572. - const
  1573. modifiers.vb:
  1574. - Public
  1575. - Const
  1576. - uid: Terminal.Gui.Key.PageDown
  1577. commentId: F:Terminal.Gui.Key.PageDown
  1578. id: PageDown
  1579. parent: Terminal.Gui.Key
  1580. langs:
  1581. - csharp
  1582. - vb
  1583. name: PageDown
  1584. nameWithType: Key.PageDown
  1585. fullName: Terminal.Gui.Key.PageDown
  1586. type: Field
  1587. source:
  1588. remote:
  1589. path: Terminal.Gui/Event.cs
  1590. branch: docs_tweaks
  1591. repo: tig:tig/gui.cs.git
  1592. id: PageDown
  1593. path: ../Terminal.Gui/Event.cs
  1594. startLine: 216
  1595. assemblies:
  1596. - Terminal.Gui
  1597. namespace: Terminal.Gui
  1598. summary: "\nPage Down key.\n"
  1599. example: []
  1600. syntax:
  1601. content: PageDown = 1048582U
  1602. return:
  1603. type: Terminal.Gui.Key
  1604. content.vb: PageDown = 1048582UI
  1605. modifiers.csharp:
  1606. - public
  1607. - const
  1608. modifiers.vb:
  1609. - Public
  1610. - Const
  1611. - uid: Terminal.Gui.Key.Home
  1612. commentId: F:Terminal.Gui.Key.Home
  1613. id: Home
  1614. parent: Terminal.Gui.Key
  1615. langs:
  1616. - csharp
  1617. - vb
  1618. name: Home
  1619. nameWithType: Key.Home
  1620. fullName: Terminal.Gui.Key.Home
  1621. type: Field
  1622. source:
  1623. remote:
  1624. path: Terminal.Gui/Event.cs
  1625. branch: docs_tweaks
  1626. repo: tig:tig/gui.cs.git
  1627. id: Home
  1628. path: ../Terminal.Gui/Event.cs
  1629. startLine: 220
  1630. assemblies:
  1631. - Terminal.Gui
  1632. namespace: Terminal.Gui
  1633. summary: "\nHome key\n"
  1634. example: []
  1635. syntax:
  1636. content: Home = 1048583U
  1637. return:
  1638. type: Terminal.Gui.Key
  1639. content.vb: Home = 1048583UI
  1640. modifiers.csharp:
  1641. - public
  1642. - const
  1643. modifiers.vb:
  1644. - Public
  1645. - Const
  1646. - uid: Terminal.Gui.Key.End
  1647. commentId: F:Terminal.Gui.Key.End
  1648. id: End
  1649. parent: Terminal.Gui.Key
  1650. langs:
  1651. - csharp
  1652. - vb
  1653. name: End
  1654. nameWithType: Key.End
  1655. fullName: Terminal.Gui.Key.End
  1656. type: Field
  1657. source:
  1658. remote:
  1659. path: Terminal.Gui/Event.cs
  1660. branch: docs_tweaks
  1661. repo: tig:tig/gui.cs.git
  1662. id: End
  1663. path: ../Terminal.Gui/Event.cs
  1664. startLine: 224
  1665. assemblies:
  1666. - Terminal.Gui
  1667. namespace: Terminal.Gui
  1668. summary: "\nEnd key\n"
  1669. example: []
  1670. syntax:
  1671. content: End = 1048584U
  1672. return:
  1673. type: Terminal.Gui.Key
  1674. content.vb: End = 1048584UI
  1675. modifiers.csharp:
  1676. - public
  1677. - const
  1678. modifiers.vb:
  1679. - Public
  1680. - Const
  1681. - uid: Terminal.Gui.Key.DeleteChar
  1682. commentId: F:Terminal.Gui.Key.DeleteChar
  1683. id: DeleteChar
  1684. parent: Terminal.Gui.Key
  1685. langs:
  1686. - csharp
  1687. - vb
  1688. name: DeleteChar
  1689. nameWithType: Key.DeleteChar
  1690. fullName: Terminal.Gui.Key.DeleteChar
  1691. type: Field
  1692. source:
  1693. remote:
  1694. path: Terminal.Gui/Event.cs
  1695. branch: docs_tweaks
  1696. repo: tig:tig/gui.cs.git
  1697. id: DeleteChar
  1698. path: ../Terminal.Gui/Event.cs
  1699. startLine: 228
  1700. assemblies:
  1701. - Terminal.Gui
  1702. namespace: Terminal.Gui
  1703. summary: "\nDelete character key\n"
  1704. example: []
  1705. syntax:
  1706. content: DeleteChar = 1048585U
  1707. return:
  1708. type: Terminal.Gui.Key
  1709. content.vb: DeleteChar = 1048585UI
  1710. modifiers.csharp:
  1711. - public
  1712. - const
  1713. modifiers.vb:
  1714. - Public
  1715. - Const
  1716. - uid: Terminal.Gui.Key.InsertChar
  1717. commentId: F:Terminal.Gui.Key.InsertChar
  1718. id: InsertChar
  1719. parent: Terminal.Gui.Key
  1720. langs:
  1721. - csharp
  1722. - vb
  1723. name: InsertChar
  1724. nameWithType: Key.InsertChar
  1725. fullName: Terminal.Gui.Key.InsertChar
  1726. type: Field
  1727. source:
  1728. remote:
  1729. path: Terminal.Gui/Event.cs
  1730. branch: docs_tweaks
  1731. repo: tig:tig/gui.cs.git
  1732. id: InsertChar
  1733. path: ../Terminal.Gui/Event.cs
  1734. startLine: 232
  1735. assemblies:
  1736. - Terminal.Gui
  1737. namespace: Terminal.Gui
  1738. summary: "\nInsert character key\n"
  1739. example: []
  1740. syntax:
  1741. content: InsertChar = 1048586U
  1742. return:
  1743. type: Terminal.Gui.Key
  1744. content.vb: InsertChar = 1048586UI
  1745. modifiers.csharp:
  1746. - public
  1747. - const
  1748. modifiers.vb:
  1749. - Public
  1750. - Const
  1751. - uid: Terminal.Gui.Key.F1
  1752. commentId: F:Terminal.Gui.Key.F1
  1753. id: F1
  1754. parent: Terminal.Gui.Key
  1755. langs:
  1756. - csharp
  1757. - vb
  1758. name: F1
  1759. nameWithType: Key.F1
  1760. fullName: Terminal.Gui.Key.F1
  1761. type: Field
  1762. source:
  1763. remote:
  1764. path: Terminal.Gui/Event.cs
  1765. branch: docs_tweaks
  1766. repo: tig:tig/gui.cs.git
  1767. id: F1
  1768. path: ../Terminal.Gui/Event.cs
  1769. startLine: 236
  1770. assemblies:
  1771. - Terminal.Gui
  1772. namespace: Terminal.Gui
  1773. summary: "\nF1 key.\n"
  1774. example: []
  1775. syntax:
  1776. content: F1 = 1048587U
  1777. return:
  1778. type: Terminal.Gui.Key
  1779. content.vb: F1 = 1048587UI
  1780. modifiers.csharp:
  1781. - public
  1782. - const
  1783. modifiers.vb:
  1784. - Public
  1785. - Const
  1786. - uid: Terminal.Gui.Key.F2
  1787. commentId: F:Terminal.Gui.Key.F2
  1788. id: F2
  1789. parent: Terminal.Gui.Key
  1790. langs:
  1791. - csharp
  1792. - vb
  1793. name: F2
  1794. nameWithType: Key.F2
  1795. fullName: Terminal.Gui.Key.F2
  1796. type: Field
  1797. source:
  1798. remote:
  1799. path: Terminal.Gui/Event.cs
  1800. branch: docs_tweaks
  1801. repo: tig:tig/gui.cs.git
  1802. id: F2
  1803. path: ../Terminal.Gui/Event.cs
  1804. startLine: 240
  1805. assemblies:
  1806. - Terminal.Gui
  1807. namespace: Terminal.Gui
  1808. summary: "\nF2 key.\n"
  1809. example: []
  1810. syntax:
  1811. content: F2 = 1048588U
  1812. return:
  1813. type: Terminal.Gui.Key
  1814. content.vb: F2 = 1048588UI
  1815. modifiers.csharp:
  1816. - public
  1817. - const
  1818. modifiers.vb:
  1819. - Public
  1820. - Const
  1821. - uid: Terminal.Gui.Key.F3
  1822. commentId: F:Terminal.Gui.Key.F3
  1823. id: F3
  1824. parent: Terminal.Gui.Key
  1825. langs:
  1826. - csharp
  1827. - vb
  1828. name: F3
  1829. nameWithType: Key.F3
  1830. fullName: Terminal.Gui.Key.F3
  1831. type: Field
  1832. source:
  1833. remote:
  1834. path: Terminal.Gui/Event.cs
  1835. branch: docs_tweaks
  1836. repo: tig:tig/gui.cs.git
  1837. id: F3
  1838. path: ../Terminal.Gui/Event.cs
  1839. startLine: 244
  1840. assemblies:
  1841. - Terminal.Gui
  1842. namespace: Terminal.Gui
  1843. summary: "\nF3 key.\n"
  1844. example: []
  1845. syntax:
  1846. content: F3 = 1048589U
  1847. return:
  1848. type: Terminal.Gui.Key
  1849. content.vb: F3 = 1048589UI
  1850. modifiers.csharp:
  1851. - public
  1852. - const
  1853. modifiers.vb:
  1854. - Public
  1855. - Const
  1856. - uid: Terminal.Gui.Key.F4
  1857. commentId: F:Terminal.Gui.Key.F4
  1858. id: F4
  1859. parent: Terminal.Gui.Key
  1860. langs:
  1861. - csharp
  1862. - vb
  1863. name: F4
  1864. nameWithType: Key.F4
  1865. fullName: Terminal.Gui.Key.F4
  1866. type: Field
  1867. source:
  1868. remote:
  1869. path: Terminal.Gui/Event.cs
  1870. branch: docs_tweaks
  1871. repo: tig:tig/gui.cs.git
  1872. id: F4
  1873. path: ../Terminal.Gui/Event.cs
  1874. startLine: 248
  1875. assemblies:
  1876. - Terminal.Gui
  1877. namespace: Terminal.Gui
  1878. summary: "\nF4 key.\n"
  1879. example: []
  1880. syntax:
  1881. content: F4 = 1048590U
  1882. return:
  1883. type: Terminal.Gui.Key
  1884. content.vb: F4 = 1048590UI
  1885. modifiers.csharp:
  1886. - public
  1887. - const
  1888. modifiers.vb:
  1889. - Public
  1890. - Const
  1891. - uid: Terminal.Gui.Key.F5
  1892. commentId: F:Terminal.Gui.Key.F5
  1893. id: F5
  1894. parent: Terminal.Gui.Key
  1895. langs:
  1896. - csharp
  1897. - vb
  1898. name: F5
  1899. nameWithType: Key.F5
  1900. fullName: Terminal.Gui.Key.F5
  1901. type: Field
  1902. source:
  1903. remote:
  1904. path: Terminal.Gui/Event.cs
  1905. branch: docs_tweaks
  1906. repo: tig:tig/gui.cs.git
  1907. id: F5
  1908. path: ../Terminal.Gui/Event.cs
  1909. startLine: 252
  1910. assemblies:
  1911. - Terminal.Gui
  1912. namespace: Terminal.Gui
  1913. summary: "\nF5 key.\n"
  1914. example: []
  1915. syntax:
  1916. content: F5 = 1048591U
  1917. return:
  1918. type: Terminal.Gui.Key
  1919. content.vb: F5 = 1048591UI
  1920. modifiers.csharp:
  1921. - public
  1922. - const
  1923. modifiers.vb:
  1924. - Public
  1925. - Const
  1926. - uid: Terminal.Gui.Key.F6
  1927. commentId: F:Terminal.Gui.Key.F6
  1928. id: F6
  1929. parent: Terminal.Gui.Key
  1930. langs:
  1931. - csharp
  1932. - vb
  1933. name: F6
  1934. nameWithType: Key.F6
  1935. fullName: Terminal.Gui.Key.F6
  1936. type: Field
  1937. source:
  1938. remote:
  1939. path: Terminal.Gui/Event.cs
  1940. branch: docs_tweaks
  1941. repo: tig:tig/gui.cs.git
  1942. id: F6
  1943. path: ../Terminal.Gui/Event.cs
  1944. startLine: 256
  1945. assemblies:
  1946. - Terminal.Gui
  1947. namespace: Terminal.Gui
  1948. summary: "\nF6 key.\n"
  1949. example: []
  1950. syntax:
  1951. content: F6 = 1048592U
  1952. return:
  1953. type: Terminal.Gui.Key
  1954. content.vb: F6 = 1048592UI
  1955. modifiers.csharp:
  1956. - public
  1957. - const
  1958. modifiers.vb:
  1959. - Public
  1960. - Const
  1961. - uid: Terminal.Gui.Key.F7
  1962. commentId: F:Terminal.Gui.Key.F7
  1963. id: F7
  1964. parent: Terminal.Gui.Key
  1965. langs:
  1966. - csharp
  1967. - vb
  1968. name: F7
  1969. nameWithType: Key.F7
  1970. fullName: Terminal.Gui.Key.F7
  1971. type: Field
  1972. source:
  1973. remote:
  1974. path: Terminal.Gui/Event.cs
  1975. branch: docs_tweaks
  1976. repo: tig:tig/gui.cs.git
  1977. id: F7
  1978. path: ../Terminal.Gui/Event.cs
  1979. startLine: 260
  1980. assemblies:
  1981. - Terminal.Gui
  1982. namespace: Terminal.Gui
  1983. summary: "\nF7 key.\n"
  1984. example: []
  1985. syntax:
  1986. content: F7 = 1048593U
  1987. return:
  1988. type: Terminal.Gui.Key
  1989. content.vb: F7 = 1048593UI
  1990. modifiers.csharp:
  1991. - public
  1992. - const
  1993. modifiers.vb:
  1994. - Public
  1995. - Const
  1996. - uid: Terminal.Gui.Key.F8
  1997. commentId: F:Terminal.Gui.Key.F8
  1998. id: F8
  1999. parent: Terminal.Gui.Key
  2000. langs:
  2001. - csharp
  2002. - vb
  2003. name: F8
  2004. nameWithType: Key.F8
  2005. fullName: Terminal.Gui.Key.F8
  2006. type: Field
  2007. source:
  2008. remote:
  2009. path: Terminal.Gui/Event.cs
  2010. branch: docs_tweaks
  2011. repo: tig:tig/gui.cs.git
  2012. id: F8
  2013. path: ../Terminal.Gui/Event.cs
  2014. startLine: 264
  2015. assemblies:
  2016. - Terminal.Gui
  2017. namespace: Terminal.Gui
  2018. summary: "\nF8 key.\n"
  2019. example: []
  2020. syntax:
  2021. content: F8 = 1048594U
  2022. return:
  2023. type: Terminal.Gui.Key
  2024. content.vb: F8 = 1048594UI
  2025. modifiers.csharp:
  2026. - public
  2027. - const
  2028. modifiers.vb:
  2029. - Public
  2030. - Const
  2031. - uid: Terminal.Gui.Key.F9
  2032. commentId: F:Terminal.Gui.Key.F9
  2033. id: F9
  2034. parent: Terminal.Gui.Key
  2035. langs:
  2036. - csharp
  2037. - vb
  2038. name: F9
  2039. nameWithType: Key.F9
  2040. fullName: Terminal.Gui.Key.F9
  2041. type: Field
  2042. source:
  2043. remote:
  2044. path: Terminal.Gui/Event.cs
  2045. branch: docs_tweaks
  2046. repo: tig:tig/gui.cs.git
  2047. id: F9
  2048. path: ../Terminal.Gui/Event.cs
  2049. startLine: 268
  2050. assemblies:
  2051. - Terminal.Gui
  2052. namespace: Terminal.Gui
  2053. summary: "\nF9 key.\n"
  2054. example: []
  2055. syntax:
  2056. content: F9 = 1048595U
  2057. return:
  2058. type: Terminal.Gui.Key
  2059. content.vb: F9 = 1048595UI
  2060. modifiers.csharp:
  2061. - public
  2062. - const
  2063. modifiers.vb:
  2064. - Public
  2065. - Const
  2066. - uid: Terminal.Gui.Key.F10
  2067. commentId: F:Terminal.Gui.Key.F10
  2068. id: F10
  2069. parent: Terminal.Gui.Key
  2070. langs:
  2071. - csharp
  2072. - vb
  2073. name: F10
  2074. nameWithType: Key.F10
  2075. fullName: Terminal.Gui.Key.F10
  2076. type: Field
  2077. source:
  2078. remote:
  2079. path: Terminal.Gui/Event.cs
  2080. branch: docs_tweaks
  2081. repo: tig:tig/gui.cs.git
  2082. id: F10
  2083. path: ../Terminal.Gui/Event.cs
  2084. startLine: 272
  2085. assemblies:
  2086. - Terminal.Gui
  2087. namespace: Terminal.Gui
  2088. summary: "\nF10 key.\n"
  2089. example: []
  2090. syntax:
  2091. content: F10 = 1048596U
  2092. return:
  2093. type: Terminal.Gui.Key
  2094. content.vb: F10 = 1048596UI
  2095. modifiers.csharp:
  2096. - public
  2097. - const
  2098. modifiers.vb:
  2099. - Public
  2100. - Const
  2101. - uid: Terminal.Gui.Key.Tab
  2102. commentId: F:Terminal.Gui.Key.Tab
  2103. id: Tab
  2104. parent: Terminal.Gui.Key
  2105. langs:
  2106. - csharp
  2107. - vb
  2108. name: Tab
  2109. nameWithType: Key.Tab
  2110. fullName: Terminal.Gui.Key.Tab
  2111. type: Field
  2112. source:
  2113. remote:
  2114. path: Terminal.Gui/Event.cs
  2115. branch: docs_tweaks
  2116. repo: tig:tig/gui.cs.git
  2117. id: Tab
  2118. path: ../Terminal.Gui/Event.cs
  2119. startLine: 276
  2120. assemblies:
  2121. - Terminal.Gui
  2122. namespace: Terminal.Gui
  2123. summary: "\nThe key code for the user pressing the tab key (forwards tab key).\n"
  2124. example: []
  2125. syntax:
  2126. content: Tab = 1048597U
  2127. return:
  2128. type: Terminal.Gui.Key
  2129. content.vb: Tab = 1048597UI
  2130. modifiers.csharp:
  2131. - public
  2132. - const
  2133. modifiers.vb:
  2134. - Public
  2135. - Const
  2136. - uid: Terminal.Gui.Key.BackTab
  2137. commentId: F:Terminal.Gui.Key.BackTab
  2138. id: BackTab
  2139. parent: Terminal.Gui.Key
  2140. langs:
  2141. - csharp
  2142. - vb
  2143. name: BackTab
  2144. nameWithType: Key.BackTab
  2145. fullName: Terminal.Gui.Key.BackTab
  2146. type: Field
  2147. source:
  2148. remote:
  2149. path: Terminal.Gui/Event.cs
  2150. branch: docs_tweaks
  2151. repo: tig:tig/gui.cs.git
  2152. id: BackTab
  2153. path: ../Terminal.Gui/Event.cs
  2154. startLine: 280
  2155. assemblies:
  2156. - Terminal.Gui
  2157. namespace: Terminal.Gui
  2158. summary: "\nShift-tab key (backwards tab key).\n"
  2159. example: []
  2160. syntax:
  2161. content: BackTab = 1048598U
  2162. return:
  2163. type: Terminal.Gui.Key
  2164. content.vb: BackTab = 1048598UI
  2165. modifiers.csharp:
  2166. - public
  2167. - const
  2168. modifiers.vb:
  2169. - Public
  2170. - Const
  2171. - uid: Terminal.Gui.Key.Unknown
  2172. commentId: F:Terminal.Gui.Key.Unknown
  2173. id: Unknown
  2174. parent: Terminal.Gui.Key
  2175. langs:
  2176. - csharp
  2177. - vb
  2178. name: Unknown
  2179. nameWithType: Key.Unknown
  2180. fullName: Terminal.Gui.Key.Unknown
  2181. type: Field
  2182. source:
  2183. remote:
  2184. path: Terminal.Gui/Event.cs
  2185. branch: docs_tweaks
  2186. repo: tig:tig/gui.cs.git
  2187. id: Unknown
  2188. path: ../Terminal.Gui/Event.cs
  2189. startLine: 284
  2190. assemblies:
  2191. - Terminal.Gui
  2192. namespace: Terminal.Gui
  2193. summary: "\nA key with an unknown mapping was raised.\n"
  2194. example: []
  2195. syntax:
  2196. content: Unknown = 1048599U
  2197. return:
  2198. type: Terminal.Gui.Key
  2199. content.vb: Unknown = 1048599UI
  2200. modifiers.csharp:
  2201. - public
  2202. - const
  2203. modifiers.vb:
  2204. - Public
  2205. - Const
  2206. references:
  2207. - uid: Terminal.Gui.Key
  2208. commentId: T:Terminal.Gui.Key
  2209. parent: Terminal.Gui
  2210. name: Key
  2211. nameWithType: Key
  2212. fullName: Terminal.Gui.Key
  2213. - uid: Terminal.Gui
  2214. commentId: N:Terminal.Gui
  2215. name: Terminal.Gui
  2216. nameWithType: Terminal.Gui
  2217. fullName: Terminal.Gui
  2218. shouldSkipMarkup: true