| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220 |
- ### YamlMime:ManagedReference
- items:
- - uid: Terminal.Gui.Key
- commentId: T:Terminal.Gui.Key
- id: Key
- parent: Terminal.Gui
- children:
- - Terminal.Gui.Key.AltMask
- - Terminal.Gui.Key.Backspace
- - Terminal.Gui.Key.BackTab
- - Terminal.Gui.Key.CharMask
- - Terminal.Gui.Key.ControlA
- - Terminal.Gui.Key.ControlB
- - Terminal.Gui.Key.ControlC
- - Terminal.Gui.Key.ControlD
- - Terminal.Gui.Key.ControlE
- - Terminal.Gui.Key.ControlF
- - Terminal.Gui.Key.ControlG
- - Terminal.Gui.Key.ControlH
- - Terminal.Gui.Key.ControlI
- - Terminal.Gui.Key.ControlJ
- - Terminal.Gui.Key.ControlK
- - Terminal.Gui.Key.ControlL
- - Terminal.Gui.Key.ControlM
- - Terminal.Gui.Key.ControlN
- - Terminal.Gui.Key.ControlO
- - Terminal.Gui.Key.ControlP
- - Terminal.Gui.Key.ControlQ
- - Terminal.Gui.Key.ControlR
- - Terminal.Gui.Key.ControlS
- - Terminal.Gui.Key.ControlSpace
- - Terminal.Gui.Key.ControlT
- - Terminal.Gui.Key.ControlU
- - Terminal.Gui.Key.ControlV
- - Terminal.Gui.Key.ControlW
- - Terminal.Gui.Key.ControlX
- - Terminal.Gui.Key.ControlY
- - Terminal.Gui.Key.ControlZ
- - Terminal.Gui.Key.CtrlMask
- - Terminal.Gui.Key.CursorDown
- - Terminal.Gui.Key.CursorLeft
- - Terminal.Gui.Key.CursorRight
- - Terminal.Gui.Key.CursorUp
- - Terminal.Gui.Key.Delete
- - Terminal.Gui.Key.DeleteChar
- - Terminal.Gui.Key.End
- - Terminal.Gui.Key.Enter
- - Terminal.Gui.Key.Esc
- - Terminal.Gui.Key.F1
- - Terminal.Gui.Key.F10
- - Terminal.Gui.Key.F2
- - Terminal.Gui.Key.F3
- - Terminal.Gui.Key.F4
- - Terminal.Gui.Key.F5
- - Terminal.Gui.Key.F6
- - Terminal.Gui.Key.F7
- - Terminal.Gui.Key.F8
- - Terminal.Gui.Key.F9
- - Terminal.Gui.Key.Home
- - Terminal.Gui.Key.InsertChar
- - Terminal.Gui.Key.PageDown
- - Terminal.Gui.Key.PageUp
- - Terminal.Gui.Key.ShiftMask
- - Terminal.Gui.Key.Space
- - Terminal.Gui.Key.SpecialMask
- - Terminal.Gui.Key.Tab
- - Terminal.Gui.Key.Unknown
- langs:
- - csharp
- - vb
- name: Key
- nameWithType: Key
- fullName: Terminal.Gui.Key
- type: Enum
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: Key
- path: ../Terminal.Gui/Event.cs
- startLine: 26
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- 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"
- 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 'A" for example is encoded as a value 65 (not surfaced in the enum).\n</p>\n"
- example: []
- syntax:
- content: >-
- [Flags]
- public enum Key : uint
- content.vb: >-
- <Flags>
- Public Enum Key As UInteger
- attributes:
- - type: System.FlagsAttribute
- ctor: System.FlagsAttribute.#ctor
- arguments: []
- modifiers.csharp:
- - public
- - enum
- modifiers.vb:
- - Public
- - Enum
- - uid: Terminal.Gui.Key.CharMask
- commentId: F:Terminal.Gui.Key.CharMask
- id: CharMask
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: CharMask
- nameWithType: Key.CharMask
- fullName: Terminal.Gui.Key.CharMask
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: CharMask
- path: ../Terminal.Gui/Event.cs
- startLine: 33
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- 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"
- example: []
- syntax:
- content: CharMask = 1048575U
- return:
- type: Terminal.Gui.Key
- content.vb: CharMask = 1048575UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.SpecialMask
- commentId: F:Terminal.Gui.Key.SpecialMask
- id: SpecialMask
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: SpecialMask
- nameWithType: Key.SpecialMask
- fullName: Terminal.Gui.Key.SpecialMask
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: SpecialMask
- path: ../Terminal.Gui/Event.cs
- startLine: 39
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- 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"
- example: []
- syntax:
- content: SpecialMask = 4293918720U
- return:
- type: Terminal.Gui.Key
- content.vb: SpecialMask = 4293918720UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlSpace
- commentId: F:Terminal.Gui.Key.ControlSpace
- id: ControlSpace
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlSpace
- nameWithType: Key.ControlSpace
- fullName: Terminal.Gui.Key.ControlSpace
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlSpace
- path: ../Terminal.Gui/Event.cs
- startLine: 44
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-spacebar\n"
- example: []
- syntax:
- content: ControlSpace = 0U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlSpace = 0UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlA
- commentId: F:Terminal.Gui.Key.ControlA
- id: ControlA
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlA
- nameWithType: Key.ControlA
- fullName: Terminal.Gui.Key.ControlA
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlA
- path: ../Terminal.Gui/Event.cs
- startLine: 49
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-A\n"
- example: []
- syntax:
- content: ControlA = 1U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlA = 1UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlB
- commentId: F:Terminal.Gui.Key.ControlB
- id: ControlB
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlB
- nameWithType: Key.ControlB
- fullName: Terminal.Gui.Key.ControlB
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlB
- path: ../Terminal.Gui/Event.cs
- startLine: 53
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-B\n"
- example: []
- syntax:
- content: ControlB = 2U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlB = 2UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlC
- commentId: F:Terminal.Gui.Key.ControlC
- id: ControlC
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlC
- nameWithType: Key.ControlC
- fullName: Terminal.Gui.Key.ControlC
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlC
- path: ../Terminal.Gui/Event.cs
- startLine: 57
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-C\n"
- example: []
- syntax:
- content: ControlC = 3U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlC = 3UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlD
- commentId: F:Terminal.Gui.Key.ControlD
- id: ControlD
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlD
- nameWithType: Key.ControlD
- fullName: Terminal.Gui.Key.ControlD
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlD
- path: ../Terminal.Gui/Event.cs
- startLine: 61
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-D\n"
- example: []
- syntax:
- content: ControlD = 4U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlD = 4UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlE
- commentId: F:Terminal.Gui.Key.ControlE
- id: ControlE
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlE
- nameWithType: Key.ControlE
- fullName: Terminal.Gui.Key.ControlE
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlE
- path: ../Terminal.Gui/Event.cs
- startLine: 65
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-E\n"
- example: []
- syntax:
- content: ControlE = 5U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlE = 5UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlF
- commentId: F:Terminal.Gui.Key.ControlF
- id: ControlF
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlF
- nameWithType: Key.ControlF
- fullName: Terminal.Gui.Key.ControlF
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlF
- path: ../Terminal.Gui/Event.cs
- startLine: 69
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-F\n"
- example: []
- syntax:
- content: ControlF = 6U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlF = 6UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlG
- commentId: F:Terminal.Gui.Key.ControlG
- id: ControlG
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlG
- nameWithType: Key.ControlG
- fullName: Terminal.Gui.Key.ControlG
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlG
- path: ../Terminal.Gui/Event.cs
- startLine: 73
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-G\n"
- example: []
- syntax:
- content: ControlG = 7U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlG = 7UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlH
- commentId: F:Terminal.Gui.Key.ControlH
- id: ControlH
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlH
- nameWithType: Key.ControlH
- fullName: Terminal.Gui.Key.ControlH
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlH
- path: ../Terminal.Gui/Event.cs
- startLine: 77
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-H\n"
- example: []
- syntax:
- content: ControlH = 8U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlH = 8UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlI
- commentId: F:Terminal.Gui.Key.ControlI
- id: ControlI
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlI
- nameWithType: Key.ControlI
- fullName: Terminal.Gui.Key.ControlI
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlI
- path: ../Terminal.Gui/Event.cs
- startLine: 81
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-I (same as the tab key).\n"
- example: []
- syntax:
- content: ControlI = 9U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlI = 9UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlJ
- commentId: F:Terminal.Gui.Key.ControlJ
- id: ControlJ
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlJ
- nameWithType: Key.ControlJ
- fullName: Terminal.Gui.Key.ControlJ
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlJ
- path: ../Terminal.Gui/Event.cs
- startLine: 85
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-J\n"
- example: []
- syntax:
- content: ControlJ = 10U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlJ = 10UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlK
- commentId: F:Terminal.Gui.Key.ControlK
- id: ControlK
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlK
- nameWithType: Key.ControlK
- fullName: Terminal.Gui.Key.ControlK
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlK
- path: ../Terminal.Gui/Event.cs
- startLine: 89
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-K\n"
- example: []
- syntax:
- content: ControlK = 11U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlK = 11UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlL
- commentId: F:Terminal.Gui.Key.ControlL
- id: ControlL
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlL
- nameWithType: Key.ControlL
- fullName: Terminal.Gui.Key.ControlL
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlL
- path: ../Terminal.Gui/Event.cs
- startLine: 93
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-L\n"
- example: []
- syntax:
- content: ControlL = 12U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlL = 12UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlM
- commentId: F:Terminal.Gui.Key.ControlM
- id: ControlM
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlM
- nameWithType: Key.ControlM
- fullName: Terminal.Gui.Key.ControlM
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlM
- path: ../Terminal.Gui/Event.cs
- startLine: 97
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-M\n"
- example: []
- syntax:
- content: ControlM = 13U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlM = 13UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlN
- commentId: F:Terminal.Gui.Key.ControlN
- id: ControlN
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlN
- nameWithType: Key.ControlN
- fullName: Terminal.Gui.Key.ControlN
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlN
- path: ../Terminal.Gui/Event.cs
- startLine: 101
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-N (same as the return key).\n"
- example: []
- syntax:
- content: ControlN = 14U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlN = 14UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlO
- commentId: F:Terminal.Gui.Key.ControlO
- id: ControlO
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlO
- nameWithType: Key.ControlO
- fullName: Terminal.Gui.Key.ControlO
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlO
- path: ../Terminal.Gui/Event.cs
- startLine: 105
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-O\n"
- example: []
- syntax:
- content: ControlO = 15U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlO = 15UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlP
- commentId: F:Terminal.Gui.Key.ControlP
- id: ControlP
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlP
- nameWithType: Key.ControlP
- fullName: Terminal.Gui.Key.ControlP
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlP
- path: ../Terminal.Gui/Event.cs
- startLine: 109
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-P\n"
- example: []
- syntax:
- content: ControlP = 16U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlP = 16UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlQ
- commentId: F:Terminal.Gui.Key.ControlQ
- id: ControlQ
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlQ
- nameWithType: Key.ControlQ
- fullName: Terminal.Gui.Key.ControlQ
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlQ
- path: ../Terminal.Gui/Event.cs
- startLine: 113
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-Q\n"
- example: []
- syntax:
- content: ControlQ = 17U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlQ = 17UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlR
- commentId: F:Terminal.Gui.Key.ControlR
- id: ControlR
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlR
- nameWithType: Key.ControlR
- fullName: Terminal.Gui.Key.ControlR
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlR
- path: ../Terminal.Gui/Event.cs
- startLine: 117
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-R\n"
- example: []
- syntax:
- content: ControlR = 18U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlR = 18UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlS
- commentId: F:Terminal.Gui.Key.ControlS
- id: ControlS
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlS
- nameWithType: Key.ControlS
- fullName: Terminal.Gui.Key.ControlS
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlS
- path: ../Terminal.Gui/Event.cs
- startLine: 121
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-S\n"
- example: []
- syntax:
- content: ControlS = 19U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlS = 19UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlT
- commentId: F:Terminal.Gui.Key.ControlT
- id: ControlT
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlT
- nameWithType: Key.ControlT
- fullName: Terminal.Gui.Key.ControlT
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlT
- path: ../Terminal.Gui/Event.cs
- startLine: 125
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-T\n"
- example: []
- syntax:
- content: ControlT = 20U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlT = 20UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlU
- commentId: F:Terminal.Gui.Key.ControlU
- id: ControlU
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlU
- nameWithType: Key.ControlU
- fullName: Terminal.Gui.Key.ControlU
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlU
- path: ../Terminal.Gui/Event.cs
- startLine: 129
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-U\n"
- example: []
- syntax:
- content: ControlU = 21U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlU = 21UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlV
- commentId: F:Terminal.Gui.Key.ControlV
- id: ControlV
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlV
- nameWithType: Key.ControlV
- fullName: Terminal.Gui.Key.ControlV
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlV
- path: ../Terminal.Gui/Event.cs
- startLine: 133
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-V\n"
- example: []
- syntax:
- content: ControlV = 22U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlV = 22UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlW
- commentId: F:Terminal.Gui.Key.ControlW
- id: ControlW
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlW
- nameWithType: Key.ControlW
- fullName: Terminal.Gui.Key.ControlW
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlW
- path: ../Terminal.Gui/Event.cs
- startLine: 137
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-W\n"
- example: []
- syntax:
- content: ControlW = 23U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlW = 23UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlX
- commentId: F:Terminal.Gui.Key.ControlX
- id: ControlX
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlX
- nameWithType: Key.ControlX
- fullName: Terminal.Gui.Key.ControlX
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlX
- path: ../Terminal.Gui/Event.cs
- startLine: 141
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-X\n"
- example: []
- syntax:
- content: ControlX = 24U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlX = 24UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlY
- commentId: F:Terminal.Gui.Key.ControlY
- id: ControlY
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlY
- nameWithType: Key.ControlY
- fullName: Terminal.Gui.Key.ControlY
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlY
- path: ../Terminal.Gui/Event.cs
- startLine: 145
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-Y\n"
- example: []
- syntax:
- content: ControlY = 25U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlY = 25UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ControlZ
- commentId: F:Terminal.Gui.Key.ControlZ
- id: ControlZ
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ControlZ
- nameWithType: Key.ControlZ
- fullName: Terminal.Gui.Key.ControlZ
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ControlZ
- path: ../Terminal.Gui/Event.cs
- startLine: 149
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing Control-Z\n"
- example: []
- syntax:
- content: ControlZ = 26U
- return:
- type: Terminal.Gui.Key
- content.vb: ControlZ = 26UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.Esc
- commentId: F:Terminal.Gui.Key.Esc
- id: Esc
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: Esc
- nameWithType: Key.Esc
- fullName: Terminal.Gui.Key.Esc
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: Esc
- path: ../Terminal.Gui/Event.cs
- startLine: 154
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing the escape key\n"
- example: []
- syntax:
- content: Esc = 27U
- return:
- type: Terminal.Gui.Key
- content.vb: Esc = 27UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.Enter
- commentId: F:Terminal.Gui.Key.Enter
- id: Enter
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: Enter
- nameWithType: Key.Enter
- fullName: Terminal.Gui.Key.Enter
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: Enter
- path: ../Terminal.Gui/Event.cs
- startLine: 159
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing the return key.\n"
- example: []
- syntax:
- content: Enter = 10U
- return:
- type: Terminal.Gui.Key
- content.vb: Enter = 10UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.Space
- commentId: F:Terminal.Gui.Key.Space
- id: Space
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: Space
- nameWithType: Key.Space
- fullName: Terminal.Gui.Key.Space
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: Space
- path: ../Terminal.Gui/Event.cs
- startLine: 164
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing the space bar\n"
- example: []
- syntax:
- content: Space = 32U
- return:
- type: Terminal.Gui.Key
- content.vb: Space = 32UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.Delete
- commentId: F:Terminal.Gui.Key.Delete
- id: Delete
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: Delete
- nameWithType: Key.Delete
- fullName: Terminal.Gui.Key.Delete
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: Delete
- path: ../Terminal.Gui/Event.cs
- startLine: 169
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing the delete key.\n"
- example: []
- syntax:
- content: Delete = 127U
- return:
- type: Terminal.Gui.Key
- content.vb: Delete = 127UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.ShiftMask
- commentId: F:Terminal.Gui.Key.ShiftMask
- id: ShiftMask
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: ShiftMask
- nameWithType: Key.ShiftMask
- fullName: Terminal.Gui.Key.ShiftMask
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: ShiftMask
- path: ../Terminal.Gui/Event.cs
- startLine: 174
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nWhen this value is set, the Key encodes the sequence Shift-KeyValue.\n"
- example: []
- syntax:
- content: ShiftMask = 268435456U
- return:
- type: Terminal.Gui.Key
- content.vb: ShiftMask = 268435456UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.AltMask
- commentId: F:Terminal.Gui.Key.AltMask
- id: AltMask
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: AltMask
- nameWithType: Key.AltMask
- fullName: Terminal.Gui.Key.AltMask
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: AltMask
- path: ../Terminal.Gui/Event.cs
- startLine: 180
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- 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"
- example: []
- syntax:
- content: AltMask = 2147483648U
- return:
- type: Terminal.Gui.Key
- content.vb: AltMask = 2147483648UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.CtrlMask
- commentId: F:Terminal.Gui.Key.CtrlMask
- id: CtrlMask
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: CtrlMask
- nameWithType: Key.CtrlMask
- fullName: Terminal.Gui.Key.CtrlMask
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: CtrlMask
- path: ../Terminal.Gui/Event.cs
- startLine: 186
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- 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"
- example: []
- syntax:
- content: CtrlMask = 1073741824U
- return:
- type: Terminal.Gui.Key
- content.vb: CtrlMask = 1073741824UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.Backspace
- commentId: F:Terminal.Gui.Key.Backspace
- id: Backspace
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: Backspace
- nameWithType: Key.Backspace
- fullName: Terminal.Gui.Key.Backspace
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: Backspace
- path: ../Terminal.Gui/Event.cs
- startLine: 191
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nBackspace key.\n"
- example: []
- syntax:
- content: Backspace = 1048576U
- return:
- type: Terminal.Gui.Key
- content.vb: Backspace = 1048576UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.CursorUp
- commentId: F:Terminal.Gui.Key.CursorUp
- id: CursorUp
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: CursorUp
- nameWithType: Key.CursorUp
- fullName: Terminal.Gui.Key.CursorUp
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: CursorUp
- path: ../Terminal.Gui/Event.cs
- startLine: 196
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nCursor up key\n"
- example: []
- syntax:
- content: CursorUp = 1048577U
- return:
- type: Terminal.Gui.Key
- content.vb: CursorUp = 1048577UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.CursorDown
- commentId: F:Terminal.Gui.Key.CursorDown
- id: CursorDown
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: CursorDown
- nameWithType: Key.CursorDown
- fullName: Terminal.Gui.Key.CursorDown
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: CursorDown
- path: ../Terminal.Gui/Event.cs
- startLine: 200
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nCursor down key.\n"
- example: []
- syntax:
- content: CursorDown = 1048578U
- return:
- type: Terminal.Gui.Key
- content.vb: CursorDown = 1048578UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.CursorLeft
- commentId: F:Terminal.Gui.Key.CursorLeft
- id: CursorLeft
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: CursorLeft
- nameWithType: Key.CursorLeft
- fullName: Terminal.Gui.Key.CursorLeft
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: CursorLeft
- path: ../Terminal.Gui/Event.cs
- startLine: 204
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nCursor left key.\n"
- example: []
- syntax:
- content: CursorLeft = 1048579U
- return:
- type: Terminal.Gui.Key
- content.vb: CursorLeft = 1048579UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.CursorRight
- commentId: F:Terminal.Gui.Key.CursorRight
- id: CursorRight
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: CursorRight
- nameWithType: Key.CursorRight
- fullName: Terminal.Gui.Key.CursorRight
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: CursorRight
- path: ../Terminal.Gui/Event.cs
- startLine: 208
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nCursor right key.\n"
- example: []
- syntax:
- content: CursorRight = 1048580U
- return:
- type: Terminal.Gui.Key
- content.vb: CursorRight = 1048580UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.PageUp
- commentId: F:Terminal.Gui.Key.PageUp
- id: PageUp
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: PageUp
- nameWithType: Key.PageUp
- fullName: Terminal.Gui.Key.PageUp
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: PageUp
- path: ../Terminal.Gui/Event.cs
- startLine: 212
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nPage Up key.\n"
- example: []
- syntax:
- content: PageUp = 1048581U
- return:
- type: Terminal.Gui.Key
- content.vb: PageUp = 1048581UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.PageDown
- commentId: F:Terminal.Gui.Key.PageDown
- id: PageDown
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: PageDown
- nameWithType: Key.PageDown
- fullName: Terminal.Gui.Key.PageDown
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: PageDown
- path: ../Terminal.Gui/Event.cs
- startLine: 216
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nPage Down key.\n"
- example: []
- syntax:
- content: PageDown = 1048582U
- return:
- type: Terminal.Gui.Key
- content.vb: PageDown = 1048582UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.Home
- commentId: F:Terminal.Gui.Key.Home
- id: Home
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: Home
- nameWithType: Key.Home
- fullName: Terminal.Gui.Key.Home
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: Home
- path: ../Terminal.Gui/Event.cs
- startLine: 220
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nHome key\n"
- example: []
- syntax:
- content: Home = 1048583U
- return:
- type: Terminal.Gui.Key
- content.vb: Home = 1048583UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.End
- commentId: F:Terminal.Gui.Key.End
- id: End
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: End
- nameWithType: Key.End
- fullName: Terminal.Gui.Key.End
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: End
- path: ../Terminal.Gui/Event.cs
- startLine: 224
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nEnd key\n"
- example: []
- syntax:
- content: End = 1048584U
- return:
- type: Terminal.Gui.Key
- content.vb: End = 1048584UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.DeleteChar
- commentId: F:Terminal.Gui.Key.DeleteChar
- id: DeleteChar
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: DeleteChar
- nameWithType: Key.DeleteChar
- fullName: Terminal.Gui.Key.DeleteChar
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: DeleteChar
- path: ../Terminal.Gui/Event.cs
- startLine: 228
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nDelete character key\n"
- example: []
- syntax:
- content: DeleteChar = 1048585U
- return:
- type: Terminal.Gui.Key
- content.vb: DeleteChar = 1048585UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.InsertChar
- commentId: F:Terminal.Gui.Key.InsertChar
- id: InsertChar
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: InsertChar
- nameWithType: Key.InsertChar
- fullName: Terminal.Gui.Key.InsertChar
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: InsertChar
- path: ../Terminal.Gui/Event.cs
- startLine: 232
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nInsert character key\n"
- example: []
- syntax:
- content: InsertChar = 1048586U
- return:
- type: Terminal.Gui.Key
- content.vb: InsertChar = 1048586UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.F1
- commentId: F:Terminal.Gui.Key.F1
- id: F1
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: F1
- nameWithType: Key.F1
- fullName: Terminal.Gui.Key.F1
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: F1
- path: ../Terminal.Gui/Event.cs
- startLine: 236
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nF1 key.\n"
- example: []
- syntax:
- content: F1 = 1048587U
- return:
- type: Terminal.Gui.Key
- content.vb: F1 = 1048587UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.F2
- commentId: F:Terminal.Gui.Key.F2
- id: F2
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: F2
- nameWithType: Key.F2
- fullName: Terminal.Gui.Key.F2
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: F2
- path: ../Terminal.Gui/Event.cs
- startLine: 240
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nF2 key.\n"
- example: []
- syntax:
- content: F2 = 1048588U
- return:
- type: Terminal.Gui.Key
- content.vb: F2 = 1048588UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.F3
- commentId: F:Terminal.Gui.Key.F3
- id: F3
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: F3
- nameWithType: Key.F3
- fullName: Terminal.Gui.Key.F3
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: F3
- path: ../Terminal.Gui/Event.cs
- startLine: 244
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nF3 key.\n"
- example: []
- syntax:
- content: F3 = 1048589U
- return:
- type: Terminal.Gui.Key
- content.vb: F3 = 1048589UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.F4
- commentId: F:Terminal.Gui.Key.F4
- id: F4
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: F4
- nameWithType: Key.F4
- fullName: Terminal.Gui.Key.F4
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: F4
- path: ../Terminal.Gui/Event.cs
- startLine: 248
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nF4 key.\n"
- example: []
- syntax:
- content: F4 = 1048590U
- return:
- type: Terminal.Gui.Key
- content.vb: F4 = 1048590UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.F5
- commentId: F:Terminal.Gui.Key.F5
- id: F5
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: F5
- nameWithType: Key.F5
- fullName: Terminal.Gui.Key.F5
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: F5
- path: ../Terminal.Gui/Event.cs
- startLine: 252
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nF5 key.\n"
- example: []
- syntax:
- content: F5 = 1048591U
- return:
- type: Terminal.Gui.Key
- content.vb: F5 = 1048591UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.F6
- commentId: F:Terminal.Gui.Key.F6
- id: F6
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: F6
- nameWithType: Key.F6
- fullName: Terminal.Gui.Key.F6
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: F6
- path: ../Terminal.Gui/Event.cs
- startLine: 256
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nF6 key.\n"
- example: []
- syntax:
- content: F6 = 1048592U
- return:
- type: Terminal.Gui.Key
- content.vb: F6 = 1048592UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.F7
- commentId: F:Terminal.Gui.Key.F7
- id: F7
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: F7
- nameWithType: Key.F7
- fullName: Terminal.Gui.Key.F7
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: F7
- path: ../Terminal.Gui/Event.cs
- startLine: 260
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nF7 key.\n"
- example: []
- syntax:
- content: F7 = 1048593U
- return:
- type: Terminal.Gui.Key
- content.vb: F7 = 1048593UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.F8
- commentId: F:Terminal.Gui.Key.F8
- id: F8
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: F8
- nameWithType: Key.F8
- fullName: Terminal.Gui.Key.F8
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: F8
- path: ../Terminal.Gui/Event.cs
- startLine: 264
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nF8 key.\n"
- example: []
- syntax:
- content: F8 = 1048594U
- return:
- type: Terminal.Gui.Key
- content.vb: F8 = 1048594UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.F9
- commentId: F:Terminal.Gui.Key.F9
- id: F9
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: F9
- nameWithType: Key.F9
- fullName: Terminal.Gui.Key.F9
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: F9
- path: ../Terminal.Gui/Event.cs
- startLine: 268
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nF9 key.\n"
- example: []
- syntax:
- content: F9 = 1048595U
- return:
- type: Terminal.Gui.Key
- content.vb: F9 = 1048595UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.F10
- commentId: F:Terminal.Gui.Key.F10
- id: F10
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: F10
- nameWithType: Key.F10
- fullName: Terminal.Gui.Key.F10
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: F10
- path: ../Terminal.Gui/Event.cs
- startLine: 272
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nF10 key.\n"
- example: []
- syntax:
- content: F10 = 1048596U
- return:
- type: Terminal.Gui.Key
- content.vb: F10 = 1048596UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.Tab
- commentId: F:Terminal.Gui.Key.Tab
- id: Tab
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: Tab
- nameWithType: Key.Tab
- fullName: Terminal.Gui.Key.Tab
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: Tab
- path: ../Terminal.Gui/Event.cs
- startLine: 276
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nThe key code for the user pressing the tab key (forwards tab key).\n"
- example: []
- syntax:
- content: Tab = 1048597U
- return:
- type: Terminal.Gui.Key
- content.vb: Tab = 1048597UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.BackTab
- commentId: F:Terminal.Gui.Key.BackTab
- id: BackTab
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: BackTab
- nameWithType: Key.BackTab
- fullName: Terminal.Gui.Key.BackTab
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: BackTab
- path: ../Terminal.Gui/Event.cs
- startLine: 280
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nShift-tab key (backwards tab key).\n"
- example: []
- syntax:
- content: BackTab = 1048598U
- return:
- type: Terminal.Gui.Key
- content.vb: BackTab = 1048598UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- - uid: Terminal.Gui.Key.Unknown
- commentId: F:Terminal.Gui.Key.Unknown
- id: Unknown
- parent: Terminal.Gui.Key
- langs:
- - csharp
- - vb
- name: Unknown
- nameWithType: Key.Unknown
- fullName: Terminal.Gui.Key.Unknown
- type: Field
- source:
- remote:
- path: Terminal.Gui/Event.cs
- branch: docs_tweaks
- repo: tig:tig/gui.cs.git
- id: Unknown
- path: ../Terminal.Gui/Event.cs
- startLine: 284
- assemblies:
- - Terminal.Gui
- namespace: Terminal.Gui
- summary: "\nA key with an unknown mapping was raised.\n"
- example: []
- syntax:
- content: Unknown = 1048599U
- return:
- type: Terminal.Gui.Key
- content.vb: Unknown = 1048599UI
- modifiers.csharp:
- - public
- - const
- modifiers.vb:
- - Public
- - Const
- references:
- - uid: Terminal.Gui.Key
- commentId: T:Terminal.Gui.Key
- parent: Terminal.Gui
- name: Key
- nameWithType: Key
- fullName: Terminal.Gui.Key
- - uid: Terminal.Gui
- commentId: N:Terminal.Gui
- name: Terminal.Gui
- nameWithType: Terminal.Gui
- fullName: Terminal.Gui
- shouldSkipMarkup: true
|