Unix.Terminal.Curses.html 314 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083
  1. <!DOCTYPE html>
  2. <!--[if IE]><![endif]-->
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7. <title>Class Curses
  8. </title>
  9. <meta name="viewport" content="width=device-width">
  10. <meta name="title" content="Class Curses
  11. ">
  12. <meta name="generator" content="docfx 2.59.4.0">
  13. <link rel="shortcut icon" href="../../favicon.ico">
  14. <link rel="stylesheet" href="../../styles/docfx.vendor.css">
  15. <link rel="stylesheet" href="../../styles/docfx.css">
  16. <link rel="stylesheet" href="../../styles/main.css">
  17. <link href="https://fonts.googleapis.com/css?family=Source Sans Pro" rel="stylesheet">
  18. <link href="https://fonts.googleapis.com/css?family=Source Code Pro" rel="stylesheet">
  19. <meta property="docfx:navrel" content="../../toc.html">
  20. <meta property="docfx:tocrel" content="toc.html">
  21. <meta property="docfx:rel" content="../../">
  22. </head> <body data-spy="scroll" data-target="#affix" data-offset="120">
  23. <div id="wrapper">
  24. <header>
  25. <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
  26. <div class="container">
  27. <div class="navbar-header">
  28. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
  29. <span class="sr-only">Toggle navigation</span>
  30. <span class="icon-bar"></span>
  31. <span class="icon-bar"></span>
  32. <span class="icon-bar"></span>
  33. </button>
  34. <a class="navbar-brand" href="../../index.html">
  35. <img id="logo" class="svg" src="../../images/logo48.png" alt="">
  36. </a>
  37. </div>
  38. <div class="collapse navbar-collapse" id="navbar">
  39. <form class="navbar-form navbar-right" role="search" id="search">
  40. <div class="form-group">
  41. <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
  42. </div>
  43. </form>
  44. </div>
  45. </div>
  46. </nav>
  47. <div class="subnav navbar navbar-default">
  48. <div class="container hide-when-search" id="breadcrumb">
  49. <ul class="breadcrumb">
  50. <li></li>
  51. </ul>
  52. </div>
  53. </div>
  54. </header>
  55. <div class="container body-content">
  56. <div id="search-results">
  57. <div class="search-list">Search Results for <span></span></div>
  58. <div class="sr-items">
  59. <p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
  60. </div>
  61. <ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul>
  62. </div>
  63. </div>
  64. <div role="main" class="container body-content hide-when-search">
  65. <div class="sidenav hide-when-search">
  66. <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
  67. <div class="sidetoggle collapse" id="sidetoggle">
  68. <div id="sidetoc"></div>
  69. </div>
  70. </div>
  71. <div class="article row grid-right">
  72. <div class="col-md-10">
  73. <article class="content wrap" id="_content" data-uid="Unix.Terminal.Curses">
  74. <h1 id="Unix_Terminal_Curses" data-uid="Unix.Terminal.Curses" class="text-break">Class Curses
  75. </h1>
  76. <div class="markdown level0 summary"></div>
  77. <div class="markdown level0 conceptual"></div>
  78. <div class="inheritance">
  79. <h5>Inheritance</h5>
  80. <div class="level0"><span class="xref">System.Object</span></div>
  81. <div class="level1"><span class="xref">Curses</span></div>
  82. </div>
  83. <div class="inheritedMembers">
  84. <h5>Inherited Members</h5>
  85. <div>
  86. <span class="xref">System.Object.Equals(System.Object)</span>
  87. </div>
  88. <div>
  89. <span class="xref">System.Object.Equals(System.Object, System.Object)</span>
  90. </div>
  91. <div>
  92. <span class="xref">System.Object.GetHashCode()</span>
  93. </div>
  94. <div>
  95. <span class="xref">System.Object.GetType()</span>
  96. </div>
  97. <div>
  98. <span class="xref">System.Object.MemberwiseClone()</span>
  99. </div>
  100. <div>
  101. <span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
  102. </div>
  103. <div>
  104. <span class="xref">System.Object.ToString()</span>
  105. </div>
  106. </div>
  107. <h6><strong>Namespace</strong>: <a class="xref" href="Unix.Terminal.html">Unix.Terminal</a></h6>
  108. <h6><strong>Assembly</strong>: Terminal.Gui.dll</h6>
  109. <h5 id="Unix_Terminal_Curses_syntax">Syntax</h5>
  110. <div class="codewrapper">
  111. <pre><code class="lang-csharp hljs">public class Curses</code></pre>
  112. </div>
  113. <h3 id="fields">Fields
  114. </h3>
  115. <span class="small pull-right mobile-hide">
  116. <span class="divider">|</span>
  117. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_A_BLINK.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.A_BLINK%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  118. </span>
  119. <span class="small pull-right mobile-hide">
  120. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L16">View Source</a>
  121. </span>
  122. <h4 id="Unix_Terminal_Curses_A_BLINK" data-uid="Unix.Terminal.Curses.A_BLINK">A_BLINK</h4>
  123. <div class="markdown level1 summary"></div>
  124. <div class="markdown level1 conceptual"></div>
  125. <h5 class="decalaration">Declaration</h5>
  126. <div class="codewrapper">
  127. <pre><code class="lang-csharp hljs">public const int A_BLINK = 524288</code></pre>
  128. </div>
  129. <h5 class="fieldValue">Field Value</h5>
  130. <table class="table table-bordered table-striped table-condensed">
  131. <thead>
  132. <tr>
  133. <th>Type</th>
  134. <th>Description</th>
  135. </tr>
  136. </thead>
  137. <tbody>
  138. <tr>
  139. <td><span class="xref">System.Int32</span></td>
  140. <td></td>
  141. </tr>
  142. </tbody>
  143. </table>
  144. <span class="small pull-right mobile-hide">
  145. <span class="divider">|</span>
  146. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_A_BOLD.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.A_BOLD%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  147. </span>
  148. <span class="small pull-right mobile-hide">
  149. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L18">View Source</a>
  150. </span>
  151. <h4 id="Unix_Terminal_Curses_A_BOLD" data-uid="Unix.Terminal.Curses.A_BOLD">A_BOLD</h4>
  152. <div class="markdown level1 summary"></div>
  153. <div class="markdown level1 conceptual"></div>
  154. <h5 class="decalaration">Declaration</h5>
  155. <div class="codewrapper">
  156. <pre><code class="lang-csharp hljs">public const int A_BOLD = 2097152</code></pre>
  157. </div>
  158. <h5 class="fieldValue">Field Value</h5>
  159. <table class="table table-bordered table-striped table-condensed">
  160. <thead>
  161. <tr>
  162. <th>Type</th>
  163. <th>Description</th>
  164. </tr>
  165. </thead>
  166. <tbody>
  167. <tr>
  168. <td><span class="xref">System.Int32</span></td>
  169. <td></td>
  170. </tr>
  171. </tbody>
  172. </table>
  173. <span class="small pull-right mobile-hide">
  174. <span class="divider">|</span>
  175. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_A_DIM.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.A_DIM%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  176. </span>
  177. <span class="small pull-right mobile-hide">
  178. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L17">View Source</a>
  179. </span>
  180. <h4 id="Unix_Terminal_Curses_A_DIM" data-uid="Unix.Terminal.Curses.A_DIM">A_DIM</h4>
  181. <div class="markdown level1 summary"></div>
  182. <div class="markdown level1 conceptual"></div>
  183. <h5 class="decalaration">Declaration</h5>
  184. <div class="codewrapper">
  185. <pre><code class="lang-csharp hljs">public const int A_DIM = 1048576</code></pre>
  186. </div>
  187. <h5 class="fieldValue">Field Value</h5>
  188. <table class="table table-bordered table-striped table-condensed">
  189. <thead>
  190. <tr>
  191. <th>Type</th>
  192. <th>Description</th>
  193. </tr>
  194. </thead>
  195. <tbody>
  196. <tr>
  197. <td><span class="xref">System.Int32</span></td>
  198. <td></td>
  199. </tr>
  200. </tbody>
  201. </table>
  202. <span class="small pull-right mobile-hide">
  203. <span class="divider">|</span>
  204. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_A_INVIS.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.A_INVIS%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  205. </span>
  206. <span class="small pull-right mobile-hide">
  207. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L20">View Source</a>
  208. </span>
  209. <h4 id="Unix_Terminal_Curses_A_INVIS" data-uid="Unix.Terminal.Curses.A_INVIS">A_INVIS</h4>
  210. <div class="markdown level1 summary"></div>
  211. <div class="markdown level1 conceptual"></div>
  212. <h5 class="decalaration">Declaration</h5>
  213. <div class="codewrapper">
  214. <pre><code class="lang-csharp hljs">public const int A_INVIS = 8388608</code></pre>
  215. </div>
  216. <h5 class="fieldValue">Field Value</h5>
  217. <table class="table table-bordered table-striped table-condensed">
  218. <thead>
  219. <tr>
  220. <th>Type</th>
  221. <th>Description</th>
  222. </tr>
  223. </thead>
  224. <tbody>
  225. <tr>
  226. <td><span class="xref">System.Int32</span></td>
  227. <td></td>
  228. </tr>
  229. </tbody>
  230. </table>
  231. <span class="small pull-right mobile-hide">
  232. <span class="divider">|</span>
  233. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_A_NORMAL.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.A_NORMAL%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  234. </span>
  235. <span class="small pull-right mobile-hide">
  236. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L12">View Source</a>
  237. </span>
  238. <h4 id="Unix_Terminal_Curses_A_NORMAL" data-uid="Unix.Terminal.Curses.A_NORMAL">A_NORMAL</h4>
  239. <div class="markdown level1 summary"></div>
  240. <div class="markdown level1 conceptual"></div>
  241. <h5 class="decalaration">Declaration</h5>
  242. <div class="codewrapper">
  243. <pre><code class="lang-csharp hljs">public const int A_NORMAL = 0</code></pre>
  244. </div>
  245. <h5 class="fieldValue">Field Value</h5>
  246. <table class="table table-bordered table-striped table-condensed">
  247. <thead>
  248. <tr>
  249. <th>Type</th>
  250. <th>Description</th>
  251. </tr>
  252. </thead>
  253. <tbody>
  254. <tr>
  255. <td><span class="xref">System.Int32</span></td>
  256. <td></td>
  257. </tr>
  258. </tbody>
  259. </table>
  260. <span class="small pull-right mobile-hide">
  261. <span class="divider">|</span>
  262. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_A_PROTECT.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.A_PROTECT%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  263. </span>
  264. <span class="small pull-right mobile-hide">
  265. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L19">View Source</a>
  266. </span>
  267. <h4 id="Unix_Terminal_Curses_A_PROTECT" data-uid="Unix.Terminal.Curses.A_PROTECT">A_PROTECT</h4>
  268. <div class="markdown level1 summary"></div>
  269. <div class="markdown level1 conceptual"></div>
  270. <h5 class="decalaration">Declaration</h5>
  271. <div class="codewrapper">
  272. <pre><code class="lang-csharp hljs">public const int A_PROTECT = 16777216</code></pre>
  273. </div>
  274. <h5 class="fieldValue">Field Value</h5>
  275. <table class="table table-bordered table-striped table-condensed">
  276. <thead>
  277. <tr>
  278. <th>Type</th>
  279. <th>Description</th>
  280. </tr>
  281. </thead>
  282. <tbody>
  283. <tr>
  284. <td><span class="xref">System.Int32</span></td>
  285. <td></td>
  286. </tr>
  287. </tbody>
  288. </table>
  289. <span class="small pull-right mobile-hide">
  290. <span class="divider">|</span>
  291. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_A_REVERSE.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.A_REVERSE%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  292. </span>
  293. <span class="small pull-right mobile-hide">
  294. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L15">View Source</a>
  295. </span>
  296. <h4 id="Unix_Terminal_Curses_A_REVERSE" data-uid="Unix.Terminal.Curses.A_REVERSE">A_REVERSE</h4>
  297. <div class="markdown level1 summary"></div>
  298. <div class="markdown level1 conceptual"></div>
  299. <h5 class="decalaration">Declaration</h5>
  300. <div class="codewrapper">
  301. <pre><code class="lang-csharp hljs">public const int A_REVERSE = 262144</code></pre>
  302. </div>
  303. <h5 class="fieldValue">Field Value</h5>
  304. <table class="table table-bordered table-striped table-condensed">
  305. <thead>
  306. <tr>
  307. <th>Type</th>
  308. <th>Description</th>
  309. </tr>
  310. </thead>
  311. <tbody>
  312. <tr>
  313. <td><span class="xref">System.Int32</span></td>
  314. <td></td>
  315. </tr>
  316. </tbody>
  317. </table>
  318. <span class="small pull-right mobile-hide">
  319. <span class="divider">|</span>
  320. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_A_STANDOUT.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.A_STANDOUT%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  321. </span>
  322. <span class="small pull-right mobile-hide">
  323. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L13">View Source</a>
  324. </span>
  325. <h4 id="Unix_Terminal_Curses_A_STANDOUT" data-uid="Unix.Terminal.Curses.A_STANDOUT">A_STANDOUT</h4>
  326. <div class="markdown level1 summary"></div>
  327. <div class="markdown level1 conceptual"></div>
  328. <h5 class="decalaration">Declaration</h5>
  329. <div class="codewrapper">
  330. <pre><code class="lang-csharp hljs">public const int A_STANDOUT = 65536</code></pre>
  331. </div>
  332. <h5 class="fieldValue">Field Value</h5>
  333. <table class="table table-bordered table-striped table-condensed">
  334. <thead>
  335. <tr>
  336. <th>Type</th>
  337. <th>Description</th>
  338. </tr>
  339. </thead>
  340. <tbody>
  341. <tr>
  342. <td><span class="xref">System.Int32</span></td>
  343. <td></td>
  344. </tr>
  345. </tbody>
  346. </table>
  347. <span class="small pull-right mobile-hide">
  348. <span class="divider">|</span>
  349. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_A_UNDERLINE.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.A_UNDERLINE%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  350. </span>
  351. <span class="small pull-right mobile-hide">
  352. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L14">View Source</a>
  353. </span>
  354. <h4 id="Unix_Terminal_Curses_A_UNDERLINE" data-uid="Unix.Terminal.Curses.A_UNDERLINE">A_UNDERLINE</h4>
  355. <div class="markdown level1 summary"></div>
  356. <div class="markdown level1 conceptual"></div>
  357. <h5 class="decalaration">Declaration</h5>
  358. <div class="codewrapper">
  359. <pre><code class="lang-csharp hljs">public const int A_UNDERLINE = 131072</code></pre>
  360. </div>
  361. <h5 class="fieldValue">Field Value</h5>
  362. <table class="table table-bordered table-striped table-condensed">
  363. <thead>
  364. <tr>
  365. <th>Type</th>
  366. <th>Description</th>
  367. </tr>
  368. </thead>
  369. <tbody>
  370. <tr>
  371. <td><span class="xref">System.Int32</span></td>
  372. <td></td>
  373. </tr>
  374. </tbody>
  375. </table>
  376. <span class="small pull-right mobile-hide">
  377. <span class="divider">|</span>
  378. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_BLOCK.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_BLOCK%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  379. </span>
  380. <span class="small pull-right mobile-hide">
  381. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L45">View Source</a>
  382. </span>
  383. <h4 id="Unix_Terminal_Curses_ACS_BLOCK" data-uid="Unix.Terminal.Curses.ACS_BLOCK">ACS_BLOCK</h4>
  384. <div class="markdown level1 summary"></div>
  385. <div class="markdown level1 conceptual"></div>
  386. <h5 class="decalaration">Declaration</h5>
  387. <div class="codewrapper">
  388. <pre><code class="lang-csharp hljs">public const int ACS_BLOCK = 4194352</code></pre>
  389. </div>
  390. <h5 class="fieldValue">Field Value</h5>
  391. <table class="table table-bordered table-striped table-condensed">
  392. <thead>
  393. <tr>
  394. <th>Type</th>
  395. <th>Description</th>
  396. </tr>
  397. </thead>
  398. <tbody>
  399. <tr>
  400. <td><span class="xref">System.Int32</span></td>
  401. <td></td>
  402. </tr>
  403. </tbody>
  404. </table>
  405. <span class="small pull-right mobile-hide">
  406. <span class="divider">|</span>
  407. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_BOARD.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_BOARD%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  408. </span>
  409. <span class="small pull-right mobile-hide">
  410. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L43">View Source</a>
  411. </span>
  412. <h4 id="Unix_Terminal_Curses_ACS_BOARD" data-uid="Unix.Terminal.Curses.ACS_BOARD">ACS_BOARD</h4>
  413. <div class="markdown level1 summary"></div>
  414. <div class="markdown level1 conceptual"></div>
  415. <h5 class="decalaration">Declaration</h5>
  416. <div class="codewrapper">
  417. <pre><code class="lang-csharp hljs">public const int ACS_BOARD = 4194408</code></pre>
  418. </div>
  419. <h5 class="fieldValue">Field Value</h5>
  420. <table class="table table-bordered table-striped table-condensed">
  421. <thead>
  422. <tr>
  423. <th>Type</th>
  424. <th>Description</th>
  425. </tr>
  426. </thead>
  427. <tbody>
  428. <tr>
  429. <td><span class="xref">System.Int32</span></td>
  430. <td></td>
  431. </tr>
  432. </tbody>
  433. </table>
  434. <span class="small pull-right mobile-hide">
  435. <span class="divider">|</span>
  436. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_BTEE.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_BTEE%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  437. </span>
  438. <span class="small pull-right mobile-hide">
  439. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L29">View Source</a>
  440. </span>
  441. <h4 id="Unix_Terminal_Curses_ACS_BTEE" data-uid="Unix.Terminal.Curses.ACS_BTEE">ACS_BTEE</h4>
  442. <div class="markdown level1 summary"></div>
  443. <div class="markdown level1 conceptual"></div>
  444. <h5 class="decalaration">Declaration</h5>
  445. <div class="codewrapper">
  446. <pre><code class="lang-csharp hljs">public const int ACS_BTEE = 4194422</code></pre>
  447. </div>
  448. <h5 class="fieldValue">Field Value</h5>
  449. <table class="table table-bordered table-striped table-condensed">
  450. <thead>
  451. <tr>
  452. <th>Type</th>
  453. <th>Description</th>
  454. </tr>
  455. </thead>
  456. <tbody>
  457. <tr>
  458. <td><span class="xref">System.Int32</span></td>
  459. <td></td>
  460. </tr>
  461. </tbody>
  462. </table>
  463. <span class="small pull-right mobile-hide">
  464. <span class="divider">|</span>
  465. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_BULLET.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_BULLET%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  466. </span>
  467. <span class="small pull-right mobile-hide">
  468. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L38">View Source</a>
  469. </span>
  470. <h4 id="Unix_Terminal_Curses_ACS_BULLET" data-uid="Unix.Terminal.Curses.ACS_BULLET">ACS_BULLET</h4>
  471. <div class="markdown level1 summary"></div>
  472. <div class="markdown level1 conceptual"></div>
  473. <h5 class="decalaration">Declaration</h5>
  474. <div class="codewrapper">
  475. <pre><code class="lang-csharp hljs">public const int ACS_BULLET = 4194430</code></pre>
  476. </div>
  477. <h5 class="fieldValue">Field Value</h5>
  478. <table class="table table-bordered table-striped table-condensed">
  479. <thead>
  480. <tr>
  481. <th>Type</th>
  482. <th>Description</th>
  483. </tr>
  484. </thead>
  485. <tbody>
  486. <tr>
  487. <td><span class="xref">System.Int32</span></td>
  488. <td></td>
  489. </tr>
  490. </tbody>
  491. </table>
  492. <span class="small pull-right mobile-hide">
  493. <span class="divider">|</span>
  494. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_CKBOARD.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_CKBOARD%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  495. </span>
  496. <span class="small pull-right mobile-hide">
  497. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L35">View Source</a>
  498. </span>
  499. <h4 id="Unix_Terminal_Curses_ACS_CKBOARD" data-uid="Unix.Terminal.Curses.ACS_CKBOARD">ACS_CKBOARD</h4>
  500. <div class="markdown level1 summary"></div>
  501. <div class="markdown level1 conceptual"></div>
  502. <h5 class="decalaration">Declaration</h5>
  503. <div class="codewrapper">
  504. <pre><code class="lang-csharp hljs">public const int ACS_CKBOARD = 4194401</code></pre>
  505. </div>
  506. <h5 class="fieldValue">Field Value</h5>
  507. <table class="table table-bordered table-striped table-condensed">
  508. <thead>
  509. <tr>
  510. <th>Type</th>
  511. <th>Description</th>
  512. </tr>
  513. </thead>
  514. <tbody>
  515. <tr>
  516. <td><span class="xref">System.Int32</span></td>
  517. <td></td>
  518. </tr>
  519. </tbody>
  520. </table>
  521. <span class="small pull-right mobile-hide">
  522. <span class="divider">|</span>
  523. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_DARROW.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_DARROW%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  524. </span>
  525. <span class="small pull-right mobile-hide">
  526. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L41">View Source</a>
  527. </span>
  528. <h4 id="Unix_Terminal_Curses_ACS_DARROW" data-uid="Unix.Terminal.Curses.ACS_DARROW">ACS_DARROW</h4>
  529. <div class="markdown level1 summary"></div>
  530. <div class="markdown level1 conceptual"></div>
  531. <h5 class="decalaration">Declaration</h5>
  532. <div class="codewrapper">
  533. <pre><code class="lang-csharp hljs">public const int ACS_DARROW = 4194350</code></pre>
  534. </div>
  535. <h5 class="fieldValue">Field Value</h5>
  536. <table class="table table-bordered table-striped table-condensed">
  537. <thead>
  538. <tr>
  539. <th>Type</th>
  540. <th>Description</th>
  541. </tr>
  542. </thead>
  543. <tbody>
  544. <tr>
  545. <td><span class="xref">System.Int32</span></td>
  546. <td></td>
  547. </tr>
  548. </tbody>
  549. </table>
  550. <span class="small pull-right mobile-hide">
  551. <span class="divider">|</span>
  552. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_DEGREE.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_DEGREE%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  553. </span>
  554. <span class="small pull-right mobile-hide">
  555. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L36">View Source</a>
  556. </span>
  557. <h4 id="Unix_Terminal_Curses_ACS_DEGREE" data-uid="Unix.Terminal.Curses.ACS_DEGREE">ACS_DEGREE</h4>
  558. <div class="markdown level1 summary"></div>
  559. <div class="markdown level1 conceptual"></div>
  560. <h5 class="decalaration">Declaration</h5>
  561. <div class="codewrapper">
  562. <pre><code class="lang-csharp hljs">public const int ACS_DEGREE = 4194406</code></pre>
  563. </div>
  564. <h5 class="fieldValue">Field Value</h5>
  565. <table class="table table-bordered table-striped table-condensed">
  566. <thead>
  567. <tr>
  568. <th>Type</th>
  569. <th>Description</th>
  570. </tr>
  571. </thead>
  572. <tbody>
  573. <tr>
  574. <td><span class="xref">System.Int32</span></td>
  575. <td></td>
  576. </tr>
  577. </tbody>
  578. </table>
  579. <span class="small pull-right mobile-hide">
  580. <span class="divider">|</span>
  581. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_DIAMOND.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_DIAMOND%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  582. </span>
  583. <span class="small pull-right mobile-hide">
  584. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L34">View Source</a>
  585. </span>
  586. <h4 id="Unix_Terminal_Curses_ACS_DIAMOND" data-uid="Unix.Terminal.Curses.ACS_DIAMOND">ACS_DIAMOND</h4>
  587. <div class="markdown level1 summary"></div>
  588. <div class="markdown level1 conceptual"></div>
  589. <h5 class="decalaration">Declaration</h5>
  590. <div class="codewrapper">
  591. <pre><code class="lang-csharp hljs">public const int ACS_DIAMOND = 4194400</code></pre>
  592. </div>
  593. <h5 class="fieldValue">Field Value</h5>
  594. <table class="table table-bordered table-striped table-condensed">
  595. <thead>
  596. <tr>
  597. <th>Type</th>
  598. <th>Description</th>
  599. </tr>
  600. </thead>
  601. <tbody>
  602. <tr>
  603. <td><span class="xref">System.Int32</span></td>
  604. <td></td>
  605. </tr>
  606. </tbody>
  607. </table>
  608. <span class="small pull-right mobile-hide">
  609. <span class="divider">|</span>
  610. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_HLINE.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_HLINE%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  611. </span>
  612. <span class="small pull-right mobile-hide">
  613. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L23">View Source</a>
  614. </span>
  615. <h4 id="Unix_Terminal_Curses_ACS_HLINE" data-uid="Unix.Terminal.Curses.ACS_HLINE">ACS_HLINE</h4>
  616. <div class="markdown level1 summary"></div>
  617. <div class="markdown level1 conceptual"></div>
  618. <h5 class="decalaration">Declaration</h5>
  619. <div class="codewrapper">
  620. <pre><code class="lang-csharp hljs">public const int ACS_HLINE = 4194417</code></pre>
  621. </div>
  622. <h5 class="fieldValue">Field Value</h5>
  623. <table class="table table-bordered table-striped table-condensed">
  624. <thead>
  625. <tr>
  626. <th>Type</th>
  627. <th>Description</th>
  628. </tr>
  629. </thead>
  630. <tbody>
  631. <tr>
  632. <td><span class="xref">System.Int32</span></td>
  633. <td></td>
  634. </tr>
  635. </tbody>
  636. </table>
  637. <span class="small pull-right mobile-hide">
  638. <span class="divider">|</span>
  639. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_LANTERN.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_LANTERN%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  640. </span>
  641. <span class="small pull-right mobile-hide">
  642. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L44">View Source</a>
  643. </span>
  644. <h4 id="Unix_Terminal_Curses_ACS_LANTERN" data-uid="Unix.Terminal.Curses.ACS_LANTERN">ACS_LANTERN</h4>
  645. <div class="markdown level1 summary"></div>
  646. <div class="markdown level1 conceptual"></div>
  647. <h5 class="decalaration">Declaration</h5>
  648. <div class="codewrapper">
  649. <pre><code class="lang-csharp hljs">public const int ACS_LANTERN = 4194409</code></pre>
  650. </div>
  651. <h5 class="fieldValue">Field Value</h5>
  652. <table class="table table-bordered table-striped table-condensed">
  653. <thead>
  654. <tr>
  655. <th>Type</th>
  656. <th>Description</th>
  657. </tr>
  658. </thead>
  659. <tbody>
  660. <tr>
  661. <td><span class="xref">System.Int32</span></td>
  662. <td></td>
  663. </tr>
  664. </tbody>
  665. </table>
  666. <span class="small pull-right mobile-hide">
  667. <span class="divider">|</span>
  668. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_LARROW.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_LARROW%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  669. </span>
  670. <span class="small pull-right mobile-hide">
  671. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L39">View Source</a>
  672. </span>
  673. <h4 id="Unix_Terminal_Curses_ACS_LARROW" data-uid="Unix.Terminal.Curses.ACS_LARROW">ACS_LARROW</h4>
  674. <div class="markdown level1 summary"></div>
  675. <div class="markdown level1 conceptual"></div>
  676. <h5 class="decalaration">Declaration</h5>
  677. <div class="codewrapper">
  678. <pre><code class="lang-csharp hljs">public const int ACS_LARROW = 4194348</code></pre>
  679. </div>
  680. <h5 class="fieldValue">Field Value</h5>
  681. <table class="table table-bordered table-striped table-condensed">
  682. <thead>
  683. <tr>
  684. <th>Type</th>
  685. <th>Description</th>
  686. </tr>
  687. </thead>
  688. <tbody>
  689. <tr>
  690. <td><span class="xref">System.Int32</span></td>
  691. <td></td>
  692. </tr>
  693. </tbody>
  694. </table>
  695. <span class="small pull-right mobile-hide">
  696. <span class="divider">|</span>
  697. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_LLCORNER.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_LLCORNER%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  698. </span>
  699. <span class="small pull-right mobile-hide">
  700. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L21">View Source</a>
  701. </span>
  702. <h4 id="Unix_Terminal_Curses_ACS_LLCORNER" data-uid="Unix.Terminal.Curses.ACS_LLCORNER">ACS_LLCORNER</h4>
  703. <div class="markdown level1 summary"></div>
  704. <div class="markdown level1 conceptual"></div>
  705. <h5 class="decalaration">Declaration</h5>
  706. <div class="codewrapper">
  707. <pre><code class="lang-csharp hljs">public const int ACS_LLCORNER = 4194413</code></pre>
  708. </div>
  709. <h5 class="fieldValue">Field Value</h5>
  710. <table class="table table-bordered table-striped table-condensed">
  711. <thead>
  712. <tr>
  713. <th>Type</th>
  714. <th>Description</th>
  715. </tr>
  716. </thead>
  717. <tbody>
  718. <tr>
  719. <td><span class="xref">System.Int32</span></td>
  720. <td></td>
  721. </tr>
  722. </tbody>
  723. </table>
  724. <span class="small pull-right mobile-hide">
  725. <span class="divider">|</span>
  726. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_LRCORNER.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_LRCORNER%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  727. </span>
  728. <span class="small pull-right mobile-hide">
  729. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L22">View Source</a>
  730. </span>
  731. <h4 id="Unix_Terminal_Curses_ACS_LRCORNER" data-uid="Unix.Terminal.Curses.ACS_LRCORNER">ACS_LRCORNER</h4>
  732. <div class="markdown level1 summary"></div>
  733. <div class="markdown level1 conceptual"></div>
  734. <h5 class="decalaration">Declaration</h5>
  735. <div class="codewrapper">
  736. <pre><code class="lang-csharp hljs">public const int ACS_LRCORNER = 4194410</code></pre>
  737. </div>
  738. <h5 class="fieldValue">Field Value</h5>
  739. <table class="table table-bordered table-striped table-condensed">
  740. <thead>
  741. <tr>
  742. <th>Type</th>
  743. <th>Description</th>
  744. </tr>
  745. </thead>
  746. <tbody>
  747. <tr>
  748. <td><span class="xref">System.Int32</span></td>
  749. <td></td>
  750. </tr>
  751. </tbody>
  752. </table>
  753. <span class="small pull-right mobile-hide">
  754. <span class="divider">|</span>
  755. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_LTEE.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_LTEE%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  756. </span>
  757. <span class="small pull-right mobile-hide">
  758. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L27">View Source</a>
  759. </span>
  760. <h4 id="Unix_Terminal_Curses_ACS_LTEE" data-uid="Unix.Terminal.Curses.ACS_LTEE">ACS_LTEE</h4>
  761. <div class="markdown level1 summary"></div>
  762. <div class="markdown level1 conceptual"></div>
  763. <h5 class="decalaration">Declaration</h5>
  764. <div class="codewrapper">
  765. <pre><code class="lang-csharp hljs">public const int ACS_LTEE = 4194420</code></pre>
  766. </div>
  767. <h5 class="fieldValue">Field Value</h5>
  768. <table class="table table-bordered table-striped table-condensed">
  769. <thead>
  770. <tr>
  771. <th>Type</th>
  772. <th>Description</th>
  773. </tr>
  774. </thead>
  775. <tbody>
  776. <tr>
  777. <td><span class="xref">System.Int32</span></td>
  778. <td></td>
  779. </tr>
  780. </tbody>
  781. </table>
  782. <span class="small pull-right mobile-hide">
  783. <span class="divider">|</span>
  784. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_PLMINUS.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_PLMINUS%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  785. </span>
  786. <span class="small pull-right mobile-hide">
  787. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L37">View Source</a>
  788. </span>
  789. <h4 id="Unix_Terminal_Curses_ACS_PLMINUS" data-uid="Unix.Terminal.Curses.ACS_PLMINUS">ACS_PLMINUS</h4>
  790. <div class="markdown level1 summary"></div>
  791. <div class="markdown level1 conceptual"></div>
  792. <h5 class="decalaration">Declaration</h5>
  793. <div class="codewrapper">
  794. <pre><code class="lang-csharp hljs">public const int ACS_PLMINUS = 4194407</code></pre>
  795. </div>
  796. <h5 class="fieldValue">Field Value</h5>
  797. <table class="table table-bordered table-striped table-condensed">
  798. <thead>
  799. <tr>
  800. <th>Type</th>
  801. <th>Description</th>
  802. </tr>
  803. </thead>
  804. <tbody>
  805. <tr>
  806. <td><span class="xref">System.Int32</span></td>
  807. <td></td>
  808. </tr>
  809. </tbody>
  810. </table>
  811. <span class="small pull-right mobile-hide">
  812. <span class="divider">|</span>
  813. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_PLUS.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_PLUS%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  814. </span>
  815. <span class="small pull-right mobile-hide">
  816. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L31">View Source</a>
  817. </span>
  818. <h4 id="Unix_Terminal_Curses_ACS_PLUS" data-uid="Unix.Terminal.Curses.ACS_PLUS">ACS_PLUS</h4>
  819. <div class="markdown level1 summary"></div>
  820. <div class="markdown level1 conceptual"></div>
  821. <h5 class="decalaration">Declaration</h5>
  822. <div class="codewrapper">
  823. <pre><code class="lang-csharp hljs">public const int ACS_PLUS = 4194414</code></pre>
  824. </div>
  825. <h5 class="fieldValue">Field Value</h5>
  826. <table class="table table-bordered table-striped table-condensed">
  827. <thead>
  828. <tr>
  829. <th>Type</th>
  830. <th>Description</th>
  831. </tr>
  832. </thead>
  833. <tbody>
  834. <tr>
  835. <td><span class="xref">System.Int32</span></td>
  836. <td></td>
  837. </tr>
  838. </tbody>
  839. </table>
  840. <span class="small pull-right mobile-hide">
  841. <span class="divider">|</span>
  842. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_RARROW.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_RARROW%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  843. </span>
  844. <span class="small pull-right mobile-hide">
  845. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L40">View Source</a>
  846. </span>
  847. <h4 id="Unix_Terminal_Curses_ACS_RARROW" data-uid="Unix.Terminal.Curses.ACS_RARROW">ACS_RARROW</h4>
  848. <div class="markdown level1 summary"></div>
  849. <div class="markdown level1 conceptual"></div>
  850. <h5 class="decalaration">Declaration</h5>
  851. <div class="codewrapper">
  852. <pre><code class="lang-csharp hljs">public const int ACS_RARROW = 4194347</code></pre>
  853. </div>
  854. <h5 class="fieldValue">Field Value</h5>
  855. <table class="table table-bordered table-striped table-condensed">
  856. <thead>
  857. <tr>
  858. <th>Type</th>
  859. <th>Description</th>
  860. </tr>
  861. </thead>
  862. <tbody>
  863. <tr>
  864. <td><span class="xref">System.Int32</span></td>
  865. <td></td>
  866. </tr>
  867. </tbody>
  868. </table>
  869. <span class="small pull-right mobile-hide">
  870. <span class="divider">|</span>
  871. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_RTEE.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_RTEE%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  872. </span>
  873. <span class="small pull-right mobile-hide">
  874. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L28">View Source</a>
  875. </span>
  876. <h4 id="Unix_Terminal_Curses_ACS_RTEE" data-uid="Unix.Terminal.Curses.ACS_RTEE">ACS_RTEE</h4>
  877. <div class="markdown level1 summary"></div>
  878. <div class="markdown level1 conceptual"></div>
  879. <h5 class="decalaration">Declaration</h5>
  880. <div class="codewrapper">
  881. <pre><code class="lang-csharp hljs">public const int ACS_RTEE = 4194421</code></pre>
  882. </div>
  883. <h5 class="fieldValue">Field Value</h5>
  884. <table class="table table-bordered table-striped table-condensed">
  885. <thead>
  886. <tr>
  887. <th>Type</th>
  888. <th>Description</th>
  889. </tr>
  890. </thead>
  891. <tbody>
  892. <tr>
  893. <td><span class="xref">System.Int32</span></td>
  894. <td></td>
  895. </tr>
  896. </tbody>
  897. </table>
  898. <span class="small pull-right mobile-hide">
  899. <span class="divider">|</span>
  900. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_S1.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_S1%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  901. </span>
  902. <span class="small pull-right mobile-hide">
  903. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L32">View Source</a>
  904. </span>
  905. <h4 id="Unix_Terminal_Curses_ACS_S1" data-uid="Unix.Terminal.Curses.ACS_S1">ACS_S1</h4>
  906. <div class="markdown level1 summary"></div>
  907. <div class="markdown level1 conceptual"></div>
  908. <h5 class="decalaration">Declaration</h5>
  909. <div class="codewrapper">
  910. <pre><code class="lang-csharp hljs">public const int ACS_S1 = 4194415</code></pre>
  911. </div>
  912. <h5 class="fieldValue">Field Value</h5>
  913. <table class="table table-bordered table-striped table-condensed">
  914. <thead>
  915. <tr>
  916. <th>Type</th>
  917. <th>Description</th>
  918. </tr>
  919. </thead>
  920. <tbody>
  921. <tr>
  922. <td><span class="xref">System.Int32</span></td>
  923. <td></td>
  924. </tr>
  925. </tbody>
  926. </table>
  927. <span class="small pull-right mobile-hide">
  928. <span class="divider">|</span>
  929. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_S9.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_S9%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  930. </span>
  931. <span class="small pull-right mobile-hide">
  932. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L33">View Source</a>
  933. </span>
  934. <h4 id="Unix_Terminal_Curses_ACS_S9" data-uid="Unix.Terminal.Curses.ACS_S9">ACS_S9</h4>
  935. <div class="markdown level1 summary"></div>
  936. <div class="markdown level1 conceptual"></div>
  937. <h5 class="decalaration">Declaration</h5>
  938. <div class="codewrapper">
  939. <pre><code class="lang-csharp hljs">public const int ACS_S9 = 4194419</code></pre>
  940. </div>
  941. <h5 class="fieldValue">Field Value</h5>
  942. <table class="table table-bordered table-striped table-condensed">
  943. <thead>
  944. <tr>
  945. <th>Type</th>
  946. <th>Description</th>
  947. </tr>
  948. </thead>
  949. <tbody>
  950. <tr>
  951. <td><span class="xref">System.Int32</span></td>
  952. <td></td>
  953. </tr>
  954. </tbody>
  955. </table>
  956. <span class="small pull-right mobile-hide">
  957. <span class="divider">|</span>
  958. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_TTEE.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_TTEE%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  959. </span>
  960. <span class="small pull-right mobile-hide">
  961. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L30">View Source</a>
  962. </span>
  963. <h4 id="Unix_Terminal_Curses_ACS_TTEE" data-uid="Unix.Terminal.Curses.ACS_TTEE">ACS_TTEE</h4>
  964. <div class="markdown level1 summary"></div>
  965. <div class="markdown level1 conceptual"></div>
  966. <h5 class="decalaration">Declaration</h5>
  967. <div class="codewrapper">
  968. <pre><code class="lang-csharp hljs">public const int ACS_TTEE = 4194423</code></pre>
  969. </div>
  970. <h5 class="fieldValue">Field Value</h5>
  971. <table class="table table-bordered table-striped table-condensed">
  972. <thead>
  973. <tr>
  974. <th>Type</th>
  975. <th>Description</th>
  976. </tr>
  977. </thead>
  978. <tbody>
  979. <tr>
  980. <td><span class="xref">System.Int32</span></td>
  981. <td></td>
  982. </tr>
  983. </tbody>
  984. </table>
  985. <span class="small pull-right mobile-hide">
  986. <span class="divider">|</span>
  987. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_UARROW.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_UARROW%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  988. </span>
  989. <span class="small pull-right mobile-hide">
  990. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L42">View Source</a>
  991. </span>
  992. <h4 id="Unix_Terminal_Curses_ACS_UARROW" data-uid="Unix.Terminal.Curses.ACS_UARROW">ACS_UARROW</h4>
  993. <div class="markdown level1 summary"></div>
  994. <div class="markdown level1 conceptual"></div>
  995. <h5 class="decalaration">Declaration</h5>
  996. <div class="codewrapper">
  997. <pre><code class="lang-csharp hljs">public const int ACS_UARROW = 4194349</code></pre>
  998. </div>
  999. <h5 class="fieldValue">Field Value</h5>
  1000. <table class="table table-bordered table-striped table-condensed">
  1001. <thead>
  1002. <tr>
  1003. <th>Type</th>
  1004. <th>Description</th>
  1005. </tr>
  1006. </thead>
  1007. <tbody>
  1008. <tr>
  1009. <td><span class="xref">System.Int32</span></td>
  1010. <td></td>
  1011. </tr>
  1012. </tbody>
  1013. </table>
  1014. <span class="small pull-right mobile-hide">
  1015. <span class="divider">|</span>
  1016. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_ULCORNER.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_ULCORNER%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1017. </span>
  1018. <span class="small pull-right mobile-hide">
  1019. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L24">View Source</a>
  1020. </span>
  1021. <h4 id="Unix_Terminal_Curses_ACS_ULCORNER" data-uid="Unix.Terminal.Curses.ACS_ULCORNER">ACS_ULCORNER</h4>
  1022. <div class="markdown level1 summary"></div>
  1023. <div class="markdown level1 conceptual"></div>
  1024. <h5 class="decalaration">Declaration</h5>
  1025. <div class="codewrapper">
  1026. <pre><code class="lang-csharp hljs">public const int ACS_ULCORNER = 4194412</code></pre>
  1027. </div>
  1028. <h5 class="fieldValue">Field Value</h5>
  1029. <table class="table table-bordered table-striped table-condensed">
  1030. <thead>
  1031. <tr>
  1032. <th>Type</th>
  1033. <th>Description</th>
  1034. </tr>
  1035. </thead>
  1036. <tbody>
  1037. <tr>
  1038. <td><span class="xref">System.Int32</span></td>
  1039. <td></td>
  1040. </tr>
  1041. </tbody>
  1042. </table>
  1043. <span class="small pull-right mobile-hide">
  1044. <span class="divider">|</span>
  1045. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_URCORNER.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_URCORNER%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1046. </span>
  1047. <span class="small pull-right mobile-hide">
  1048. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L25">View Source</a>
  1049. </span>
  1050. <h4 id="Unix_Terminal_Curses_ACS_URCORNER" data-uid="Unix.Terminal.Curses.ACS_URCORNER">ACS_URCORNER</h4>
  1051. <div class="markdown level1 summary"></div>
  1052. <div class="markdown level1 conceptual"></div>
  1053. <h5 class="decalaration">Declaration</h5>
  1054. <div class="codewrapper">
  1055. <pre><code class="lang-csharp hljs">public const int ACS_URCORNER = 4194411</code></pre>
  1056. </div>
  1057. <h5 class="fieldValue">Field Value</h5>
  1058. <table class="table table-bordered table-striped table-condensed">
  1059. <thead>
  1060. <tr>
  1061. <th>Type</th>
  1062. <th>Description</th>
  1063. </tr>
  1064. </thead>
  1065. <tbody>
  1066. <tr>
  1067. <td><span class="xref">System.Int32</span></td>
  1068. <td></td>
  1069. </tr>
  1070. </tbody>
  1071. </table>
  1072. <span class="small pull-right mobile-hide">
  1073. <span class="divider">|</span>
  1074. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ACS_VLINE.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ACS_VLINE%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1075. </span>
  1076. <span class="small pull-right mobile-hide">
  1077. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L26">View Source</a>
  1078. </span>
  1079. <h4 id="Unix_Terminal_Curses_ACS_VLINE" data-uid="Unix.Terminal.Curses.ACS_VLINE">ACS_VLINE</h4>
  1080. <div class="markdown level1 summary"></div>
  1081. <div class="markdown level1 conceptual"></div>
  1082. <h5 class="decalaration">Declaration</h5>
  1083. <div class="codewrapper">
  1084. <pre><code class="lang-csharp hljs">public const int ACS_VLINE = 4194424</code></pre>
  1085. </div>
  1086. <h5 class="fieldValue">Field Value</h5>
  1087. <table class="table table-bordered table-striped table-condensed">
  1088. <thead>
  1089. <tr>
  1090. <th>Type</th>
  1091. <th>Description</th>
  1092. </tr>
  1093. </thead>
  1094. <tbody>
  1095. <tr>
  1096. <td><span class="xref">System.Int32</span></td>
  1097. <td></td>
  1098. </tr>
  1099. </tbody>
  1100. </table>
  1101. <span class="small pull-right mobile-hide">
  1102. <span class="divider">|</span>
  1103. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltCtrlKeyEnd.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltCtrlKeyEnd%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1104. </span>
  1105. <span class="small pull-right mobile-hide">
  1106. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L170">View Source</a>
  1107. </span>
  1108. <h4 id="Unix_Terminal_Curses_AltCtrlKeyEnd" data-uid="Unix.Terminal.Curses.AltCtrlKeyEnd">AltCtrlKeyEnd</h4>
  1109. <div class="markdown level1 summary"></div>
  1110. <div class="markdown level1 conceptual"></div>
  1111. <h5 class="decalaration">Declaration</h5>
  1112. <div class="codewrapper">
  1113. <pre><code class="lang-csharp hljs">public const int AltCtrlKeyEnd = 532</code></pre>
  1114. </div>
  1115. <h5 class="fieldValue">Field Value</h5>
  1116. <table class="table table-bordered table-striped table-condensed">
  1117. <thead>
  1118. <tr>
  1119. <th>Type</th>
  1120. <th>Description</th>
  1121. </tr>
  1122. </thead>
  1123. <tbody>
  1124. <tr>
  1125. <td><span class="xref">System.Int32</span></td>
  1126. <td></td>
  1127. </tr>
  1128. </tbody>
  1129. </table>
  1130. <span class="small pull-right mobile-hide">
  1131. <span class="divider">|</span>
  1132. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltCtrlKeyHome.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltCtrlKeyHome%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1133. </span>
  1134. <span class="small pull-right mobile-hide">
  1135. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L169">View Source</a>
  1136. </span>
  1137. <h4 id="Unix_Terminal_Curses_AltCtrlKeyHome" data-uid="Unix.Terminal.Curses.AltCtrlKeyHome">AltCtrlKeyHome</h4>
  1138. <div class="markdown level1 summary"></div>
  1139. <div class="markdown level1 conceptual"></div>
  1140. <h5 class="decalaration">Declaration</h5>
  1141. <div class="codewrapper">
  1142. <pre><code class="lang-csharp hljs">public const int AltCtrlKeyHome = 537</code></pre>
  1143. </div>
  1144. <h5 class="fieldValue">Field Value</h5>
  1145. <table class="table table-bordered table-striped table-condensed">
  1146. <thead>
  1147. <tr>
  1148. <th>Type</th>
  1149. <th>Description</th>
  1150. </tr>
  1151. </thead>
  1152. <tbody>
  1153. <tr>
  1154. <td><span class="xref">System.Int32</span></td>
  1155. <td></td>
  1156. </tr>
  1157. </tbody>
  1158. </table>
  1159. <span class="small pull-right mobile-hide">
  1160. <span class="divider">|</span>
  1161. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltCtrlKeyNPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltCtrlKeyNPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1162. </span>
  1163. <span class="small pull-right mobile-hide">
  1164. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L167">View Source</a>
  1165. </span>
  1166. <h4 id="Unix_Terminal_Curses_AltCtrlKeyNPage" data-uid="Unix.Terminal.Curses.AltCtrlKeyNPage">AltCtrlKeyNPage</h4>
  1167. <div class="markdown level1 summary"></div>
  1168. <div class="markdown level1 conceptual"></div>
  1169. <h5 class="decalaration">Declaration</h5>
  1170. <div class="codewrapper">
  1171. <pre><code class="lang-csharp hljs">public const int AltCtrlKeyNPage = 552</code></pre>
  1172. </div>
  1173. <h5 class="fieldValue">Field Value</h5>
  1174. <table class="table table-bordered table-striped table-condensed">
  1175. <thead>
  1176. <tr>
  1177. <th>Type</th>
  1178. <th>Description</th>
  1179. </tr>
  1180. </thead>
  1181. <tbody>
  1182. <tr>
  1183. <td><span class="xref">System.Int32</span></td>
  1184. <td></td>
  1185. </tr>
  1186. </tbody>
  1187. </table>
  1188. <span class="small pull-right mobile-hide">
  1189. <span class="divider">|</span>
  1190. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltCtrlKeyPPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltCtrlKeyPPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1191. </span>
  1192. <span class="small pull-right mobile-hide">
  1193. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L168">View Source</a>
  1194. </span>
  1195. <h4 id="Unix_Terminal_Curses_AltCtrlKeyPPage" data-uid="Unix.Terminal.Curses.AltCtrlKeyPPage">AltCtrlKeyPPage</h4>
  1196. <div class="markdown level1 summary"></div>
  1197. <div class="markdown level1 conceptual"></div>
  1198. <h5 class="decalaration">Declaration</h5>
  1199. <div class="codewrapper">
  1200. <pre><code class="lang-csharp hljs">public const int AltCtrlKeyPPage = 557</code></pre>
  1201. </div>
  1202. <h5 class="fieldValue">Field Value</h5>
  1203. <table class="table table-bordered table-striped table-condensed">
  1204. <thead>
  1205. <tr>
  1206. <th>Type</th>
  1207. <th>Description</th>
  1208. </tr>
  1209. </thead>
  1210. <tbody>
  1211. <tr>
  1212. <td><span class="xref">System.Int32</span></td>
  1213. <td></td>
  1214. </tr>
  1215. </tbody>
  1216. </table>
  1217. <span class="small pull-right mobile-hide">
  1218. <span class="divider">|</span>
  1219. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltKeyDown.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltKeyDown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1220. </span>
  1221. <span class="small pull-right mobile-hide">
  1222. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L136">View Source</a>
  1223. </span>
  1224. <h4 id="Unix_Terminal_Curses_AltKeyDown" data-uid="Unix.Terminal.Curses.AltKeyDown">AltKeyDown</h4>
  1225. <div class="markdown level1 summary"></div>
  1226. <div class="markdown level1 conceptual"></div>
  1227. <h5 class="decalaration">Declaration</h5>
  1228. <div class="codewrapper">
  1229. <pre><code class="lang-csharp hljs">public const int AltKeyDown = 523</code></pre>
  1230. </div>
  1231. <h5 class="fieldValue">Field Value</h5>
  1232. <table class="table table-bordered table-striped table-condensed">
  1233. <thead>
  1234. <tr>
  1235. <th>Type</th>
  1236. <th>Description</th>
  1237. </tr>
  1238. </thead>
  1239. <tbody>
  1240. <tr>
  1241. <td><span class="xref">System.Int32</span></td>
  1242. <td></td>
  1243. </tr>
  1244. </tbody>
  1245. </table>
  1246. <span class="small pull-right mobile-hide">
  1247. <span class="divider">|</span>
  1248. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltKeyEnd.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltKeyEnd%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1249. </span>
  1250. <span class="small pull-right mobile-hide">
  1251. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L142">View Source</a>
  1252. </span>
  1253. <h4 id="Unix_Terminal_Curses_AltKeyEnd" data-uid="Unix.Terminal.Curses.AltKeyEnd">AltKeyEnd</h4>
  1254. <div class="markdown level1 summary"></div>
  1255. <div class="markdown level1 conceptual"></div>
  1256. <h5 class="decalaration">Declaration</h5>
  1257. <div class="codewrapper">
  1258. <pre><code class="lang-csharp hljs">public const int AltKeyEnd = 528</code></pre>
  1259. </div>
  1260. <h5 class="fieldValue">Field Value</h5>
  1261. <table class="table table-bordered table-striped table-condensed">
  1262. <thead>
  1263. <tr>
  1264. <th>Type</th>
  1265. <th>Description</th>
  1266. </tr>
  1267. </thead>
  1268. <tbody>
  1269. <tr>
  1270. <td><span class="xref">System.Int32</span></td>
  1271. <td></td>
  1272. </tr>
  1273. </tbody>
  1274. </table>
  1275. <span class="small pull-right mobile-hide">
  1276. <span class="divider">|</span>
  1277. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltKeyHome.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltKeyHome%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1278. </span>
  1279. <span class="small pull-right mobile-hide">
  1280. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L141">View Source</a>
  1281. </span>
  1282. <h4 id="Unix_Terminal_Curses_AltKeyHome" data-uid="Unix.Terminal.Curses.AltKeyHome">AltKeyHome</h4>
  1283. <div class="markdown level1 summary"></div>
  1284. <div class="markdown level1 conceptual"></div>
  1285. <h5 class="decalaration">Declaration</h5>
  1286. <div class="codewrapper">
  1287. <pre><code class="lang-csharp hljs">public const int AltKeyHome = 533</code></pre>
  1288. </div>
  1289. <h5 class="fieldValue">Field Value</h5>
  1290. <table class="table table-bordered table-striped table-condensed">
  1291. <thead>
  1292. <tr>
  1293. <th>Type</th>
  1294. <th>Description</th>
  1295. </tr>
  1296. </thead>
  1297. <tbody>
  1298. <tr>
  1299. <td><span class="xref">System.Int32</span></td>
  1300. <td></td>
  1301. </tr>
  1302. </tbody>
  1303. </table>
  1304. <span class="small pull-right mobile-hide">
  1305. <span class="divider">|</span>
  1306. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltKeyLeft.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltKeyLeft%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1307. </span>
  1308. <span class="small pull-right mobile-hide">
  1309. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L137">View Source</a>
  1310. </span>
  1311. <h4 id="Unix_Terminal_Curses_AltKeyLeft" data-uid="Unix.Terminal.Curses.AltKeyLeft">AltKeyLeft</h4>
  1312. <div class="markdown level1 summary"></div>
  1313. <div class="markdown level1 conceptual"></div>
  1314. <h5 class="decalaration">Declaration</h5>
  1315. <div class="codewrapper">
  1316. <pre><code class="lang-csharp hljs">public const int AltKeyLeft = 543</code></pre>
  1317. </div>
  1318. <h5 class="fieldValue">Field Value</h5>
  1319. <table class="table table-bordered table-striped table-condensed">
  1320. <thead>
  1321. <tr>
  1322. <th>Type</th>
  1323. <th>Description</th>
  1324. </tr>
  1325. </thead>
  1326. <tbody>
  1327. <tr>
  1328. <td><span class="xref">System.Int32</span></td>
  1329. <td></td>
  1330. </tr>
  1331. </tbody>
  1332. </table>
  1333. <span class="small pull-right mobile-hide">
  1334. <span class="divider">|</span>
  1335. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltKeyNPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltKeyNPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1336. </span>
  1337. <span class="small pull-right mobile-hide">
  1338. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L139">View Source</a>
  1339. </span>
  1340. <h4 id="Unix_Terminal_Curses_AltKeyNPage" data-uid="Unix.Terminal.Curses.AltKeyNPage">AltKeyNPage</h4>
  1341. <div class="markdown level1 summary"></div>
  1342. <div class="markdown level1 conceptual"></div>
  1343. <h5 class="decalaration">Declaration</h5>
  1344. <div class="codewrapper">
  1345. <pre><code class="lang-csharp hljs">public const int AltKeyNPage = 548</code></pre>
  1346. </div>
  1347. <h5 class="fieldValue">Field Value</h5>
  1348. <table class="table table-bordered table-striped table-condensed">
  1349. <thead>
  1350. <tr>
  1351. <th>Type</th>
  1352. <th>Description</th>
  1353. </tr>
  1354. </thead>
  1355. <tbody>
  1356. <tr>
  1357. <td><span class="xref">System.Int32</span></td>
  1358. <td></td>
  1359. </tr>
  1360. </tbody>
  1361. </table>
  1362. <span class="small pull-right mobile-hide">
  1363. <span class="divider">|</span>
  1364. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltKeyPPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltKeyPPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1365. </span>
  1366. <span class="small pull-right mobile-hide">
  1367. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L140">View Source</a>
  1368. </span>
  1369. <h4 id="Unix_Terminal_Curses_AltKeyPPage" data-uid="Unix.Terminal.Curses.AltKeyPPage">AltKeyPPage</h4>
  1370. <div class="markdown level1 summary"></div>
  1371. <div class="markdown level1 conceptual"></div>
  1372. <h5 class="decalaration">Declaration</h5>
  1373. <div class="codewrapper">
  1374. <pre><code class="lang-csharp hljs">public const int AltKeyPPage = 553</code></pre>
  1375. </div>
  1376. <h5 class="fieldValue">Field Value</h5>
  1377. <table class="table table-bordered table-striped table-condensed">
  1378. <thead>
  1379. <tr>
  1380. <th>Type</th>
  1381. <th>Description</th>
  1382. </tr>
  1383. </thead>
  1384. <tbody>
  1385. <tr>
  1386. <td><span class="xref">System.Int32</span></td>
  1387. <td></td>
  1388. </tr>
  1389. </tbody>
  1390. </table>
  1391. <span class="small pull-right mobile-hide">
  1392. <span class="divider">|</span>
  1393. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltKeyRight.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltKeyRight%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1394. </span>
  1395. <span class="small pull-right mobile-hide">
  1396. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L138">View Source</a>
  1397. </span>
  1398. <h4 id="Unix_Terminal_Curses_AltKeyRight" data-uid="Unix.Terminal.Curses.AltKeyRight">AltKeyRight</h4>
  1399. <div class="markdown level1 summary"></div>
  1400. <div class="markdown level1 conceptual"></div>
  1401. <h5 class="decalaration">Declaration</h5>
  1402. <div class="codewrapper">
  1403. <pre><code class="lang-csharp hljs">public const int AltKeyRight = 558</code></pre>
  1404. </div>
  1405. <h5 class="fieldValue">Field Value</h5>
  1406. <table class="table table-bordered table-striped table-condensed">
  1407. <thead>
  1408. <tr>
  1409. <th>Type</th>
  1410. <th>Description</th>
  1411. </tr>
  1412. </thead>
  1413. <tbody>
  1414. <tr>
  1415. <td><span class="xref">System.Int32</span></td>
  1416. <td></td>
  1417. </tr>
  1418. </tbody>
  1419. </table>
  1420. <span class="small pull-right mobile-hide">
  1421. <span class="divider">|</span>
  1422. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_AltKeyUp.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.AltKeyUp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1423. </span>
  1424. <span class="small pull-right mobile-hide">
  1425. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L135">View Source</a>
  1426. </span>
  1427. <h4 id="Unix_Terminal_Curses_AltKeyUp" data-uid="Unix.Terminal.Curses.AltKeyUp">AltKeyUp</h4>
  1428. <div class="markdown level1 summary"></div>
  1429. <div class="markdown level1 conceptual"></div>
  1430. <h5 class="decalaration">Declaration</h5>
  1431. <div class="codewrapper">
  1432. <pre><code class="lang-csharp hljs">public const int AltKeyUp = 564</code></pre>
  1433. </div>
  1434. <h5 class="fieldValue">Field Value</h5>
  1435. <table class="table table-bordered table-striped table-condensed">
  1436. <thead>
  1437. <tr>
  1438. <th>Type</th>
  1439. <th>Description</th>
  1440. </tr>
  1441. </thead>
  1442. <tbody>
  1443. <tr>
  1444. <td><span class="xref">System.Int32</span></td>
  1445. <td></td>
  1446. </tr>
  1447. </tbody>
  1448. </table>
  1449. <span class="small pull-right mobile-hide">
  1450. <span class="divider">|</span>
  1451. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_COLOR_BLACK.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.COLOR_BLACK%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1452. </span>
  1453. <span class="small pull-right mobile-hide">
  1454. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L46">View Source</a>
  1455. </span>
  1456. <h4 id="Unix_Terminal_Curses_COLOR_BLACK" data-uid="Unix.Terminal.Curses.COLOR_BLACK">COLOR_BLACK</h4>
  1457. <div class="markdown level1 summary"></div>
  1458. <div class="markdown level1 conceptual"></div>
  1459. <h5 class="decalaration">Declaration</h5>
  1460. <div class="codewrapper">
  1461. <pre><code class="lang-csharp hljs">public const int COLOR_BLACK = 0</code></pre>
  1462. </div>
  1463. <h5 class="fieldValue">Field Value</h5>
  1464. <table class="table table-bordered table-striped table-condensed">
  1465. <thead>
  1466. <tr>
  1467. <th>Type</th>
  1468. <th>Description</th>
  1469. </tr>
  1470. </thead>
  1471. <tbody>
  1472. <tr>
  1473. <td><span class="xref">System.Int32</span></td>
  1474. <td></td>
  1475. </tr>
  1476. </tbody>
  1477. </table>
  1478. <span class="small pull-right mobile-hide">
  1479. <span class="divider">|</span>
  1480. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_COLOR_BLUE.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.COLOR_BLUE%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1481. </span>
  1482. <span class="small pull-right mobile-hide">
  1483. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L50">View Source</a>
  1484. </span>
  1485. <h4 id="Unix_Terminal_Curses_COLOR_BLUE" data-uid="Unix.Terminal.Curses.COLOR_BLUE">COLOR_BLUE</h4>
  1486. <div class="markdown level1 summary"></div>
  1487. <div class="markdown level1 conceptual"></div>
  1488. <h5 class="decalaration">Declaration</h5>
  1489. <div class="codewrapper">
  1490. <pre><code class="lang-csharp hljs">public const int COLOR_BLUE = 4</code></pre>
  1491. </div>
  1492. <h5 class="fieldValue">Field Value</h5>
  1493. <table class="table table-bordered table-striped table-condensed">
  1494. <thead>
  1495. <tr>
  1496. <th>Type</th>
  1497. <th>Description</th>
  1498. </tr>
  1499. </thead>
  1500. <tbody>
  1501. <tr>
  1502. <td><span class="xref">System.Int32</span></td>
  1503. <td></td>
  1504. </tr>
  1505. </tbody>
  1506. </table>
  1507. <span class="small pull-right mobile-hide">
  1508. <span class="divider">|</span>
  1509. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_COLOR_CYAN.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.COLOR_CYAN%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1510. </span>
  1511. <span class="small pull-right mobile-hide">
  1512. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L52">View Source</a>
  1513. </span>
  1514. <h4 id="Unix_Terminal_Curses_COLOR_CYAN" data-uid="Unix.Terminal.Curses.COLOR_CYAN">COLOR_CYAN</h4>
  1515. <div class="markdown level1 summary"></div>
  1516. <div class="markdown level1 conceptual"></div>
  1517. <h5 class="decalaration">Declaration</h5>
  1518. <div class="codewrapper">
  1519. <pre><code class="lang-csharp hljs">public const int COLOR_CYAN = 6</code></pre>
  1520. </div>
  1521. <h5 class="fieldValue">Field Value</h5>
  1522. <table class="table table-bordered table-striped table-condensed">
  1523. <thead>
  1524. <tr>
  1525. <th>Type</th>
  1526. <th>Description</th>
  1527. </tr>
  1528. </thead>
  1529. <tbody>
  1530. <tr>
  1531. <td><span class="xref">System.Int32</span></td>
  1532. <td></td>
  1533. </tr>
  1534. </tbody>
  1535. </table>
  1536. <span class="small pull-right mobile-hide">
  1537. <span class="divider">|</span>
  1538. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_COLOR_GRAY.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.COLOR_GRAY%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1539. </span>
  1540. <span class="small pull-right mobile-hide">
  1541. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L54">View Source</a>
  1542. </span>
  1543. <h4 id="Unix_Terminal_Curses_COLOR_GRAY" data-uid="Unix.Terminal.Curses.COLOR_GRAY">COLOR_GRAY</h4>
  1544. <div class="markdown level1 summary"></div>
  1545. <div class="markdown level1 conceptual"></div>
  1546. <h5 class="decalaration">Declaration</h5>
  1547. <div class="codewrapper">
  1548. <pre><code class="lang-csharp hljs">public const int COLOR_GRAY = 8</code></pre>
  1549. </div>
  1550. <h5 class="fieldValue">Field Value</h5>
  1551. <table class="table table-bordered table-striped table-condensed">
  1552. <thead>
  1553. <tr>
  1554. <th>Type</th>
  1555. <th>Description</th>
  1556. </tr>
  1557. </thead>
  1558. <tbody>
  1559. <tr>
  1560. <td><span class="xref">System.Int32</span></td>
  1561. <td></td>
  1562. </tr>
  1563. </tbody>
  1564. </table>
  1565. <span class="small pull-right mobile-hide">
  1566. <span class="divider">|</span>
  1567. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_COLOR_GREEN.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.COLOR_GREEN%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1568. </span>
  1569. <span class="small pull-right mobile-hide">
  1570. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L48">View Source</a>
  1571. </span>
  1572. <h4 id="Unix_Terminal_Curses_COLOR_GREEN" data-uid="Unix.Terminal.Curses.COLOR_GREEN">COLOR_GREEN</h4>
  1573. <div class="markdown level1 summary"></div>
  1574. <div class="markdown level1 conceptual"></div>
  1575. <h5 class="decalaration">Declaration</h5>
  1576. <div class="codewrapper">
  1577. <pre><code class="lang-csharp hljs">public const int COLOR_GREEN = 2</code></pre>
  1578. </div>
  1579. <h5 class="fieldValue">Field Value</h5>
  1580. <table class="table table-bordered table-striped table-condensed">
  1581. <thead>
  1582. <tr>
  1583. <th>Type</th>
  1584. <th>Description</th>
  1585. </tr>
  1586. </thead>
  1587. <tbody>
  1588. <tr>
  1589. <td><span class="xref">System.Int32</span></td>
  1590. <td></td>
  1591. </tr>
  1592. </tbody>
  1593. </table>
  1594. <span class="small pull-right mobile-hide">
  1595. <span class="divider">|</span>
  1596. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_COLOR_MAGENTA.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.COLOR_MAGENTA%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1597. </span>
  1598. <span class="small pull-right mobile-hide">
  1599. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L51">View Source</a>
  1600. </span>
  1601. <h4 id="Unix_Terminal_Curses_COLOR_MAGENTA" data-uid="Unix.Terminal.Curses.COLOR_MAGENTA">COLOR_MAGENTA</h4>
  1602. <div class="markdown level1 summary"></div>
  1603. <div class="markdown level1 conceptual"></div>
  1604. <h5 class="decalaration">Declaration</h5>
  1605. <div class="codewrapper">
  1606. <pre><code class="lang-csharp hljs">public const int COLOR_MAGENTA = 5</code></pre>
  1607. </div>
  1608. <h5 class="fieldValue">Field Value</h5>
  1609. <table class="table table-bordered table-striped table-condensed">
  1610. <thead>
  1611. <tr>
  1612. <th>Type</th>
  1613. <th>Description</th>
  1614. </tr>
  1615. </thead>
  1616. <tbody>
  1617. <tr>
  1618. <td><span class="xref">System.Int32</span></td>
  1619. <td></td>
  1620. </tr>
  1621. </tbody>
  1622. </table>
  1623. <span class="small pull-right mobile-hide">
  1624. <span class="divider">|</span>
  1625. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_COLOR_RED.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.COLOR_RED%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1626. </span>
  1627. <span class="small pull-right mobile-hide">
  1628. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L47">View Source</a>
  1629. </span>
  1630. <h4 id="Unix_Terminal_Curses_COLOR_RED" data-uid="Unix.Terminal.Curses.COLOR_RED">COLOR_RED</h4>
  1631. <div class="markdown level1 summary"></div>
  1632. <div class="markdown level1 conceptual"></div>
  1633. <h5 class="decalaration">Declaration</h5>
  1634. <div class="codewrapper">
  1635. <pre><code class="lang-csharp hljs">public const int COLOR_RED = 1</code></pre>
  1636. </div>
  1637. <h5 class="fieldValue">Field Value</h5>
  1638. <table class="table table-bordered table-striped table-condensed">
  1639. <thead>
  1640. <tr>
  1641. <th>Type</th>
  1642. <th>Description</th>
  1643. </tr>
  1644. </thead>
  1645. <tbody>
  1646. <tr>
  1647. <td><span class="xref">System.Int32</span></td>
  1648. <td></td>
  1649. </tr>
  1650. </tbody>
  1651. </table>
  1652. <span class="small pull-right mobile-hide">
  1653. <span class="divider">|</span>
  1654. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_COLOR_WHITE.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.COLOR_WHITE%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1655. </span>
  1656. <span class="small pull-right mobile-hide">
  1657. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L53">View Source</a>
  1658. </span>
  1659. <h4 id="Unix_Terminal_Curses_COLOR_WHITE" data-uid="Unix.Terminal.Curses.COLOR_WHITE">COLOR_WHITE</h4>
  1660. <div class="markdown level1 summary"></div>
  1661. <div class="markdown level1 conceptual"></div>
  1662. <h5 class="decalaration">Declaration</h5>
  1663. <div class="codewrapper">
  1664. <pre><code class="lang-csharp hljs">public const int COLOR_WHITE = 7</code></pre>
  1665. </div>
  1666. <h5 class="fieldValue">Field Value</h5>
  1667. <table class="table table-bordered table-striped table-condensed">
  1668. <thead>
  1669. <tr>
  1670. <th>Type</th>
  1671. <th>Description</th>
  1672. </tr>
  1673. </thead>
  1674. <tbody>
  1675. <tr>
  1676. <td><span class="xref">System.Int32</span></td>
  1677. <td></td>
  1678. </tr>
  1679. </tbody>
  1680. </table>
  1681. <span class="small pull-right mobile-hide">
  1682. <span class="divider">|</span>
  1683. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_COLOR_YELLOW.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.COLOR_YELLOW%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1684. </span>
  1685. <span class="small pull-right mobile-hide">
  1686. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L49">View Source</a>
  1687. </span>
  1688. <h4 id="Unix_Terminal_Curses_COLOR_YELLOW" data-uid="Unix.Terminal.Curses.COLOR_YELLOW">COLOR_YELLOW</h4>
  1689. <div class="markdown level1 summary"></div>
  1690. <div class="markdown level1 conceptual"></div>
  1691. <h5 class="decalaration">Declaration</h5>
  1692. <div class="codewrapper">
  1693. <pre><code class="lang-csharp hljs">public const int COLOR_YELLOW = 3</code></pre>
  1694. </div>
  1695. <h5 class="fieldValue">Field Value</h5>
  1696. <table class="table table-bordered table-striped table-condensed">
  1697. <thead>
  1698. <tr>
  1699. <th>Type</th>
  1700. <th>Description</th>
  1701. </tr>
  1702. </thead>
  1703. <tbody>
  1704. <tr>
  1705. <td><span class="xref">System.Int32</span></td>
  1706. <td></td>
  1707. </tr>
  1708. </tbody>
  1709. </table>
  1710. <span class="small pull-right mobile-hide">
  1711. <span class="divider">|</span>
  1712. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_CtrlKeyDown.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.CtrlKeyDown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1713. </span>
  1714. <span class="small pull-right mobile-hide">
  1715. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L144">View Source</a>
  1716. </span>
  1717. <h4 id="Unix_Terminal_Curses_CtrlKeyDown" data-uid="Unix.Terminal.Curses.CtrlKeyDown">CtrlKeyDown</h4>
  1718. <div class="markdown level1 summary"></div>
  1719. <div class="markdown level1 conceptual"></div>
  1720. <h5 class="decalaration">Declaration</h5>
  1721. <div class="codewrapper">
  1722. <pre><code class="lang-csharp hljs">public const int CtrlKeyDown = 525</code></pre>
  1723. </div>
  1724. <h5 class="fieldValue">Field Value</h5>
  1725. <table class="table table-bordered table-striped table-condensed">
  1726. <thead>
  1727. <tr>
  1728. <th>Type</th>
  1729. <th>Description</th>
  1730. </tr>
  1731. </thead>
  1732. <tbody>
  1733. <tr>
  1734. <td><span class="xref">System.Int32</span></td>
  1735. <td></td>
  1736. </tr>
  1737. </tbody>
  1738. </table>
  1739. <span class="small pull-right mobile-hide">
  1740. <span class="divider">|</span>
  1741. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_CtrlKeyEnd.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.CtrlKeyEnd%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1742. </span>
  1743. <span class="small pull-right mobile-hide">
  1744. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L150">View Source</a>
  1745. </span>
  1746. <h4 id="Unix_Terminal_Curses_CtrlKeyEnd" data-uid="Unix.Terminal.Curses.CtrlKeyEnd">CtrlKeyEnd</h4>
  1747. <div class="markdown level1 summary"></div>
  1748. <div class="markdown level1 conceptual"></div>
  1749. <h5 class="decalaration">Declaration</h5>
  1750. <div class="codewrapper">
  1751. <pre><code class="lang-csharp hljs">public const int CtrlKeyEnd = 530</code></pre>
  1752. </div>
  1753. <h5 class="fieldValue">Field Value</h5>
  1754. <table class="table table-bordered table-striped table-condensed">
  1755. <thead>
  1756. <tr>
  1757. <th>Type</th>
  1758. <th>Description</th>
  1759. </tr>
  1760. </thead>
  1761. <tbody>
  1762. <tr>
  1763. <td><span class="xref">System.Int32</span></td>
  1764. <td></td>
  1765. </tr>
  1766. </tbody>
  1767. </table>
  1768. <span class="small pull-right mobile-hide">
  1769. <span class="divider">|</span>
  1770. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_CtrlKeyHome.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.CtrlKeyHome%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1771. </span>
  1772. <span class="small pull-right mobile-hide">
  1773. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L149">View Source</a>
  1774. </span>
  1775. <h4 id="Unix_Terminal_Curses_CtrlKeyHome" data-uid="Unix.Terminal.Curses.CtrlKeyHome">CtrlKeyHome</h4>
  1776. <div class="markdown level1 summary"></div>
  1777. <div class="markdown level1 conceptual"></div>
  1778. <h5 class="decalaration">Declaration</h5>
  1779. <div class="codewrapper">
  1780. <pre><code class="lang-csharp hljs">public const int CtrlKeyHome = 535</code></pre>
  1781. </div>
  1782. <h5 class="fieldValue">Field Value</h5>
  1783. <table class="table table-bordered table-striped table-condensed">
  1784. <thead>
  1785. <tr>
  1786. <th>Type</th>
  1787. <th>Description</th>
  1788. </tr>
  1789. </thead>
  1790. <tbody>
  1791. <tr>
  1792. <td><span class="xref">System.Int32</span></td>
  1793. <td></td>
  1794. </tr>
  1795. </tbody>
  1796. </table>
  1797. <span class="small pull-right mobile-hide">
  1798. <span class="divider">|</span>
  1799. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_CtrlKeyLeft.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.CtrlKeyLeft%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1800. </span>
  1801. <span class="small pull-right mobile-hide">
  1802. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L145">View Source</a>
  1803. </span>
  1804. <h4 id="Unix_Terminal_Curses_CtrlKeyLeft" data-uid="Unix.Terminal.Curses.CtrlKeyLeft">CtrlKeyLeft</h4>
  1805. <div class="markdown level1 summary"></div>
  1806. <div class="markdown level1 conceptual"></div>
  1807. <h5 class="decalaration">Declaration</h5>
  1808. <div class="codewrapper">
  1809. <pre><code class="lang-csharp hljs">public const int CtrlKeyLeft = 545</code></pre>
  1810. </div>
  1811. <h5 class="fieldValue">Field Value</h5>
  1812. <table class="table table-bordered table-striped table-condensed">
  1813. <thead>
  1814. <tr>
  1815. <th>Type</th>
  1816. <th>Description</th>
  1817. </tr>
  1818. </thead>
  1819. <tbody>
  1820. <tr>
  1821. <td><span class="xref">System.Int32</span></td>
  1822. <td></td>
  1823. </tr>
  1824. </tbody>
  1825. </table>
  1826. <span class="small pull-right mobile-hide">
  1827. <span class="divider">|</span>
  1828. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_CtrlKeyNPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.CtrlKeyNPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1829. </span>
  1830. <span class="small pull-right mobile-hide">
  1831. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L147">View Source</a>
  1832. </span>
  1833. <h4 id="Unix_Terminal_Curses_CtrlKeyNPage" data-uid="Unix.Terminal.Curses.CtrlKeyNPage">CtrlKeyNPage</h4>
  1834. <div class="markdown level1 summary"></div>
  1835. <div class="markdown level1 conceptual"></div>
  1836. <h5 class="decalaration">Declaration</h5>
  1837. <div class="codewrapper">
  1838. <pre><code class="lang-csharp hljs">public const int CtrlKeyNPage = 550</code></pre>
  1839. </div>
  1840. <h5 class="fieldValue">Field Value</h5>
  1841. <table class="table table-bordered table-striped table-condensed">
  1842. <thead>
  1843. <tr>
  1844. <th>Type</th>
  1845. <th>Description</th>
  1846. </tr>
  1847. </thead>
  1848. <tbody>
  1849. <tr>
  1850. <td><span class="xref">System.Int32</span></td>
  1851. <td></td>
  1852. </tr>
  1853. </tbody>
  1854. </table>
  1855. <span class="small pull-right mobile-hide">
  1856. <span class="divider">|</span>
  1857. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_CtrlKeyPPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.CtrlKeyPPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1858. </span>
  1859. <span class="small pull-right mobile-hide">
  1860. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L148">View Source</a>
  1861. </span>
  1862. <h4 id="Unix_Terminal_Curses_CtrlKeyPPage" data-uid="Unix.Terminal.Curses.CtrlKeyPPage">CtrlKeyPPage</h4>
  1863. <div class="markdown level1 summary"></div>
  1864. <div class="markdown level1 conceptual"></div>
  1865. <h5 class="decalaration">Declaration</h5>
  1866. <div class="codewrapper">
  1867. <pre><code class="lang-csharp hljs">public const int CtrlKeyPPage = 555</code></pre>
  1868. </div>
  1869. <h5 class="fieldValue">Field Value</h5>
  1870. <table class="table table-bordered table-striped table-condensed">
  1871. <thead>
  1872. <tr>
  1873. <th>Type</th>
  1874. <th>Description</th>
  1875. </tr>
  1876. </thead>
  1877. <tbody>
  1878. <tr>
  1879. <td><span class="xref">System.Int32</span></td>
  1880. <td></td>
  1881. </tr>
  1882. </tbody>
  1883. </table>
  1884. <span class="small pull-right mobile-hide">
  1885. <span class="divider">|</span>
  1886. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_CtrlKeyRight.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.CtrlKeyRight%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1887. </span>
  1888. <span class="small pull-right mobile-hide">
  1889. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L146">View Source</a>
  1890. </span>
  1891. <h4 id="Unix_Terminal_Curses_CtrlKeyRight" data-uid="Unix.Terminal.Curses.CtrlKeyRight">CtrlKeyRight</h4>
  1892. <div class="markdown level1 summary"></div>
  1893. <div class="markdown level1 conceptual"></div>
  1894. <h5 class="decalaration">Declaration</h5>
  1895. <div class="codewrapper">
  1896. <pre><code class="lang-csharp hljs">public const int CtrlKeyRight = 560</code></pre>
  1897. </div>
  1898. <h5 class="fieldValue">Field Value</h5>
  1899. <table class="table table-bordered table-striped table-condensed">
  1900. <thead>
  1901. <tr>
  1902. <th>Type</th>
  1903. <th>Description</th>
  1904. </tr>
  1905. </thead>
  1906. <tbody>
  1907. <tr>
  1908. <td><span class="xref">System.Int32</span></td>
  1909. <td></td>
  1910. </tr>
  1911. </tbody>
  1912. </table>
  1913. <span class="small pull-right mobile-hide">
  1914. <span class="divider">|</span>
  1915. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_CtrlKeyUp.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.CtrlKeyUp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1916. </span>
  1917. <span class="small pull-right mobile-hide">
  1918. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L143">View Source</a>
  1919. </span>
  1920. <h4 id="Unix_Terminal_Curses_CtrlKeyUp" data-uid="Unix.Terminal.Curses.CtrlKeyUp">CtrlKeyUp</h4>
  1921. <div class="markdown level1 summary"></div>
  1922. <div class="markdown level1 conceptual"></div>
  1923. <h5 class="decalaration">Declaration</h5>
  1924. <div class="codewrapper">
  1925. <pre><code class="lang-csharp hljs">public const int CtrlKeyUp = 566</code></pre>
  1926. </div>
  1927. <h5 class="fieldValue">Field Value</h5>
  1928. <table class="table table-bordered table-striped table-condensed">
  1929. <thead>
  1930. <tr>
  1931. <th>Type</th>
  1932. <th>Description</th>
  1933. </tr>
  1934. </thead>
  1935. <tbody>
  1936. <tr>
  1937. <td><span class="xref">System.Int32</span></td>
  1938. <td></td>
  1939. </tr>
  1940. </tbody>
  1941. </table>
  1942. <span class="small pull-right mobile-hide">
  1943. <span class="divider">|</span>
  1944. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_DownEnd.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.DownEnd%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1945. </span>
  1946. <span class="small pull-right mobile-hide">
  1947. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L97">View Source</a>
  1948. </span>
  1949. <h4 id="Unix_Terminal_Curses_DownEnd" data-uid="Unix.Terminal.Curses.DownEnd">DownEnd</h4>
  1950. <div class="markdown level1 summary"></div>
  1951. <div class="markdown level1 conceptual"></div>
  1952. <h5 class="decalaration">Declaration</h5>
  1953. <div class="codewrapper">
  1954. <pre><code class="lang-csharp hljs">public const int DownEnd = 0</code></pre>
  1955. </div>
  1956. <h5 class="fieldValue">Field Value</h5>
  1957. <table class="table table-bordered table-striped table-condensed">
  1958. <thead>
  1959. <tr>
  1960. <th>Type</th>
  1961. <th>Description</th>
  1962. </tr>
  1963. </thead>
  1964. <tbody>
  1965. <tr>
  1966. <td><span class="xref">System.Int32</span></td>
  1967. <td></td>
  1968. </tr>
  1969. </tbody>
  1970. </table>
  1971. <span class="small pull-right mobile-hide">
  1972. <span class="divider">|</span>
  1973. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ERR.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ERR%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  1974. </span>
  1975. <span class="small pull-right mobile-hide">
  1976. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L57">View Source</a>
  1977. </span>
  1978. <h4 id="Unix_Terminal_Curses_ERR" data-uid="Unix.Terminal.Curses.ERR">ERR</h4>
  1979. <div class="markdown level1 summary"></div>
  1980. <div class="markdown level1 conceptual"></div>
  1981. <h5 class="decalaration">Declaration</h5>
  1982. <div class="codewrapper">
  1983. <pre><code class="lang-csharp hljs">public const int ERR = -1</code></pre>
  1984. </div>
  1985. <h5 class="fieldValue">Field Value</h5>
  1986. <table class="table table-bordered table-striped table-condensed">
  1987. <thead>
  1988. <tr>
  1989. <th>Type</th>
  1990. <th>Description</th>
  1991. </tr>
  1992. </thead>
  1993. <tbody>
  1994. <tr>
  1995. <td><span class="xref">System.Int32</span></td>
  1996. <td></td>
  1997. </tr>
  1998. </tbody>
  1999. </table>
  2000. <span class="small pull-right mobile-hide">
  2001. <span class="divider">|</span>
  2002. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_Home.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.Home%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2003. </span>
  2004. <span class="small pull-right mobile-hide">
  2005. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L98">View Source</a>
  2006. </span>
  2007. <h4 id="Unix_Terminal_Curses_Home" data-uid="Unix.Terminal.Curses.Home">Home</h4>
  2008. <div class="markdown level1 summary"></div>
  2009. <div class="markdown level1 conceptual"></div>
  2010. <h5 class="decalaration">Declaration</h5>
  2011. <div class="codewrapper">
  2012. <pre><code class="lang-csharp hljs">public const int Home = 0</code></pre>
  2013. </div>
  2014. <h5 class="fieldValue">Field Value</h5>
  2015. <table class="table table-bordered table-striped table-condensed">
  2016. <thead>
  2017. <tr>
  2018. <th>Type</th>
  2019. <th>Description</th>
  2020. </tr>
  2021. </thead>
  2022. <tbody>
  2023. <tr>
  2024. <td><span class="xref">System.Int32</span></td>
  2025. <td></td>
  2026. </tr>
  2027. </tbody>
  2028. </table>
  2029. <span class="small pull-right mobile-hide">
  2030. <span class="divider">|</span>
  2031. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KEY_CODE_SEQ.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KEY_CODE_SEQ%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2032. </span>
  2033. <span class="small pull-right mobile-hide">
  2034. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L56">View Source</a>
  2035. </span>
  2036. <h4 id="Unix_Terminal_Curses_KEY_CODE_SEQ" data-uid="Unix.Terminal.Curses.KEY_CODE_SEQ">KEY_CODE_SEQ</h4>
  2037. <div class="markdown level1 summary"></div>
  2038. <div class="markdown level1 conceptual"></div>
  2039. <h5 class="decalaration">Declaration</h5>
  2040. <div class="codewrapper">
  2041. <pre><code class="lang-csharp hljs">public const int KEY_CODE_SEQ = 91</code></pre>
  2042. </div>
  2043. <h5 class="fieldValue">Field Value</h5>
  2044. <table class="table table-bordered table-striped table-condensed">
  2045. <thead>
  2046. <tr>
  2047. <th>Type</th>
  2048. <th>Description</th>
  2049. </tr>
  2050. </thead>
  2051. <tbody>
  2052. <tr>
  2053. <td><span class="xref">System.Int32</span></td>
  2054. <td></td>
  2055. </tr>
  2056. </tbody>
  2057. </table>
  2058. <span class="small pull-right mobile-hide">
  2059. <span class="divider">|</span>
  2060. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KEY_CODE_YES.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KEY_CODE_YES%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2061. </span>
  2062. <span class="small pull-right mobile-hide">
  2063. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L55">View Source</a>
  2064. </span>
  2065. <h4 id="Unix_Terminal_Curses_KEY_CODE_YES" data-uid="Unix.Terminal.Curses.KEY_CODE_YES">KEY_CODE_YES</h4>
  2066. <div class="markdown level1 summary"></div>
  2067. <div class="markdown level1 conceptual"></div>
  2068. <h5 class="decalaration">Declaration</h5>
  2069. <div class="codewrapper">
  2070. <pre><code class="lang-csharp hljs">public const int KEY_CODE_YES = 256</code></pre>
  2071. </div>
  2072. <h5 class="fieldValue">Field Value</h5>
  2073. <table class="table table-bordered table-striped table-condensed">
  2074. <thead>
  2075. <tr>
  2076. <th>Type</th>
  2077. <th>Description</th>
  2078. </tr>
  2079. </thead>
  2080. <tbody>
  2081. <tr>
  2082. <td><span class="xref">System.Int32</span></td>
  2083. <td></td>
  2084. </tr>
  2085. </tbody>
  2086. </table>
  2087. <span class="small pull-right mobile-hide">
  2088. <span class="divider">|</span>
  2089. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyAlt.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyAlt%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2090. </span>
  2091. <span class="small pull-right mobile-hide">
  2092. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L248">View Source</a>
  2093. </span>
  2094. <h4 id="Unix_Terminal_Curses_KeyAlt" data-uid="Unix.Terminal.Curses.KeyAlt">KeyAlt</h4>
  2095. <div class="markdown level1 summary"></div>
  2096. <div class="markdown level1 conceptual"></div>
  2097. <h5 class="decalaration">Declaration</h5>
  2098. <div class="codewrapper">
  2099. <pre><code class="lang-csharp hljs">public const int KeyAlt = 8192</code></pre>
  2100. </div>
  2101. <h5 class="fieldValue">Field Value</h5>
  2102. <table class="table table-bordered table-striped table-condensed">
  2103. <thead>
  2104. <tr>
  2105. <th>Type</th>
  2106. <th>Description</th>
  2107. </tr>
  2108. </thead>
  2109. <tbody>
  2110. <tr>
  2111. <td><span class="xref">System.Int32</span></td>
  2112. <td></td>
  2113. </tr>
  2114. </tbody>
  2115. </table>
  2116. <span class="small pull-right mobile-hide">
  2117. <span class="divider">|</span>
  2118. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyBackspace.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyBackspace%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2119. </span>
  2120. <span class="small pull-right mobile-hide">
  2121. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L100">View Source</a>
  2122. </span>
  2123. <h4 id="Unix_Terminal_Curses_KeyBackspace" data-uid="Unix.Terminal.Curses.KeyBackspace">KeyBackspace</h4>
  2124. <div class="markdown level1 summary"></div>
  2125. <div class="markdown level1 conceptual"></div>
  2126. <h5 class="decalaration">Declaration</h5>
  2127. <div class="codewrapper">
  2128. <pre><code class="lang-csharp hljs">public const int KeyBackspace = 263</code></pre>
  2129. </div>
  2130. <h5 class="fieldValue">Field Value</h5>
  2131. <table class="table table-bordered table-striped table-condensed">
  2132. <thead>
  2133. <tr>
  2134. <th>Type</th>
  2135. <th>Description</th>
  2136. </tr>
  2137. </thead>
  2138. <tbody>
  2139. <tr>
  2140. <td><span class="xref">System.Int32</span></td>
  2141. <td></td>
  2142. </tr>
  2143. </tbody>
  2144. </table>
  2145. <span class="small pull-right mobile-hide">
  2146. <span class="divider">|</span>
  2147. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyBackTab.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyBackTab%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2148. </span>
  2149. <span class="small pull-right mobile-hide">
  2150. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L113">View Source</a>
  2151. </span>
  2152. <h4 id="Unix_Terminal_Curses_KeyBackTab" data-uid="Unix.Terminal.Curses.KeyBackTab">KeyBackTab</h4>
  2153. <div class="markdown level1 summary"></div>
  2154. <div class="markdown level1 conceptual"></div>
  2155. <h5 class="decalaration">Declaration</h5>
  2156. <div class="codewrapper">
  2157. <pre><code class="lang-csharp hljs">public const int KeyBackTab = 353</code></pre>
  2158. </div>
  2159. <h5 class="fieldValue">Field Value</h5>
  2160. <table class="table table-bordered table-striped table-condensed">
  2161. <thead>
  2162. <tr>
  2163. <th>Type</th>
  2164. <th>Description</th>
  2165. </tr>
  2166. </thead>
  2167. <tbody>
  2168. <tr>
  2169. <td><span class="xref">System.Int32</span></td>
  2170. <td></td>
  2171. </tr>
  2172. </tbody>
  2173. </table>
  2174. <span class="small pull-right mobile-hide">
  2175. <span class="divider">|</span>
  2176. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyDeleteChar.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyDeleteChar%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2177. </span>
  2178. <span class="small pull-right mobile-hide">
  2179. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L110">View Source</a>
  2180. </span>
  2181. <h4 id="Unix_Terminal_Curses_KeyDeleteChar" data-uid="Unix.Terminal.Curses.KeyDeleteChar">KeyDeleteChar</h4>
  2182. <div class="markdown level1 summary"></div>
  2183. <div class="markdown level1 conceptual"></div>
  2184. <h5 class="decalaration">Declaration</h5>
  2185. <div class="codewrapper">
  2186. <pre><code class="lang-csharp hljs">public const int KeyDeleteChar = 330</code></pre>
  2187. </div>
  2188. <h5 class="fieldValue">Field Value</h5>
  2189. <table class="table table-bordered table-striped table-condensed">
  2190. <thead>
  2191. <tr>
  2192. <th>Type</th>
  2193. <th>Description</th>
  2194. </tr>
  2195. </thead>
  2196. <tbody>
  2197. <tr>
  2198. <td><span class="xref">System.Int32</span></td>
  2199. <td></td>
  2200. </tr>
  2201. </tbody>
  2202. </table>
  2203. <span class="small pull-right mobile-hide">
  2204. <span class="divider">|</span>
  2205. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyDown.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyDown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2206. </span>
  2207. <span class="small pull-right mobile-hide">
  2208. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L102">View Source</a>
  2209. </span>
  2210. <h4 id="Unix_Terminal_Curses_KeyDown" data-uid="Unix.Terminal.Curses.KeyDown">KeyDown</h4>
  2211. <div class="markdown level1 summary"></div>
  2212. <div class="markdown level1 conceptual"></div>
  2213. <h5 class="decalaration">Declaration</h5>
  2214. <div class="codewrapper">
  2215. <pre><code class="lang-csharp hljs">public const int KeyDown = 258</code></pre>
  2216. </div>
  2217. <h5 class="fieldValue">Field Value</h5>
  2218. <table class="table table-bordered table-striped table-condensed">
  2219. <thead>
  2220. <tr>
  2221. <th>Type</th>
  2222. <th>Description</th>
  2223. </tr>
  2224. </thead>
  2225. <tbody>
  2226. <tr>
  2227. <td><span class="xref">System.Int32</span></td>
  2228. <td></td>
  2229. </tr>
  2230. </tbody>
  2231. </table>
  2232. <span class="small pull-right mobile-hide">
  2233. <span class="divider">|</span>
  2234. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyEnd.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyEnd%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2235. </span>
  2236. <span class="small pull-right mobile-hide">
  2237. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L109">View Source</a>
  2238. </span>
  2239. <h4 id="Unix_Terminal_Curses_KeyEnd" data-uid="Unix.Terminal.Curses.KeyEnd">KeyEnd</h4>
  2240. <div class="markdown level1 summary"></div>
  2241. <div class="markdown level1 conceptual"></div>
  2242. <h5 class="decalaration">Declaration</h5>
  2243. <div class="codewrapper">
  2244. <pre><code class="lang-csharp hljs">public const int KeyEnd = 360</code></pre>
  2245. </div>
  2246. <h5 class="fieldValue">Field Value</h5>
  2247. <table class="table table-bordered table-striped table-condensed">
  2248. <thead>
  2249. <tr>
  2250. <th>Type</th>
  2251. <th>Description</th>
  2252. </tr>
  2253. </thead>
  2254. <tbody>
  2255. <tr>
  2256. <td><span class="xref">System.Int32</span></td>
  2257. <td></td>
  2258. </tr>
  2259. </tbody>
  2260. </table>
  2261. <span class="small pull-right mobile-hide">
  2262. <span class="divider">|</span>
  2263. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF1.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF1%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2264. </span>
  2265. <span class="small pull-right mobile-hide">
  2266. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L114">View Source</a>
  2267. </span>
  2268. <h4 id="Unix_Terminal_Curses_KeyF1" data-uid="Unix.Terminal.Curses.KeyF1">KeyF1</h4>
  2269. <div class="markdown level1 summary"></div>
  2270. <div class="markdown level1 conceptual"></div>
  2271. <h5 class="decalaration">Declaration</h5>
  2272. <div class="codewrapper">
  2273. <pre><code class="lang-csharp hljs">public const int KeyF1 = 265</code></pre>
  2274. </div>
  2275. <h5 class="fieldValue">Field Value</h5>
  2276. <table class="table table-bordered table-striped table-condensed">
  2277. <thead>
  2278. <tr>
  2279. <th>Type</th>
  2280. <th>Description</th>
  2281. </tr>
  2282. </thead>
  2283. <tbody>
  2284. <tr>
  2285. <td><span class="xref">System.Int32</span></td>
  2286. <td></td>
  2287. </tr>
  2288. </tbody>
  2289. </table>
  2290. <span class="small pull-right mobile-hide">
  2291. <span class="divider">|</span>
  2292. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF10.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF10%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2293. </span>
  2294. <span class="small pull-right mobile-hide">
  2295. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L123">View Source</a>
  2296. </span>
  2297. <h4 id="Unix_Terminal_Curses_KeyF10" data-uid="Unix.Terminal.Curses.KeyF10">KeyF10</h4>
  2298. <div class="markdown level1 summary"></div>
  2299. <div class="markdown level1 conceptual"></div>
  2300. <h5 class="decalaration">Declaration</h5>
  2301. <div class="codewrapper">
  2302. <pre><code class="lang-csharp hljs">public const int KeyF10 = 274</code></pre>
  2303. </div>
  2304. <h5 class="fieldValue">Field Value</h5>
  2305. <table class="table table-bordered table-striped table-condensed">
  2306. <thead>
  2307. <tr>
  2308. <th>Type</th>
  2309. <th>Description</th>
  2310. </tr>
  2311. </thead>
  2312. <tbody>
  2313. <tr>
  2314. <td><span class="xref">System.Int32</span></td>
  2315. <td></td>
  2316. </tr>
  2317. </tbody>
  2318. </table>
  2319. <span class="small pull-right mobile-hide">
  2320. <span class="divider">|</span>
  2321. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF11.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF11%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2322. </span>
  2323. <span class="small pull-right mobile-hide">
  2324. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L124">View Source</a>
  2325. </span>
  2326. <h4 id="Unix_Terminal_Curses_KeyF11" data-uid="Unix.Terminal.Curses.KeyF11">KeyF11</h4>
  2327. <div class="markdown level1 summary"></div>
  2328. <div class="markdown level1 conceptual"></div>
  2329. <h5 class="decalaration">Declaration</h5>
  2330. <div class="codewrapper">
  2331. <pre><code class="lang-csharp hljs">public const int KeyF11 = 275</code></pre>
  2332. </div>
  2333. <h5 class="fieldValue">Field Value</h5>
  2334. <table class="table table-bordered table-striped table-condensed">
  2335. <thead>
  2336. <tr>
  2337. <th>Type</th>
  2338. <th>Description</th>
  2339. </tr>
  2340. </thead>
  2341. <tbody>
  2342. <tr>
  2343. <td><span class="xref">System.Int32</span></td>
  2344. <td></td>
  2345. </tr>
  2346. </tbody>
  2347. </table>
  2348. <span class="small pull-right mobile-hide">
  2349. <span class="divider">|</span>
  2350. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF12.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF12%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2351. </span>
  2352. <span class="small pull-right mobile-hide">
  2353. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L125">View Source</a>
  2354. </span>
  2355. <h4 id="Unix_Terminal_Curses_KeyF12" data-uid="Unix.Terminal.Curses.KeyF12">KeyF12</h4>
  2356. <div class="markdown level1 summary"></div>
  2357. <div class="markdown level1 conceptual"></div>
  2358. <h5 class="decalaration">Declaration</h5>
  2359. <div class="codewrapper">
  2360. <pre><code class="lang-csharp hljs">public const int KeyF12 = 276</code></pre>
  2361. </div>
  2362. <h5 class="fieldValue">Field Value</h5>
  2363. <table class="table table-bordered table-striped table-condensed">
  2364. <thead>
  2365. <tr>
  2366. <th>Type</th>
  2367. <th>Description</th>
  2368. </tr>
  2369. </thead>
  2370. <tbody>
  2371. <tr>
  2372. <td><span class="xref">System.Int32</span></td>
  2373. <td></td>
  2374. </tr>
  2375. </tbody>
  2376. </table>
  2377. <span class="small pull-right mobile-hide">
  2378. <span class="divider">|</span>
  2379. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF2.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF2%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2380. </span>
  2381. <span class="small pull-right mobile-hide">
  2382. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L115">View Source</a>
  2383. </span>
  2384. <h4 id="Unix_Terminal_Curses_KeyF2" data-uid="Unix.Terminal.Curses.KeyF2">KeyF2</h4>
  2385. <div class="markdown level1 summary"></div>
  2386. <div class="markdown level1 conceptual"></div>
  2387. <h5 class="decalaration">Declaration</h5>
  2388. <div class="codewrapper">
  2389. <pre><code class="lang-csharp hljs">public const int KeyF2 = 266</code></pre>
  2390. </div>
  2391. <h5 class="fieldValue">Field Value</h5>
  2392. <table class="table table-bordered table-striped table-condensed">
  2393. <thead>
  2394. <tr>
  2395. <th>Type</th>
  2396. <th>Description</th>
  2397. </tr>
  2398. </thead>
  2399. <tbody>
  2400. <tr>
  2401. <td><span class="xref">System.Int32</span></td>
  2402. <td></td>
  2403. </tr>
  2404. </tbody>
  2405. </table>
  2406. <span class="small pull-right mobile-hide">
  2407. <span class="divider">|</span>
  2408. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF3.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF3%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2409. </span>
  2410. <span class="small pull-right mobile-hide">
  2411. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L116">View Source</a>
  2412. </span>
  2413. <h4 id="Unix_Terminal_Curses_KeyF3" data-uid="Unix.Terminal.Curses.KeyF3">KeyF3</h4>
  2414. <div class="markdown level1 summary"></div>
  2415. <div class="markdown level1 conceptual"></div>
  2416. <h5 class="decalaration">Declaration</h5>
  2417. <div class="codewrapper">
  2418. <pre><code class="lang-csharp hljs">public const int KeyF3 = 267</code></pre>
  2419. </div>
  2420. <h5 class="fieldValue">Field Value</h5>
  2421. <table class="table table-bordered table-striped table-condensed">
  2422. <thead>
  2423. <tr>
  2424. <th>Type</th>
  2425. <th>Description</th>
  2426. </tr>
  2427. </thead>
  2428. <tbody>
  2429. <tr>
  2430. <td><span class="xref">System.Int32</span></td>
  2431. <td></td>
  2432. </tr>
  2433. </tbody>
  2434. </table>
  2435. <span class="small pull-right mobile-hide">
  2436. <span class="divider">|</span>
  2437. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF4.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF4%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2438. </span>
  2439. <span class="small pull-right mobile-hide">
  2440. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L117">View Source</a>
  2441. </span>
  2442. <h4 id="Unix_Terminal_Curses_KeyF4" data-uid="Unix.Terminal.Curses.KeyF4">KeyF4</h4>
  2443. <div class="markdown level1 summary"></div>
  2444. <div class="markdown level1 conceptual"></div>
  2445. <h5 class="decalaration">Declaration</h5>
  2446. <div class="codewrapper">
  2447. <pre><code class="lang-csharp hljs">public const int KeyF4 = 268</code></pre>
  2448. </div>
  2449. <h5 class="fieldValue">Field Value</h5>
  2450. <table class="table table-bordered table-striped table-condensed">
  2451. <thead>
  2452. <tr>
  2453. <th>Type</th>
  2454. <th>Description</th>
  2455. </tr>
  2456. </thead>
  2457. <tbody>
  2458. <tr>
  2459. <td><span class="xref">System.Int32</span></td>
  2460. <td></td>
  2461. </tr>
  2462. </tbody>
  2463. </table>
  2464. <span class="small pull-right mobile-hide">
  2465. <span class="divider">|</span>
  2466. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF5.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF5%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2467. </span>
  2468. <span class="small pull-right mobile-hide">
  2469. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L118">View Source</a>
  2470. </span>
  2471. <h4 id="Unix_Terminal_Curses_KeyF5" data-uid="Unix.Terminal.Curses.KeyF5">KeyF5</h4>
  2472. <div class="markdown level1 summary"></div>
  2473. <div class="markdown level1 conceptual"></div>
  2474. <h5 class="decalaration">Declaration</h5>
  2475. <div class="codewrapper">
  2476. <pre><code class="lang-csharp hljs">public const int KeyF5 = 269</code></pre>
  2477. </div>
  2478. <h5 class="fieldValue">Field Value</h5>
  2479. <table class="table table-bordered table-striped table-condensed">
  2480. <thead>
  2481. <tr>
  2482. <th>Type</th>
  2483. <th>Description</th>
  2484. </tr>
  2485. </thead>
  2486. <tbody>
  2487. <tr>
  2488. <td><span class="xref">System.Int32</span></td>
  2489. <td></td>
  2490. </tr>
  2491. </tbody>
  2492. </table>
  2493. <span class="small pull-right mobile-hide">
  2494. <span class="divider">|</span>
  2495. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF6.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF6%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2496. </span>
  2497. <span class="small pull-right mobile-hide">
  2498. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L119">View Source</a>
  2499. </span>
  2500. <h4 id="Unix_Terminal_Curses_KeyF6" data-uid="Unix.Terminal.Curses.KeyF6">KeyF6</h4>
  2501. <div class="markdown level1 summary"></div>
  2502. <div class="markdown level1 conceptual"></div>
  2503. <h5 class="decalaration">Declaration</h5>
  2504. <div class="codewrapper">
  2505. <pre><code class="lang-csharp hljs">public const int KeyF6 = 270</code></pre>
  2506. </div>
  2507. <h5 class="fieldValue">Field Value</h5>
  2508. <table class="table table-bordered table-striped table-condensed">
  2509. <thead>
  2510. <tr>
  2511. <th>Type</th>
  2512. <th>Description</th>
  2513. </tr>
  2514. </thead>
  2515. <tbody>
  2516. <tr>
  2517. <td><span class="xref">System.Int32</span></td>
  2518. <td></td>
  2519. </tr>
  2520. </tbody>
  2521. </table>
  2522. <span class="small pull-right mobile-hide">
  2523. <span class="divider">|</span>
  2524. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF7.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF7%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2525. </span>
  2526. <span class="small pull-right mobile-hide">
  2527. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L120">View Source</a>
  2528. </span>
  2529. <h4 id="Unix_Terminal_Curses_KeyF7" data-uid="Unix.Terminal.Curses.KeyF7">KeyF7</h4>
  2530. <div class="markdown level1 summary"></div>
  2531. <div class="markdown level1 conceptual"></div>
  2532. <h5 class="decalaration">Declaration</h5>
  2533. <div class="codewrapper">
  2534. <pre><code class="lang-csharp hljs">public const int KeyF7 = 271</code></pre>
  2535. </div>
  2536. <h5 class="fieldValue">Field Value</h5>
  2537. <table class="table table-bordered table-striped table-condensed">
  2538. <thead>
  2539. <tr>
  2540. <th>Type</th>
  2541. <th>Description</th>
  2542. </tr>
  2543. </thead>
  2544. <tbody>
  2545. <tr>
  2546. <td><span class="xref">System.Int32</span></td>
  2547. <td></td>
  2548. </tr>
  2549. </tbody>
  2550. </table>
  2551. <span class="small pull-right mobile-hide">
  2552. <span class="divider">|</span>
  2553. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF8.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF8%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2554. </span>
  2555. <span class="small pull-right mobile-hide">
  2556. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L121">View Source</a>
  2557. </span>
  2558. <h4 id="Unix_Terminal_Curses_KeyF8" data-uid="Unix.Terminal.Curses.KeyF8">KeyF8</h4>
  2559. <div class="markdown level1 summary"></div>
  2560. <div class="markdown level1 conceptual"></div>
  2561. <h5 class="decalaration">Declaration</h5>
  2562. <div class="codewrapper">
  2563. <pre><code class="lang-csharp hljs">public const int KeyF8 = 272</code></pre>
  2564. </div>
  2565. <h5 class="fieldValue">Field Value</h5>
  2566. <table class="table table-bordered table-striped table-condensed">
  2567. <thead>
  2568. <tr>
  2569. <th>Type</th>
  2570. <th>Description</th>
  2571. </tr>
  2572. </thead>
  2573. <tbody>
  2574. <tr>
  2575. <td><span class="xref">System.Int32</span></td>
  2576. <td></td>
  2577. </tr>
  2578. </tbody>
  2579. </table>
  2580. <span class="small pull-right mobile-hide">
  2581. <span class="divider">|</span>
  2582. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyF9.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyF9%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2583. </span>
  2584. <span class="small pull-right mobile-hide">
  2585. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L122">View Source</a>
  2586. </span>
  2587. <h4 id="Unix_Terminal_Curses_KeyF9" data-uid="Unix.Terminal.Curses.KeyF9">KeyF9</h4>
  2588. <div class="markdown level1 summary"></div>
  2589. <div class="markdown level1 conceptual"></div>
  2590. <h5 class="decalaration">Declaration</h5>
  2591. <div class="codewrapper">
  2592. <pre><code class="lang-csharp hljs">public const int KeyF9 = 273</code></pre>
  2593. </div>
  2594. <h5 class="fieldValue">Field Value</h5>
  2595. <table class="table table-bordered table-striped table-condensed">
  2596. <thead>
  2597. <tr>
  2598. <th>Type</th>
  2599. <th>Description</th>
  2600. </tr>
  2601. </thead>
  2602. <tbody>
  2603. <tr>
  2604. <td><span class="xref">System.Int32</span></td>
  2605. <td></td>
  2606. </tr>
  2607. </tbody>
  2608. </table>
  2609. <span class="small pull-right mobile-hide">
  2610. <span class="divider">|</span>
  2611. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyHome.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyHome%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2612. </span>
  2613. <span class="small pull-right mobile-hide">
  2614. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L107">View Source</a>
  2615. </span>
  2616. <h4 id="Unix_Terminal_Curses_KeyHome" data-uid="Unix.Terminal.Curses.KeyHome">KeyHome</h4>
  2617. <div class="markdown level1 summary"></div>
  2618. <div class="markdown level1 conceptual"></div>
  2619. <h5 class="decalaration">Declaration</h5>
  2620. <div class="codewrapper">
  2621. <pre><code class="lang-csharp hljs">public const int KeyHome = 262</code></pre>
  2622. </div>
  2623. <h5 class="fieldValue">Field Value</h5>
  2624. <table class="table table-bordered table-striped table-condensed">
  2625. <thead>
  2626. <tr>
  2627. <th>Type</th>
  2628. <th>Description</th>
  2629. </tr>
  2630. </thead>
  2631. <tbody>
  2632. <tr>
  2633. <td><span class="xref">System.Int32</span></td>
  2634. <td></td>
  2635. </tr>
  2636. </tbody>
  2637. </table>
  2638. <span class="small pull-right mobile-hide">
  2639. <span class="divider">|</span>
  2640. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyInsertChar.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyInsertChar%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2641. </span>
  2642. <span class="small pull-right mobile-hide">
  2643. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L111">View Source</a>
  2644. </span>
  2645. <h4 id="Unix_Terminal_Curses_KeyInsertChar" data-uid="Unix.Terminal.Curses.KeyInsertChar">KeyInsertChar</h4>
  2646. <div class="markdown level1 summary"></div>
  2647. <div class="markdown level1 conceptual"></div>
  2648. <h5 class="decalaration">Declaration</h5>
  2649. <div class="codewrapper">
  2650. <pre><code class="lang-csharp hljs">public const int KeyInsertChar = 331</code></pre>
  2651. </div>
  2652. <h5 class="fieldValue">Field Value</h5>
  2653. <table class="table table-bordered table-striped table-condensed">
  2654. <thead>
  2655. <tr>
  2656. <th>Type</th>
  2657. <th>Description</th>
  2658. </tr>
  2659. </thead>
  2660. <tbody>
  2661. <tr>
  2662. <td><span class="xref">System.Int32</span></td>
  2663. <td></td>
  2664. </tr>
  2665. </tbody>
  2666. </table>
  2667. <span class="small pull-right mobile-hide">
  2668. <span class="divider">|</span>
  2669. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyLeft.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyLeft%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2670. </span>
  2671. <span class="small pull-right mobile-hide">
  2672. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L103">View Source</a>
  2673. </span>
  2674. <h4 id="Unix_Terminal_Curses_KeyLeft" data-uid="Unix.Terminal.Curses.KeyLeft">KeyLeft</h4>
  2675. <div class="markdown level1 summary"></div>
  2676. <div class="markdown level1 conceptual"></div>
  2677. <h5 class="decalaration">Declaration</h5>
  2678. <div class="codewrapper">
  2679. <pre><code class="lang-csharp hljs">public const int KeyLeft = 260</code></pre>
  2680. </div>
  2681. <h5 class="fieldValue">Field Value</h5>
  2682. <table class="table table-bordered table-striped table-condensed">
  2683. <thead>
  2684. <tr>
  2685. <th>Type</th>
  2686. <th>Description</th>
  2687. </tr>
  2688. </thead>
  2689. <tbody>
  2690. <tr>
  2691. <td><span class="xref">System.Int32</span></td>
  2692. <td></td>
  2693. </tr>
  2694. </tbody>
  2695. </table>
  2696. <span class="small pull-right mobile-hide">
  2697. <span class="divider">|</span>
  2698. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyMouse.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyMouse%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2699. </span>
  2700. <span class="small pull-right mobile-hide">
  2701. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L108">View Source</a>
  2702. </span>
  2703. <h4 id="Unix_Terminal_Curses_KeyMouse" data-uid="Unix.Terminal.Curses.KeyMouse">KeyMouse</h4>
  2704. <div class="markdown level1 summary"></div>
  2705. <div class="markdown level1 conceptual"></div>
  2706. <h5 class="decalaration">Declaration</h5>
  2707. <div class="codewrapper">
  2708. <pre><code class="lang-csharp hljs">public const int KeyMouse = 409</code></pre>
  2709. </div>
  2710. <h5 class="fieldValue">Field Value</h5>
  2711. <table class="table table-bordered table-striped table-condensed">
  2712. <thead>
  2713. <tr>
  2714. <th>Type</th>
  2715. <th>Description</th>
  2716. </tr>
  2717. </thead>
  2718. <tbody>
  2719. <tr>
  2720. <td><span class="xref">System.Int32</span></td>
  2721. <td></td>
  2722. </tr>
  2723. </tbody>
  2724. </table>
  2725. <span class="small pull-right mobile-hide">
  2726. <span class="divider">|</span>
  2727. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyNPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyNPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2728. </span>
  2729. <span class="small pull-right mobile-hide">
  2730. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L105">View Source</a>
  2731. </span>
  2732. <h4 id="Unix_Terminal_Curses_KeyNPage" data-uid="Unix.Terminal.Curses.KeyNPage">KeyNPage</h4>
  2733. <div class="markdown level1 summary"></div>
  2734. <div class="markdown level1 conceptual"></div>
  2735. <h5 class="decalaration">Declaration</h5>
  2736. <div class="codewrapper">
  2737. <pre><code class="lang-csharp hljs">public const int KeyNPage = 338</code></pre>
  2738. </div>
  2739. <h5 class="fieldValue">Field Value</h5>
  2740. <table class="table table-bordered table-striped table-condensed">
  2741. <thead>
  2742. <tr>
  2743. <th>Type</th>
  2744. <th>Description</th>
  2745. </tr>
  2746. </thead>
  2747. <tbody>
  2748. <tr>
  2749. <td><span class="xref">System.Int32</span></td>
  2750. <td></td>
  2751. </tr>
  2752. </tbody>
  2753. </table>
  2754. <span class="small pull-right mobile-hide">
  2755. <span class="divider">|</span>
  2756. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyPPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyPPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2757. </span>
  2758. <span class="small pull-right mobile-hide">
  2759. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L106">View Source</a>
  2760. </span>
  2761. <h4 id="Unix_Terminal_Curses_KeyPPage" data-uid="Unix.Terminal.Curses.KeyPPage">KeyPPage</h4>
  2762. <div class="markdown level1 summary"></div>
  2763. <div class="markdown level1 conceptual"></div>
  2764. <h5 class="decalaration">Declaration</h5>
  2765. <div class="codewrapper">
  2766. <pre><code class="lang-csharp hljs">public const int KeyPPage = 339</code></pre>
  2767. </div>
  2768. <h5 class="fieldValue">Field Value</h5>
  2769. <table class="table table-bordered table-striped table-condensed">
  2770. <thead>
  2771. <tr>
  2772. <th>Type</th>
  2773. <th>Description</th>
  2774. </tr>
  2775. </thead>
  2776. <tbody>
  2777. <tr>
  2778. <td><span class="xref">System.Int32</span></td>
  2779. <td></td>
  2780. </tr>
  2781. </tbody>
  2782. </table>
  2783. <span class="small pull-right mobile-hide">
  2784. <span class="divider">|</span>
  2785. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyResize.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyResize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2786. </span>
  2787. <span class="small pull-right mobile-hide">
  2788. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L126">View Source</a>
  2789. </span>
  2790. <h4 id="Unix_Terminal_Curses_KeyResize" data-uid="Unix.Terminal.Curses.KeyResize">KeyResize</h4>
  2791. <div class="markdown level1 summary"></div>
  2792. <div class="markdown level1 conceptual"></div>
  2793. <h5 class="decalaration">Declaration</h5>
  2794. <div class="codewrapper">
  2795. <pre><code class="lang-csharp hljs">public const int KeyResize = 410</code></pre>
  2796. </div>
  2797. <h5 class="fieldValue">Field Value</h5>
  2798. <table class="table table-bordered table-striped table-condensed">
  2799. <thead>
  2800. <tr>
  2801. <th>Type</th>
  2802. <th>Description</th>
  2803. </tr>
  2804. </thead>
  2805. <tbody>
  2806. <tr>
  2807. <td><span class="xref">System.Int32</span></td>
  2808. <td></td>
  2809. </tr>
  2810. </tbody>
  2811. </table>
  2812. <span class="small pull-right mobile-hide">
  2813. <span class="divider">|</span>
  2814. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyRight.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyRight%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2815. </span>
  2816. <span class="small pull-right mobile-hide">
  2817. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L104">View Source</a>
  2818. </span>
  2819. <h4 id="Unix_Terminal_Curses_KeyRight" data-uid="Unix.Terminal.Curses.KeyRight">KeyRight</h4>
  2820. <div class="markdown level1 summary"></div>
  2821. <div class="markdown level1 conceptual"></div>
  2822. <h5 class="decalaration">Declaration</h5>
  2823. <div class="codewrapper">
  2824. <pre><code class="lang-csharp hljs">public const int KeyRight = 261</code></pre>
  2825. </div>
  2826. <h5 class="fieldValue">Field Value</h5>
  2827. <table class="table table-bordered table-striped table-condensed">
  2828. <thead>
  2829. <tr>
  2830. <th>Type</th>
  2831. <th>Description</th>
  2832. </tr>
  2833. </thead>
  2834. <tbody>
  2835. <tr>
  2836. <td><span class="xref">System.Int32</span></td>
  2837. <td></td>
  2838. </tr>
  2839. </tbody>
  2840. </table>
  2841. <span class="small pull-right mobile-hide">
  2842. <span class="divider">|</span>
  2843. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyTab.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyTab%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2844. </span>
  2845. <span class="small pull-right mobile-hide">
  2846. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L112">View Source</a>
  2847. </span>
  2848. <h4 id="Unix_Terminal_Curses_KeyTab" data-uid="Unix.Terminal.Curses.KeyTab">KeyTab</h4>
  2849. <div class="markdown level1 summary"></div>
  2850. <div class="markdown level1 conceptual"></div>
  2851. <h5 class="decalaration">Declaration</h5>
  2852. <div class="codewrapper">
  2853. <pre><code class="lang-csharp hljs">public const int KeyTab = 9</code></pre>
  2854. </div>
  2855. <h5 class="fieldValue">Field Value</h5>
  2856. <table class="table table-bordered table-striped table-condensed">
  2857. <thead>
  2858. <tr>
  2859. <th>Type</th>
  2860. <th>Description</th>
  2861. </tr>
  2862. </thead>
  2863. <tbody>
  2864. <tr>
  2865. <td><span class="xref">System.Int32</span></td>
  2866. <td></td>
  2867. </tr>
  2868. </tbody>
  2869. </table>
  2870. <span class="small pull-right mobile-hide">
  2871. <span class="divider">|</span>
  2872. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_KeyUp.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.KeyUp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2873. </span>
  2874. <span class="small pull-right mobile-hide">
  2875. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L101">View Source</a>
  2876. </span>
  2877. <h4 id="Unix_Terminal_Curses_KeyUp" data-uid="Unix.Terminal.Curses.KeyUp">KeyUp</h4>
  2878. <div class="markdown level1 summary"></div>
  2879. <div class="markdown level1 conceptual"></div>
  2880. <h5 class="decalaration">Declaration</h5>
  2881. <div class="codewrapper">
  2882. <pre><code class="lang-csharp hljs">public const int KeyUp = 259</code></pre>
  2883. </div>
  2884. <h5 class="fieldValue">Field Value</h5>
  2885. <table class="table table-bordered table-striped table-condensed">
  2886. <thead>
  2887. <tr>
  2888. <th>Type</th>
  2889. <th>Description</th>
  2890. </tr>
  2891. </thead>
  2892. <tbody>
  2893. <tr>
  2894. <td><span class="xref">System.Int32</span></td>
  2895. <td></td>
  2896. </tr>
  2897. </tbody>
  2898. </table>
  2899. <span class="small pull-right mobile-hide">
  2900. <span class="divider">|</span>
  2901. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_LeftRightUpNPagePPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.LeftRightUpNPagePPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2902. </span>
  2903. <span class="small pull-right mobile-hide">
  2904. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L96">View Source</a>
  2905. </span>
  2906. <h4 id="Unix_Terminal_Curses_LeftRightUpNPagePPage" data-uid="Unix.Terminal.Curses.LeftRightUpNPagePPage">LeftRightUpNPagePPage</h4>
  2907. <div class="markdown level1 summary"></div>
  2908. <div class="markdown level1 conceptual"></div>
  2909. <h5 class="decalaration">Declaration</h5>
  2910. <div class="codewrapper">
  2911. <pre><code class="lang-csharp hljs">public const int LeftRightUpNPagePPage = 0</code></pre>
  2912. </div>
  2913. <h5 class="fieldValue">Field Value</h5>
  2914. <table class="table table-bordered table-striped table-condensed">
  2915. <thead>
  2916. <tr>
  2917. <th>Type</th>
  2918. <th>Description</th>
  2919. </tr>
  2920. </thead>
  2921. <tbody>
  2922. <tr>
  2923. <td><span class="xref">System.Int32</span></td>
  2924. <td></td>
  2925. </tr>
  2926. </tbody>
  2927. </table>
  2928. <span class="small pull-right mobile-hide">
  2929. <span class="divider">|</span>
  2930. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftAltKeyDown.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftAltKeyDown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2931. </span>
  2932. <span class="small pull-right mobile-hide">
  2933. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L160">View Source</a>
  2934. </span>
  2935. <h4 id="Unix_Terminal_Curses_ShiftAltKeyDown" data-uid="Unix.Terminal.Curses.ShiftAltKeyDown">ShiftAltKeyDown</h4>
  2936. <div class="markdown level1 summary"></div>
  2937. <div class="markdown level1 conceptual"></div>
  2938. <h5 class="decalaration">Declaration</h5>
  2939. <div class="codewrapper">
  2940. <pre><code class="lang-csharp hljs">public const int ShiftAltKeyDown = 524</code></pre>
  2941. </div>
  2942. <h5 class="fieldValue">Field Value</h5>
  2943. <table class="table table-bordered table-striped table-condensed">
  2944. <thead>
  2945. <tr>
  2946. <th>Type</th>
  2947. <th>Description</th>
  2948. </tr>
  2949. </thead>
  2950. <tbody>
  2951. <tr>
  2952. <td><span class="xref">System.Int32</span></td>
  2953. <td></td>
  2954. </tr>
  2955. </tbody>
  2956. </table>
  2957. <span class="small pull-right mobile-hide">
  2958. <span class="divider">|</span>
  2959. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftAltKeyEnd.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftAltKeyEnd%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2960. </span>
  2961. <span class="small pull-right mobile-hide">
  2962. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L166">View Source</a>
  2963. </span>
  2964. <h4 id="Unix_Terminal_Curses_ShiftAltKeyEnd" data-uid="Unix.Terminal.Curses.ShiftAltKeyEnd">ShiftAltKeyEnd</h4>
  2965. <div class="markdown level1 summary"></div>
  2966. <div class="markdown level1 conceptual"></div>
  2967. <h5 class="decalaration">Declaration</h5>
  2968. <div class="codewrapper">
  2969. <pre><code class="lang-csharp hljs">public const int ShiftAltKeyEnd = 529</code></pre>
  2970. </div>
  2971. <h5 class="fieldValue">Field Value</h5>
  2972. <table class="table table-bordered table-striped table-condensed">
  2973. <thead>
  2974. <tr>
  2975. <th>Type</th>
  2976. <th>Description</th>
  2977. </tr>
  2978. </thead>
  2979. <tbody>
  2980. <tr>
  2981. <td><span class="xref">System.Int32</span></td>
  2982. <td></td>
  2983. </tr>
  2984. </tbody>
  2985. </table>
  2986. <span class="small pull-right mobile-hide">
  2987. <span class="divider">|</span>
  2988. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftAltKeyHome.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftAltKeyHome%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  2989. </span>
  2990. <span class="small pull-right mobile-hide">
  2991. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L165">View Source</a>
  2992. </span>
  2993. <h4 id="Unix_Terminal_Curses_ShiftAltKeyHome" data-uid="Unix.Terminal.Curses.ShiftAltKeyHome">ShiftAltKeyHome</h4>
  2994. <div class="markdown level1 summary"></div>
  2995. <div class="markdown level1 conceptual"></div>
  2996. <h5 class="decalaration">Declaration</h5>
  2997. <div class="codewrapper">
  2998. <pre><code class="lang-csharp hljs">public const int ShiftAltKeyHome = 534</code></pre>
  2999. </div>
  3000. <h5 class="fieldValue">Field Value</h5>
  3001. <table class="table table-bordered table-striped table-condensed">
  3002. <thead>
  3003. <tr>
  3004. <th>Type</th>
  3005. <th>Description</th>
  3006. </tr>
  3007. </thead>
  3008. <tbody>
  3009. <tr>
  3010. <td><span class="xref">System.Int32</span></td>
  3011. <td></td>
  3012. </tr>
  3013. </tbody>
  3014. </table>
  3015. <span class="small pull-right mobile-hide">
  3016. <span class="divider">|</span>
  3017. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftAltKeyLeft.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftAltKeyLeft%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3018. </span>
  3019. <span class="small pull-right mobile-hide">
  3020. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L161">View Source</a>
  3021. </span>
  3022. <h4 id="Unix_Terminal_Curses_ShiftAltKeyLeft" data-uid="Unix.Terminal.Curses.ShiftAltKeyLeft">ShiftAltKeyLeft</h4>
  3023. <div class="markdown level1 summary"></div>
  3024. <div class="markdown level1 conceptual"></div>
  3025. <h5 class="decalaration">Declaration</h5>
  3026. <div class="codewrapper">
  3027. <pre><code class="lang-csharp hljs">public const int ShiftAltKeyLeft = 544</code></pre>
  3028. </div>
  3029. <h5 class="fieldValue">Field Value</h5>
  3030. <table class="table table-bordered table-striped table-condensed">
  3031. <thead>
  3032. <tr>
  3033. <th>Type</th>
  3034. <th>Description</th>
  3035. </tr>
  3036. </thead>
  3037. <tbody>
  3038. <tr>
  3039. <td><span class="xref">System.Int32</span></td>
  3040. <td></td>
  3041. </tr>
  3042. </tbody>
  3043. </table>
  3044. <span class="small pull-right mobile-hide">
  3045. <span class="divider">|</span>
  3046. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftAltKeyNPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftAltKeyNPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3047. </span>
  3048. <span class="small pull-right mobile-hide">
  3049. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L163">View Source</a>
  3050. </span>
  3051. <h4 id="Unix_Terminal_Curses_ShiftAltKeyNPage" data-uid="Unix.Terminal.Curses.ShiftAltKeyNPage">ShiftAltKeyNPage</h4>
  3052. <div class="markdown level1 summary"></div>
  3053. <div class="markdown level1 conceptual"></div>
  3054. <h5 class="decalaration">Declaration</h5>
  3055. <div class="codewrapper">
  3056. <pre><code class="lang-csharp hljs">public const int ShiftAltKeyNPage = 549</code></pre>
  3057. </div>
  3058. <h5 class="fieldValue">Field Value</h5>
  3059. <table class="table table-bordered table-striped table-condensed">
  3060. <thead>
  3061. <tr>
  3062. <th>Type</th>
  3063. <th>Description</th>
  3064. </tr>
  3065. </thead>
  3066. <tbody>
  3067. <tr>
  3068. <td><span class="xref">System.Int32</span></td>
  3069. <td></td>
  3070. </tr>
  3071. </tbody>
  3072. </table>
  3073. <span class="small pull-right mobile-hide">
  3074. <span class="divider">|</span>
  3075. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftAltKeyPPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftAltKeyPPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3076. </span>
  3077. <span class="small pull-right mobile-hide">
  3078. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L164">View Source</a>
  3079. </span>
  3080. <h4 id="Unix_Terminal_Curses_ShiftAltKeyPPage" data-uid="Unix.Terminal.Curses.ShiftAltKeyPPage">ShiftAltKeyPPage</h4>
  3081. <div class="markdown level1 summary"></div>
  3082. <div class="markdown level1 conceptual"></div>
  3083. <h5 class="decalaration">Declaration</h5>
  3084. <div class="codewrapper">
  3085. <pre><code class="lang-csharp hljs">public const int ShiftAltKeyPPage = 554</code></pre>
  3086. </div>
  3087. <h5 class="fieldValue">Field Value</h5>
  3088. <table class="table table-bordered table-striped table-condensed">
  3089. <thead>
  3090. <tr>
  3091. <th>Type</th>
  3092. <th>Description</th>
  3093. </tr>
  3094. </thead>
  3095. <tbody>
  3096. <tr>
  3097. <td><span class="xref">System.Int32</span></td>
  3098. <td></td>
  3099. </tr>
  3100. </tbody>
  3101. </table>
  3102. <span class="small pull-right mobile-hide">
  3103. <span class="divider">|</span>
  3104. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftAltKeyRight.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftAltKeyRight%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3105. </span>
  3106. <span class="small pull-right mobile-hide">
  3107. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L162">View Source</a>
  3108. </span>
  3109. <h4 id="Unix_Terminal_Curses_ShiftAltKeyRight" data-uid="Unix.Terminal.Curses.ShiftAltKeyRight">ShiftAltKeyRight</h4>
  3110. <div class="markdown level1 summary"></div>
  3111. <div class="markdown level1 conceptual"></div>
  3112. <h5 class="decalaration">Declaration</h5>
  3113. <div class="codewrapper">
  3114. <pre><code class="lang-csharp hljs">public const int ShiftAltKeyRight = 559</code></pre>
  3115. </div>
  3116. <h5 class="fieldValue">Field Value</h5>
  3117. <table class="table table-bordered table-striped table-condensed">
  3118. <thead>
  3119. <tr>
  3120. <th>Type</th>
  3121. <th>Description</th>
  3122. </tr>
  3123. </thead>
  3124. <tbody>
  3125. <tr>
  3126. <td><span class="xref">System.Int32</span></td>
  3127. <td></td>
  3128. </tr>
  3129. </tbody>
  3130. </table>
  3131. <span class="small pull-right mobile-hide">
  3132. <span class="divider">|</span>
  3133. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftAltKeyUp.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftAltKeyUp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3134. </span>
  3135. <span class="small pull-right mobile-hide">
  3136. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L159">View Source</a>
  3137. </span>
  3138. <h4 id="Unix_Terminal_Curses_ShiftAltKeyUp" data-uid="Unix.Terminal.Curses.ShiftAltKeyUp">ShiftAltKeyUp</h4>
  3139. <div class="markdown level1 summary"></div>
  3140. <div class="markdown level1 conceptual"></div>
  3141. <h5 class="decalaration">Declaration</h5>
  3142. <div class="codewrapper">
  3143. <pre><code class="lang-csharp hljs">public const int ShiftAltKeyUp = 565</code></pre>
  3144. </div>
  3145. <h5 class="fieldValue">Field Value</h5>
  3146. <table class="table table-bordered table-striped table-condensed">
  3147. <thead>
  3148. <tr>
  3149. <th>Type</th>
  3150. <th>Description</th>
  3151. </tr>
  3152. </thead>
  3153. <tbody>
  3154. <tr>
  3155. <td><span class="xref">System.Int32</span></td>
  3156. <td></td>
  3157. </tr>
  3158. </tbody>
  3159. </table>
  3160. <span class="small pull-right mobile-hide">
  3161. <span class="divider">|</span>
  3162. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftCtrlKeyDown.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftCtrlKeyDown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3163. </span>
  3164. <span class="small pull-right mobile-hide">
  3165. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L152">View Source</a>
  3166. </span>
  3167. <h4 id="Unix_Terminal_Curses_ShiftCtrlKeyDown" data-uid="Unix.Terminal.Curses.ShiftCtrlKeyDown">ShiftCtrlKeyDown</h4>
  3168. <div class="markdown level1 summary"></div>
  3169. <div class="markdown level1 conceptual"></div>
  3170. <h5 class="decalaration">Declaration</h5>
  3171. <div class="codewrapper">
  3172. <pre><code class="lang-csharp hljs">public const int ShiftCtrlKeyDown = 526</code></pre>
  3173. </div>
  3174. <h5 class="fieldValue">Field Value</h5>
  3175. <table class="table table-bordered table-striped table-condensed">
  3176. <thead>
  3177. <tr>
  3178. <th>Type</th>
  3179. <th>Description</th>
  3180. </tr>
  3181. </thead>
  3182. <tbody>
  3183. <tr>
  3184. <td><span class="xref">System.Int32</span></td>
  3185. <td></td>
  3186. </tr>
  3187. </tbody>
  3188. </table>
  3189. <span class="small pull-right mobile-hide">
  3190. <span class="divider">|</span>
  3191. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftCtrlKeyEnd.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftCtrlKeyEnd%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3192. </span>
  3193. <span class="small pull-right mobile-hide">
  3194. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L158">View Source</a>
  3195. </span>
  3196. <h4 id="Unix_Terminal_Curses_ShiftCtrlKeyEnd" data-uid="Unix.Terminal.Curses.ShiftCtrlKeyEnd">ShiftCtrlKeyEnd</h4>
  3197. <div class="markdown level1 summary"></div>
  3198. <div class="markdown level1 conceptual"></div>
  3199. <h5 class="decalaration">Declaration</h5>
  3200. <div class="codewrapper">
  3201. <pre><code class="lang-csharp hljs">public const int ShiftCtrlKeyEnd = 531</code></pre>
  3202. </div>
  3203. <h5 class="fieldValue">Field Value</h5>
  3204. <table class="table table-bordered table-striped table-condensed">
  3205. <thead>
  3206. <tr>
  3207. <th>Type</th>
  3208. <th>Description</th>
  3209. </tr>
  3210. </thead>
  3211. <tbody>
  3212. <tr>
  3213. <td><span class="xref">System.Int32</span></td>
  3214. <td></td>
  3215. </tr>
  3216. </tbody>
  3217. </table>
  3218. <span class="small pull-right mobile-hide">
  3219. <span class="divider">|</span>
  3220. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftCtrlKeyHome.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftCtrlKeyHome%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3221. </span>
  3222. <span class="small pull-right mobile-hide">
  3223. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L157">View Source</a>
  3224. </span>
  3225. <h4 id="Unix_Terminal_Curses_ShiftCtrlKeyHome" data-uid="Unix.Terminal.Curses.ShiftCtrlKeyHome">ShiftCtrlKeyHome</h4>
  3226. <div class="markdown level1 summary"></div>
  3227. <div class="markdown level1 conceptual"></div>
  3228. <h5 class="decalaration">Declaration</h5>
  3229. <div class="codewrapper">
  3230. <pre><code class="lang-csharp hljs">public const int ShiftCtrlKeyHome = 536</code></pre>
  3231. </div>
  3232. <h5 class="fieldValue">Field Value</h5>
  3233. <table class="table table-bordered table-striped table-condensed">
  3234. <thead>
  3235. <tr>
  3236. <th>Type</th>
  3237. <th>Description</th>
  3238. </tr>
  3239. </thead>
  3240. <tbody>
  3241. <tr>
  3242. <td><span class="xref">System.Int32</span></td>
  3243. <td></td>
  3244. </tr>
  3245. </tbody>
  3246. </table>
  3247. <span class="small pull-right mobile-hide">
  3248. <span class="divider">|</span>
  3249. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftCtrlKeyLeft.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftCtrlKeyLeft%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3250. </span>
  3251. <span class="small pull-right mobile-hide">
  3252. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L153">View Source</a>
  3253. </span>
  3254. <h4 id="Unix_Terminal_Curses_ShiftCtrlKeyLeft" data-uid="Unix.Terminal.Curses.ShiftCtrlKeyLeft">ShiftCtrlKeyLeft</h4>
  3255. <div class="markdown level1 summary"></div>
  3256. <div class="markdown level1 conceptual"></div>
  3257. <h5 class="decalaration">Declaration</h5>
  3258. <div class="codewrapper">
  3259. <pre><code class="lang-csharp hljs">public const int ShiftCtrlKeyLeft = 546</code></pre>
  3260. </div>
  3261. <h5 class="fieldValue">Field Value</h5>
  3262. <table class="table table-bordered table-striped table-condensed">
  3263. <thead>
  3264. <tr>
  3265. <th>Type</th>
  3266. <th>Description</th>
  3267. </tr>
  3268. </thead>
  3269. <tbody>
  3270. <tr>
  3271. <td><span class="xref">System.Int32</span></td>
  3272. <td></td>
  3273. </tr>
  3274. </tbody>
  3275. </table>
  3276. <span class="small pull-right mobile-hide">
  3277. <span class="divider">|</span>
  3278. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftCtrlKeyNPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftCtrlKeyNPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3279. </span>
  3280. <span class="small pull-right mobile-hide">
  3281. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L155">View Source</a>
  3282. </span>
  3283. <h4 id="Unix_Terminal_Curses_ShiftCtrlKeyNPage" data-uid="Unix.Terminal.Curses.ShiftCtrlKeyNPage">ShiftCtrlKeyNPage</h4>
  3284. <div class="markdown level1 summary"></div>
  3285. <div class="markdown level1 conceptual"></div>
  3286. <h5 class="decalaration">Declaration</h5>
  3287. <div class="codewrapper">
  3288. <pre><code class="lang-csharp hljs">public const int ShiftCtrlKeyNPage = 551</code></pre>
  3289. </div>
  3290. <h5 class="fieldValue">Field Value</h5>
  3291. <table class="table table-bordered table-striped table-condensed">
  3292. <thead>
  3293. <tr>
  3294. <th>Type</th>
  3295. <th>Description</th>
  3296. </tr>
  3297. </thead>
  3298. <tbody>
  3299. <tr>
  3300. <td><span class="xref">System.Int32</span></td>
  3301. <td></td>
  3302. </tr>
  3303. </tbody>
  3304. </table>
  3305. <span class="small pull-right mobile-hide">
  3306. <span class="divider">|</span>
  3307. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftCtrlKeyPPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftCtrlKeyPPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3308. </span>
  3309. <span class="small pull-right mobile-hide">
  3310. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L156">View Source</a>
  3311. </span>
  3312. <h4 id="Unix_Terminal_Curses_ShiftCtrlKeyPPage" data-uid="Unix.Terminal.Curses.ShiftCtrlKeyPPage">ShiftCtrlKeyPPage</h4>
  3313. <div class="markdown level1 summary"></div>
  3314. <div class="markdown level1 conceptual"></div>
  3315. <h5 class="decalaration">Declaration</h5>
  3316. <div class="codewrapper">
  3317. <pre><code class="lang-csharp hljs">public const int ShiftCtrlKeyPPage = 556</code></pre>
  3318. </div>
  3319. <h5 class="fieldValue">Field Value</h5>
  3320. <table class="table table-bordered table-striped table-condensed">
  3321. <thead>
  3322. <tr>
  3323. <th>Type</th>
  3324. <th>Description</th>
  3325. </tr>
  3326. </thead>
  3327. <tbody>
  3328. <tr>
  3329. <td><span class="xref">System.Int32</span></td>
  3330. <td></td>
  3331. </tr>
  3332. </tbody>
  3333. </table>
  3334. <span class="small pull-right mobile-hide">
  3335. <span class="divider">|</span>
  3336. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftCtrlKeyRight.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftCtrlKeyRight%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3337. </span>
  3338. <span class="small pull-right mobile-hide">
  3339. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L154">View Source</a>
  3340. </span>
  3341. <h4 id="Unix_Terminal_Curses_ShiftCtrlKeyRight" data-uid="Unix.Terminal.Curses.ShiftCtrlKeyRight">ShiftCtrlKeyRight</h4>
  3342. <div class="markdown level1 summary"></div>
  3343. <div class="markdown level1 conceptual"></div>
  3344. <h5 class="decalaration">Declaration</h5>
  3345. <div class="codewrapper">
  3346. <pre><code class="lang-csharp hljs">public const int ShiftCtrlKeyRight = 561</code></pre>
  3347. </div>
  3348. <h5 class="fieldValue">Field Value</h5>
  3349. <table class="table table-bordered table-striped table-condensed">
  3350. <thead>
  3351. <tr>
  3352. <th>Type</th>
  3353. <th>Description</th>
  3354. </tr>
  3355. </thead>
  3356. <tbody>
  3357. <tr>
  3358. <td><span class="xref">System.Int32</span></td>
  3359. <td></td>
  3360. </tr>
  3361. </tbody>
  3362. </table>
  3363. <span class="small pull-right mobile-hide">
  3364. <span class="divider">|</span>
  3365. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftCtrlKeyUp.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftCtrlKeyUp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3366. </span>
  3367. <span class="small pull-right mobile-hide">
  3368. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L151">View Source</a>
  3369. </span>
  3370. <h4 id="Unix_Terminal_Curses_ShiftCtrlKeyUp" data-uid="Unix.Terminal.Curses.ShiftCtrlKeyUp">ShiftCtrlKeyUp</h4>
  3371. <div class="markdown level1 summary"></div>
  3372. <div class="markdown level1 conceptual"></div>
  3373. <h5 class="decalaration">Declaration</h5>
  3374. <div class="codewrapper">
  3375. <pre><code class="lang-csharp hljs">public const int ShiftCtrlKeyUp = 567</code></pre>
  3376. </div>
  3377. <h5 class="fieldValue">Field Value</h5>
  3378. <table class="table table-bordered table-striped table-condensed">
  3379. <thead>
  3380. <tr>
  3381. <th>Type</th>
  3382. <th>Description</th>
  3383. </tr>
  3384. </thead>
  3385. <tbody>
  3386. <tr>
  3387. <td><span class="xref">System.Int32</span></td>
  3388. <td></td>
  3389. </tr>
  3390. </tbody>
  3391. </table>
  3392. <span class="small pull-right mobile-hide">
  3393. <span class="divider">|</span>
  3394. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftKeyDown.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftKeyDown%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3395. </span>
  3396. <span class="small pull-right mobile-hide">
  3397. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L128">View Source</a>
  3398. </span>
  3399. <h4 id="Unix_Terminal_Curses_ShiftKeyDown" data-uid="Unix.Terminal.Curses.ShiftKeyDown">ShiftKeyDown</h4>
  3400. <div class="markdown level1 summary"></div>
  3401. <div class="markdown level1 conceptual"></div>
  3402. <h5 class="decalaration">Declaration</h5>
  3403. <div class="codewrapper">
  3404. <pre><code class="lang-csharp hljs">public const int ShiftKeyDown = 336</code></pre>
  3405. </div>
  3406. <h5 class="fieldValue">Field Value</h5>
  3407. <table class="table table-bordered table-striped table-condensed">
  3408. <thead>
  3409. <tr>
  3410. <th>Type</th>
  3411. <th>Description</th>
  3412. </tr>
  3413. </thead>
  3414. <tbody>
  3415. <tr>
  3416. <td><span class="xref">System.Int32</span></td>
  3417. <td></td>
  3418. </tr>
  3419. </tbody>
  3420. </table>
  3421. <span class="small pull-right mobile-hide">
  3422. <span class="divider">|</span>
  3423. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftKeyEnd.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftKeyEnd%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3424. </span>
  3425. <span class="small pull-right mobile-hide">
  3426. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L134">View Source</a>
  3427. </span>
  3428. <h4 id="Unix_Terminal_Curses_ShiftKeyEnd" data-uid="Unix.Terminal.Curses.ShiftKeyEnd">ShiftKeyEnd</h4>
  3429. <div class="markdown level1 summary"></div>
  3430. <div class="markdown level1 conceptual"></div>
  3431. <h5 class="decalaration">Declaration</h5>
  3432. <div class="codewrapper">
  3433. <pre><code class="lang-csharp hljs">public const int ShiftKeyEnd = 386</code></pre>
  3434. </div>
  3435. <h5 class="fieldValue">Field Value</h5>
  3436. <table class="table table-bordered table-striped table-condensed">
  3437. <thead>
  3438. <tr>
  3439. <th>Type</th>
  3440. <th>Description</th>
  3441. </tr>
  3442. </thead>
  3443. <tbody>
  3444. <tr>
  3445. <td><span class="xref">System.Int32</span></td>
  3446. <td></td>
  3447. </tr>
  3448. </tbody>
  3449. </table>
  3450. <span class="small pull-right mobile-hide">
  3451. <span class="divider">|</span>
  3452. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftKeyHome.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftKeyHome%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3453. </span>
  3454. <span class="small pull-right mobile-hide">
  3455. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L133">View Source</a>
  3456. </span>
  3457. <h4 id="Unix_Terminal_Curses_ShiftKeyHome" data-uid="Unix.Terminal.Curses.ShiftKeyHome">ShiftKeyHome</h4>
  3458. <div class="markdown level1 summary"></div>
  3459. <div class="markdown level1 conceptual"></div>
  3460. <h5 class="decalaration">Declaration</h5>
  3461. <div class="codewrapper">
  3462. <pre><code class="lang-csharp hljs">public const int ShiftKeyHome = 391</code></pre>
  3463. </div>
  3464. <h5 class="fieldValue">Field Value</h5>
  3465. <table class="table table-bordered table-striped table-condensed">
  3466. <thead>
  3467. <tr>
  3468. <th>Type</th>
  3469. <th>Description</th>
  3470. </tr>
  3471. </thead>
  3472. <tbody>
  3473. <tr>
  3474. <td><span class="xref">System.Int32</span></td>
  3475. <td></td>
  3476. </tr>
  3477. </tbody>
  3478. </table>
  3479. <span class="small pull-right mobile-hide">
  3480. <span class="divider">|</span>
  3481. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftKeyLeft.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftKeyLeft%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3482. </span>
  3483. <span class="small pull-right mobile-hide">
  3484. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L129">View Source</a>
  3485. </span>
  3486. <h4 id="Unix_Terminal_Curses_ShiftKeyLeft" data-uid="Unix.Terminal.Curses.ShiftKeyLeft">ShiftKeyLeft</h4>
  3487. <div class="markdown level1 summary"></div>
  3488. <div class="markdown level1 conceptual"></div>
  3489. <h5 class="decalaration">Declaration</h5>
  3490. <div class="codewrapper">
  3491. <pre><code class="lang-csharp hljs">public const int ShiftKeyLeft = 393</code></pre>
  3492. </div>
  3493. <h5 class="fieldValue">Field Value</h5>
  3494. <table class="table table-bordered table-striped table-condensed">
  3495. <thead>
  3496. <tr>
  3497. <th>Type</th>
  3498. <th>Description</th>
  3499. </tr>
  3500. </thead>
  3501. <tbody>
  3502. <tr>
  3503. <td><span class="xref">System.Int32</span></td>
  3504. <td></td>
  3505. </tr>
  3506. </tbody>
  3507. </table>
  3508. <span class="small pull-right mobile-hide">
  3509. <span class="divider">|</span>
  3510. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftKeyNPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftKeyNPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3511. </span>
  3512. <span class="small pull-right mobile-hide">
  3513. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L131">View Source</a>
  3514. </span>
  3515. <h4 id="Unix_Terminal_Curses_ShiftKeyNPage" data-uid="Unix.Terminal.Curses.ShiftKeyNPage">ShiftKeyNPage</h4>
  3516. <div class="markdown level1 summary"></div>
  3517. <div class="markdown level1 conceptual"></div>
  3518. <h5 class="decalaration">Declaration</h5>
  3519. <div class="codewrapper">
  3520. <pre><code class="lang-csharp hljs">public const int ShiftKeyNPage = 396</code></pre>
  3521. </div>
  3522. <h5 class="fieldValue">Field Value</h5>
  3523. <table class="table table-bordered table-striped table-condensed">
  3524. <thead>
  3525. <tr>
  3526. <th>Type</th>
  3527. <th>Description</th>
  3528. </tr>
  3529. </thead>
  3530. <tbody>
  3531. <tr>
  3532. <td><span class="xref">System.Int32</span></td>
  3533. <td></td>
  3534. </tr>
  3535. </tbody>
  3536. </table>
  3537. <span class="small pull-right mobile-hide">
  3538. <span class="divider">|</span>
  3539. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftKeyPPage.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftKeyPPage%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3540. </span>
  3541. <span class="small pull-right mobile-hide">
  3542. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L132">View Source</a>
  3543. </span>
  3544. <h4 id="Unix_Terminal_Curses_ShiftKeyPPage" data-uid="Unix.Terminal.Curses.ShiftKeyPPage">ShiftKeyPPage</h4>
  3545. <div class="markdown level1 summary"></div>
  3546. <div class="markdown level1 conceptual"></div>
  3547. <h5 class="decalaration">Declaration</h5>
  3548. <div class="codewrapper">
  3549. <pre><code class="lang-csharp hljs">public const int ShiftKeyPPage = 398</code></pre>
  3550. </div>
  3551. <h5 class="fieldValue">Field Value</h5>
  3552. <table class="table table-bordered table-striped table-condensed">
  3553. <thead>
  3554. <tr>
  3555. <th>Type</th>
  3556. <th>Description</th>
  3557. </tr>
  3558. </thead>
  3559. <tbody>
  3560. <tr>
  3561. <td><span class="xref">System.Int32</span></td>
  3562. <td></td>
  3563. </tr>
  3564. </tbody>
  3565. </table>
  3566. <span class="small pull-right mobile-hide">
  3567. <span class="divider">|</span>
  3568. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftKeyRight.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftKeyRight%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3569. </span>
  3570. <span class="small pull-right mobile-hide">
  3571. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L130">View Source</a>
  3572. </span>
  3573. <h4 id="Unix_Terminal_Curses_ShiftKeyRight" data-uid="Unix.Terminal.Curses.ShiftKeyRight">ShiftKeyRight</h4>
  3574. <div class="markdown level1 summary"></div>
  3575. <div class="markdown level1 conceptual"></div>
  3576. <h5 class="decalaration">Declaration</h5>
  3577. <div class="codewrapper">
  3578. <pre><code class="lang-csharp hljs">public const int ShiftKeyRight = 402</code></pre>
  3579. </div>
  3580. <h5 class="fieldValue">Field Value</h5>
  3581. <table class="table table-bordered table-striped table-condensed">
  3582. <thead>
  3583. <tr>
  3584. <th>Type</th>
  3585. <th>Description</th>
  3586. </tr>
  3587. </thead>
  3588. <tbody>
  3589. <tr>
  3590. <td><span class="xref">System.Int32</span></td>
  3591. <td></td>
  3592. </tr>
  3593. </tbody>
  3594. </table>
  3595. <span class="small pull-right mobile-hide">
  3596. <span class="divider">|</span>
  3597. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ShiftKeyUp.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ShiftKeyUp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3598. </span>
  3599. <span class="small pull-right mobile-hide">
  3600. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L127">View Source</a>
  3601. </span>
  3602. <h4 id="Unix_Terminal_Curses_ShiftKeyUp" data-uid="Unix.Terminal.Curses.ShiftKeyUp">ShiftKeyUp</h4>
  3603. <div class="markdown level1 summary"></div>
  3604. <div class="markdown level1 conceptual"></div>
  3605. <h5 class="decalaration">Declaration</h5>
  3606. <div class="codewrapper">
  3607. <pre><code class="lang-csharp hljs">public const int ShiftKeyUp = 337</code></pre>
  3608. </div>
  3609. <h5 class="fieldValue">Field Value</h5>
  3610. <table class="table table-bordered table-striped table-condensed">
  3611. <thead>
  3612. <tr>
  3613. <th>Type</th>
  3614. <th>Description</th>
  3615. </tr>
  3616. </thead>
  3617. <tbody>
  3618. <tr>
  3619. <td><span class="xref">System.Int32</span></td>
  3620. <td></td>
  3621. </tr>
  3622. </tbody>
  3623. </table>
  3624. <span class="small pull-right mobile-hide">
  3625. <span class="divider">|</span>
  3626. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_TIOCGWINSZ.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.TIOCGWINSZ%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3627. </span>
  3628. <span class="small pull-right mobile-hide">
  3629. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L58">View Source</a>
  3630. </span>
  3631. <h4 id="Unix_Terminal_Curses_TIOCGWINSZ" data-uid="Unix.Terminal.Curses.TIOCGWINSZ">TIOCGWINSZ</h4>
  3632. <div class="markdown level1 summary"></div>
  3633. <div class="markdown level1 conceptual"></div>
  3634. <h5 class="decalaration">Declaration</h5>
  3635. <div class="codewrapper">
  3636. <pre><code class="lang-csharp hljs">public const int TIOCGWINSZ = 21523</code></pre>
  3637. </div>
  3638. <h5 class="fieldValue">Field Value</h5>
  3639. <table class="table table-bordered table-striped table-condensed">
  3640. <thead>
  3641. <tr>
  3642. <th>Type</th>
  3643. <th>Description</th>
  3644. </tr>
  3645. </thead>
  3646. <tbody>
  3647. <tr>
  3648. <td><span class="xref">System.Int32</span></td>
  3649. <td></td>
  3650. </tr>
  3651. </tbody>
  3652. </table>
  3653. <span class="small pull-right mobile-hide">
  3654. <span class="divider">|</span>
  3655. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_TIOCGWINSZ_MAC.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.TIOCGWINSZ_MAC%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3656. </span>
  3657. <span class="small pull-right mobile-hide">
  3658. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L59">View Source</a>
  3659. </span>
  3660. <h4 id="Unix_Terminal_Curses_TIOCGWINSZ_MAC" data-uid="Unix.Terminal.Curses.TIOCGWINSZ_MAC">TIOCGWINSZ_MAC</h4>
  3661. <div class="markdown level1 summary"></div>
  3662. <div class="markdown level1 conceptual"></div>
  3663. <h5 class="decalaration">Declaration</h5>
  3664. <div class="codewrapper">
  3665. <pre><code class="lang-csharp hljs">public const int TIOCGWINSZ_MAC = 1074295912</code></pre>
  3666. </div>
  3667. <h5 class="fieldValue">Field Value</h5>
  3668. <table class="table table-bordered table-striped table-condensed">
  3669. <thead>
  3670. <tr>
  3671. <th>Type</th>
  3672. <th>Description</th>
  3673. </tr>
  3674. </thead>
  3675. <tbody>
  3676. <tr>
  3677. <td><span class="xref">System.Int32</span></td>
  3678. <td></td>
  3679. </tr>
  3680. </tbody>
  3681. </table>
  3682. <h3 id="properties">Properties
  3683. </h3>
  3684. <span class="small pull-right mobile-hide">
  3685. <span class="divider">|</span>
  3686. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ColorPairs.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ColorPairs%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3687. </span>
  3688. <span class="small pull-right mobile-hide">
  3689. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L261">View Source</a>
  3690. </span>
  3691. <a id="Unix_Terminal_Curses_ColorPairs_" data-uid="Unix.Terminal.Curses.ColorPairs*"></a>
  3692. <h4 id="Unix_Terminal_Curses_ColorPairs" data-uid="Unix.Terminal.Curses.ColorPairs">ColorPairs</h4>
  3693. <div class="markdown level1 summary"></div>
  3694. <div class="markdown level1 conceptual"></div>
  3695. <h5 class="decalaration">Declaration</h5>
  3696. <div class="codewrapper">
  3697. <pre><code class="lang-csharp hljs">public static int ColorPairs { get; }</code></pre>
  3698. </div>
  3699. <h5 class="propertyValue">Property Value</h5>
  3700. <table class="table table-bordered table-striped table-condensed">
  3701. <thead>
  3702. <tr>
  3703. <th>Type</th>
  3704. <th>Description</th>
  3705. </tr>
  3706. </thead>
  3707. <tbody>
  3708. <tr>
  3709. <td><span class="xref">System.Int32</span></td>
  3710. <td></td>
  3711. </tr>
  3712. </tbody>
  3713. </table>
  3714. <span class="small pull-right mobile-hide">
  3715. <span class="divider">|</span>
  3716. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_Cols.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.Cols%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3717. </span>
  3718. <span class="small pull-right mobile-hide">
  3719. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L129">View Source</a>
  3720. </span>
  3721. <a id="Unix_Terminal_Curses_Cols_" data-uid="Unix.Terminal.Curses.Cols*"></a>
  3722. <h4 id="Unix_Terminal_Curses_Cols" data-uid="Unix.Terminal.Curses.Cols">Cols</h4>
  3723. <div class="markdown level1 summary"></div>
  3724. <div class="markdown level1 conceptual"></div>
  3725. <h5 class="decalaration">Declaration</h5>
  3726. <div class="codewrapper">
  3727. <pre><code class="lang-csharp hljs">public static int Cols { get; }</code></pre>
  3728. </div>
  3729. <h5 class="propertyValue">Property Value</h5>
  3730. <table class="table table-bordered table-striped table-condensed">
  3731. <thead>
  3732. <tr>
  3733. <th>Type</th>
  3734. <th>Description</th>
  3735. </tr>
  3736. </thead>
  3737. <tbody>
  3738. <tr>
  3739. <td><span class="xref">System.Int32</span></td>
  3740. <td></td>
  3741. </tr>
  3742. </tbody>
  3743. </table>
  3744. <span class="small pull-right mobile-hide">
  3745. <span class="divider">|</span>
  3746. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_HasColors.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.HasColors%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3747. </span>
  3748. <span class="small pull-right mobile-hide">
  3749. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L258">View Source</a>
  3750. </span>
  3751. <a id="Unix_Terminal_Curses_HasColors_" data-uid="Unix.Terminal.Curses.HasColors*"></a>
  3752. <h4 id="Unix_Terminal_Curses_HasColors" data-uid="Unix.Terminal.Curses.HasColors">HasColors</h4>
  3753. <div class="markdown level1 summary"></div>
  3754. <div class="markdown level1 conceptual"></div>
  3755. <h5 class="decalaration">Declaration</h5>
  3756. <div class="codewrapper">
  3757. <pre><code class="lang-csharp hljs">public static bool HasColors { get; }</code></pre>
  3758. </div>
  3759. <h5 class="propertyValue">Property Value</h5>
  3760. <table class="table table-bordered table-striped table-condensed">
  3761. <thead>
  3762. <tr>
  3763. <th>Type</th>
  3764. <th>Description</th>
  3765. </tr>
  3766. </thead>
  3767. <tbody>
  3768. <tr>
  3769. <td><span class="xref">System.Boolean</span></td>
  3770. <td></td>
  3771. </tr>
  3772. </tbody>
  3773. </table>
  3774. <span class="small pull-right mobile-hide">
  3775. <span class="divider">|</span>
  3776. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_LC_ALL.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.LC_ALL%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3777. </span>
  3778. <span class="small pull-right mobile-hide">
  3779. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L173">View Source</a>
  3780. </span>
  3781. <a id="Unix_Terminal_Curses_LC_ALL_" data-uid="Unix.Terminal.Curses.LC_ALL*"></a>
  3782. <h4 id="Unix_Terminal_Curses_LC_ALL" data-uid="Unix.Terminal.Curses.LC_ALL">LC_ALL</h4>
  3783. <div class="markdown level1 summary"></div>
  3784. <div class="markdown level1 conceptual"></div>
  3785. <h5 class="decalaration">Declaration</h5>
  3786. <div class="codewrapper">
  3787. <pre><code class="lang-csharp hljs">public static int LC_ALL { get; }</code></pre>
  3788. </div>
  3789. <h5 class="propertyValue">Property Value</h5>
  3790. <table class="table table-bordered table-striped table-condensed">
  3791. <thead>
  3792. <tr>
  3793. <th>Type</th>
  3794. <th>Description</th>
  3795. </tr>
  3796. </thead>
  3797. <tbody>
  3798. <tr>
  3799. <td><span class="xref">System.Int32</span></td>
  3800. <td></td>
  3801. </tr>
  3802. </tbody>
  3803. </table>
  3804. <span class="small pull-right mobile-hide">
  3805. <span class="divider">|</span>
  3806. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_Lines.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.Lines%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3807. </span>
  3808. <span class="small pull-right mobile-hide">
  3809. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L123">View Source</a>
  3810. </span>
  3811. <a id="Unix_Terminal_Curses_Lines_" data-uid="Unix.Terminal.Curses.Lines*"></a>
  3812. <h4 id="Unix_Terminal_Curses_Lines" data-uid="Unix.Terminal.Curses.Lines">Lines</h4>
  3813. <div class="markdown level1 summary"></div>
  3814. <div class="markdown level1 conceptual"></div>
  3815. <h5 class="decalaration">Declaration</h5>
  3816. <div class="codewrapper">
  3817. <pre><code class="lang-csharp hljs">public static int Lines { get; }</code></pre>
  3818. </div>
  3819. <h5 class="propertyValue">Property Value</h5>
  3820. <table class="table table-bordered table-striped table-condensed">
  3821. <thead>
  3822. <tr>
  3823. <th>Type</th>
  3824. <th>Description</th>
  3825. </tr>
  3826. </thead>
  3827. <tbody>
  3828. <tr>
  3829. <td><span class="xref">System.Int32</span></td>
  3830. <td></td>
  3831. </tr>
  3832. </tbody>
  3833. </table>
  3834. <h3 id="methods">Methods
  3835. </h3>
  3836. <span class="small pull-right mobile-hide">
  3837. <span class="divider">|</span>
  3838. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_addch_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.addch(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3839. </span>
  3840. <span class="small pull-right mobile-hide">
  3841. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L172">View Source</a>
  3842. </span>
  3843. <a id="Unix_Terminal_Curses_addch_" data-uid="Unix.Terminal.Curses.addch*"></a>
  3844. <h4 id="Unix_Terminal_Curses_addch_System_Int32_" data-uid="Unix.Terminal.Curses.addch(System.Int32)">addch(Int32)</h4>
  3845. <div class="markdown level1 summary"></div>
  3846. <div class="markdown level1 conceptual"></div>
  3847. <h5 class="decalaration">Declaration</h5>
  3848. <div class="codewrapper">
  3849. <pre><code class="lang-csharp hljs">public static int addch(int ch)</code></pre>
  3850. </div>
  3851. <h5 class="parameters">Parameters</h5>
  3852. <table class="table table-bordered table-striped table-condensed">
  3853. <thead>
  3854. <tr>
  3855. <th>Type</th>
  3856. <th>Name</th>
  3857. <th>Description</th>
  3858. </tr>
  3859. </thead>
  3860. <tbody>
  3861. <tr>
  3862. <td><span class="xref">System.Int32</span></td>
  3863. <td><span class="parametername">ch</span></td>
  3864. <td></td>
  3865. </tr>
  3866. </tbody>
  3867. </table>
  3868. <h5 class="returns">Returns</h5>
  3869. <table class="table table-bordered table-striped table-condensed">
  3870. <thead>
  3871. <tr>
  3872. <th>Type</th>
  3873. <th>Description</th>
  3874. </tr>
  3875. </thead>
  3876. <tbody>
  3877. <tr>
  3878. <td><span class="xref">System.Int32</span></td>
  3879. <td></td>
  3880. </tr>
  3881. </tbody>
  3882. </table>
  3883. <span class="small pull-right mobile-hide">
  3884. <span class="divider">|</span>
  3885. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_addstr_System_String_System_Object___.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.addstr(System.String%2CSystem.Object%5B%5D)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3886. </span>
  3887. <span class="small pull-right mobile-hide">
  3888. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L158">View Source</a>
  3889. </span>
  3890. <a id="Unix_Terminal_Curses_addstr_" data-uid="Unix.Terminal.Curses.addstr*"></a>
  3891. <h4 id="Unix_Terminal_Curses_addstr_System_String_System_Object___" data-uid="Unix.Terminal.Curses.addstr(System.String,System.Object[])">addstr(String, Object[])</h4>
  3892. <div class="markdown level1 summary"></div>
  3893. <div class="markdown level1 conceptual"></div>
  3894. <h5 class="decalaration">Declaration</h5>
  3895. <div class="codewrapper">
  3896. <pre><code class="lang-csharp hljs">public static int addstr(string format, params object[] args)</code></pre>
  3897. </div>
  3898. <h5 class="parameters">Parameters</h5>
  3899. <table class="table table-bordered table-striped table-condensed">
  3900. <thead>
  3901. <tr>
  3902. <th>Type</th>
  3903. <th>Name</th>
  3904. <th>Description</th>
  3905. </tr>
  3906. </thead>
  3907. <tbody>
  3908. <tr>
  3909. <td><span class="xref">System.String</span></td>
  3910. <td><span class="parametername">format</span></td>
  3911. <td></td>
  3912. </tr>
  3913. <tr>
  3914. <td><span class="xref">System.Object</span>[]</td>
  3915. <td><span class="parametername">args</span></td>
  3916. <td></td>
  3917. </tr>
  3918. </tbody>
  3919. </table>
  3920. <h5 class="returns">Returns</h5>
  3921. <table class="table table-bordered table-striped table-condensed">
  3922. <thead>
  3923. <tr>
  3924. <th>Type</th>
  3925. <th>Description</th>
  3926. </tr>
  3927. </thead>
  3928. <tbody>
  3929. <tr>
  3930. <td><span class="xref">System.Int32</span></td>
  3931. <td></td>
  3932. </tr>
  3933. </tbody>
  3934. </table>
  3935. <span class="small pull-right mobile-hide">
  3936. <span class="divider">|</span>
  3937. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_addwstr_System_String_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.addwstr(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3938. </span>
  3939. <span class="small pull-right mobile-hide">
  3940. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L303">View Source</a>
  3941. </span>
  3942. <a id="Unix_Terminal_Curses_addwstr_" data-uid="Unix.Terminal.Curses.addwstr*"></a>
  3943. <h4 id="Unix_Terminal_Curses_addwstr_System_String_" data-uid="Unix.Terminal.Curses.addwstr(System.String)">addwstr(String)</h4>
  3944. <div class="markdown level1 summary"></div>
  3945. <div class="markdown level1 conceptual"></div>
  3946. <h5 class="decalaration">Declaration</h5>
  3947. <div class="codewrapper">
  3948. <pre><code class="lang-csharp hljs">public static int addwstr(string s)</code></pre>
  3949. </div>
  3950. <h5 class="parameters">Parameters</h5>
  3951. <table class="table table-bordered table-striped table-condensed">
  3952. <thead>
  3953. <tr>
  3954. <th>Type</th>
  3955. <th>Name</th>
  3956. <th>Description</th>
  3957. </tr>
  3958. </thead>
  3959. <tbody>
  3960. <tr>
  3961. <td><span class="xref">System.String</span></td>
  3962. <td><span class="parametername">s</span></td>
  3963. <td></td>
  3964. </tr>
  3965. </tbody>
  3966. </table>
  3967. <h5 class="returns">Returns</h5>
  3968. <table class="table table-bordered table-striped table-condensed">
  3969. <thead>
  3970. <tr>
  3971. <th>Type</th>
  3972. <th>Description</th>
  3973. </tr>
  3974. </thead>
  3975. <tbody>
  3976. <tr>
  3977. <td><span class="xref">System.Int32</span></td>
  3978. <td></td>
  3979. </tr>
  3980. </tbody>
  3981. </table>
  3982. <span class="small pull-right mobile-hide">
  3983. <span class="divider">|</span>
  3984. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_attroff_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.attroff(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  3985. </span>
  3986. <span class="small pull-right mobile-hide">
  3987. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L308">View Source</a>
  3988. </span>
  3989. <a id="Unix_Terminal_Curses_attroff_" data-uid="Unix.Terminal.Curses.attroff*"></a>
  3990. <h4 id="Unix_Terminal_Curses_attroff_System_Int32_" data-uid="Unix.Terminal.Curses.attroff(System.Int32)">attroff(Int32)</h4>
  3991. <div class="markdown level1 summary"></div>
  3992. <div class="markdown level1 conceptual"></div>
  3993. <h5 class="decalaration">Declaration</h5>
  3994. <div class="codewrapper">
  3995. <pre><code class="lang-csharp hljs">public static int attroff(int attrs)</code></pre>
  3996. </div>
  3997. <h5 class="parameters">Parameters</h5>
  3998. <table class="table table-bordered table-striped table-condensed">
  3999. <thead>
  4000. <tr>
  4001. <th>Type</th>
  4002. <th>Name</th>
  4003. <th>Description</th>
  4004. </tr>
  4005. </thead>
  4006. <tbody>
  4007. <tr>
  4008. <td><span class="xref">System.Int32</span></td>
  4009. <td><span class="parametername">attrs</span></td>
  4010. <td></td>
  4011. </tr>
  4012. </tbody>
  4013. </table>
  4014. <h5 class="returns">Returns</h5>
  4015. <table class="table table-bordered table-striped table-condensed">
  4016. <thead>
  4017. <tr>
  4018. <th>Type</th>
  4019. <th>Description</th>
  4020. </tr>
  4021. </thead>
  4022. <tbody>
  4023. <tr>
  4024. <td><span class="xref">System.Int32</span></td>
  4025. <td></td>
  4026. </tr>
  4027. </tbody>
  4028. </table>
  4029. <span class="small pull-right mobile-hide">
  4030. <span class="divider">|</span>
  4031. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_attron_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.attron(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4032. </span>
  4033. <span class="small pull-right mobile-hide">
  4034. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L307">View Source</a>
  4035. </span>
  4036. <a id="Unix_Terminal_Curses_attron_" data-uid="Unix.Terminal.Curses.attron*"></a>
  4037. <h4 id="Unix_Terminal_Curses_attron_System_Int32_" data-uid="Unix.Terminal.Curses.attron(System.Int32)">attron(Int32)</h4>
  4038. <div class="markdown level1 summary"></div>
  4039. <div class="markdown level1 conceptual"></div>
  4040. <h5 class="decalaration">Declaration</h5>
  4041. <div class="codewrapper">
  4042. <pre><code class="lang-csharp hljs">public static int attron(int attrs)</code></pre>
  4043. </div>
  4044. <h5 class="parameters">Parameters</h5>
  4045. <table class="table table-bordered table-striped table-condensed">
  4046. <thead>
  4047. <tr>
  4048. <th>Type</th>
  4049. <th>Name</th>
  4050. <th>Description</th>
  4051. </tr>
  4052. </thead>
  4053. <tbody>
  4054. <tr>
  4055. <td><span class="xref">System.Int32</span></td>
  4056. <td><span class="parametername">attrs</span></td>
  4057. <td></td>
  4058. </tr>
  4059. </tbody>
  4060. </table>
  4061. <h5 class="returns">Returns</h5>
  4062. <table class="table table-bordered table-striped table-condensed">
  4063. <thead>
  4064. <tr>
  4065. <th>Type</th>
  4066. <th>Description</th>
  4067. </tr>
  4068. </thead>
  4069. <tbody>
  4070. <tr>
  4071. <td><span class="xref">System.Int32</span></td>
  4072. <td></td>
  4073. </tr>
  4074. </tbody>
  4075. </table>
  4076. <span class="small pull-right mobile-hide">
  4077. <span class="divider">|</span>
  4078. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_attrset_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.attrset(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4079. </span>
  4080. <span class="small pull-right mobile-hide">
  4081. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L309">View Source</a>
  4082. </span>
  4083. <a id="Unix_Terminal_Curses_attrset_" data-uid="Unix.Terminal.Curses.attrset*"></a>
  4084. <h4 id="Unix_Terminal_Curses_attrset_System_Int32_" data-uid="Unix.Terminal.Curses.attrset(System.Int32)">attrset(Int32)</h4>
  4085. <div class="markdown level1 summary"></div>
  4086. <div class="markdown level1 conceptual"></div>
  4087. <h5 class="decalaration">Declaration</h5>
  4088. <div class="codewrapper">
  4089. <pre><code class="lang-csharp hljs">public static int attrset(int attrs)</code></pre>
  4090. </div>
  4091. <h5 class="parameters">Parameters</h5>
  4092. <table class="table table-bordered table-striped table-condensed">
  4093. <thead>
  4094. <tr>
  4095. <th>Type</th>
  4096. <th>Name</th>
  4097. <th>Description</th>
  4098. </tr>
  4099. </thead>
  4100. <tbody>
  4101. <tr>
  4102. <td><span class="xref">System.Int32</span></td>
  4103. <td><span class="parametername">attrs</span></td>
  4104. <td></td>
  4105. </tr>
  4106. </tbody>
  4107. </table>
  4108. <h5 class="returns">Returns</h5>
  4109. <table class="table table-bordered table-striped table-condensed">
  4110. <thead>
  4111. <tr>
  4112. <th>Type</th>
  4113. <th>Description</th>
  4114. </tr>
  4115. </thead>
  4116. <tbody>
  4117. <tr>
  4118. <td><span class="xref">System.Int32</span></td>
  4119. <td></td>
  4120. </tr>
  4121. </tbody>
  4122. </table>
  4123. <span class="small pull-right mobile-hide">
  4124. <span class="divider">|</span>
  4125. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_cbreak.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.cbreak%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4126. </span>
  4127. <span class="small pull-right mobile-hide">
  4128. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L268">View Source</a>
  4129. </span>
  4130. <a id="Unix_Terminal_Curses_cbreak_" data-uid="Unix.Terminal.Curses.cbreak*"></a>
  4131. <h4 id="Unix_Terminal_Curses_cbreak" data-uid="Unix.Terminal.Curses.cbreak">cbreak()</h4>
  4132. <div class="markdown level1 summary"></div>
  4133. <div class="markdown level1 conceptual"></div>
  4134. <h5 class="decalaration">Declaration</h5>
  4135. <div class="codewrapper">
  4136. <pre><code class="lang-csharp hljs">public static int cbreak()</code></pre>
  4137. </div>
  4138. <h5 class="returns">Returns</h5>
  4139. <table class="table table-bordered table-striped table-condensed">
  4140. <thead>
  4141. <tr>
  4142. <th>Type</th>
  4143. <th>Description</th>
  4144. </tr>
  4145. </thead>
  4146. <tbody>
  4147. <tr>
  4148. <td><span class="xref">System.Int32</span></td>
  4149. <td></td>
  4150. </tr>
  4151. </tbody>
  4152. </table>
  4153. <span class="small pull-right mobile-hide">
  4154. <span class="divider">|</span>
  4155. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_CheckWinChange.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.CheckWinChange%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4156. </span>
  4157. <span class="small pull-right mobile-hide">
  4158. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L139">View Source</a>
  4159. </span>
  4160. <a id="Unix_Terminal_Curses_CheckWinChange_" data-uid="Unix.Terminal.Curses.CheckWinChange*"></a>
  4161. <h4 id="Unix_Terminal_Curses_CheckWinChange" data-uid="Unix.Terminal.Curses.CheckWinChange">CheckWinChange()</h4>
  4162. <div class="markdown level1 summary"></div>
  4163. <div class="markdown level1 conceptual"></div>
  4164. <h5 class="decalaration">Declaration</h5>
  4165. <div class="codewrapper">
  4166. <pre><code class="lang-csharp hljs">public static bool CheckWinChange()</code></pre>
  4167. </div>
  4168. <h5 class="returns">Returns</h5>
  4169. <table class="table table-bordered table-striped table-condensed">
  4170. <thead>
  4171. <tr>
  4172. <th>Type</th>
  4173. <th>Description</th>
  4174. </tr>
  4175. </thead>
  4176. <tbody>
  4177. <tr>
  4178. <td><span class="xref">System.Boolean</span></td>
  4179. <td></td>
  4180. </tr>
  4181. </tbody>
  4182. </table>
  4183. <span class="small pull-right mobile-hide">
  4184. <span class="divider">|</span>
  4185. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_clearok_System_IntPtr_System_Boolean_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.clearok(System.IntPtr%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4186. </span>
  4187. <span class="small pull-right mobile-hide">
  4188. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L284">View Source</a>
  4189. </span>
  4190. <a id="Unix_Terminal_Curses_clearok_" data-uid="Unix.Terminal.Curses.clearok*"></a>
  4191. <h4 id="Unix_Terminal_Curses_clearok_System_IntPtr_System_Boolean_" data-uid="Unix.Terminal.Curses.clearok(System.IntPtr,System.Boolean)">clearok(IntPtr, Boolean)</h4>
  4192. <div class="markdown level1 summary"></div>
  4193. <div class="markdown level1 conceptual"></div>
  4194. <h5 class="decalaration">Declaration</h5>
  4195. <div class="codewrapper">
  4196. <pre><code class="lang-csharp hljs">public static int clearok(IntPtr win, bool bf)</code></pre>
  4197. </div>
  4198. <h5 class="parameters">Parameters</h5>
  4199. <table class="table table-bordered table-striped table-condensed">
  4200. <thead>
  4201. <tr>
  4202. <th>Type</th>
  4203. <th>Name</th>
  4204. <th>Description</th>
  4205. </tr>
  4206. </thead>
  4207. <tbody>
  4208. <tr>
  4209. <td><span class="xref">System.IntPtr</span></td>
  4210. <td><span class="parametername">win</span></td>
  4211. <td></td>
  4212. </tr>
  4213. <tr>
  4214. <td><span class="xref">System.Boolean</span></td>
  4215. <td><span class="parametername">bf</span></td>
  4216. <td></td>
  4217. </tr>
  4218. </tbody>
  4219. </table>
  4220. <h5 class="returns">Returns</h5>
  4221. <table class="table table-bordered table-striped table-condensed">
  4222. <thead>
  4223. <tr>
  4224. <th>Type</th>
  4225. <th>Description</th>
  4226. </tr>
  4227. </thead>
  4228. <tbody>
  4229. <tr>
  4230. <td><span class="xref">System.Int32</span></td>
  4231. <td></td>
  4232. </tr>
  4233. </tbody>
  4234. </table>
  4235. <span class="small pull-right mobile-hide">
  4236. <span class="divider">|</span>
  4237. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_COLOR_PAIRS.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.COLOR_PAIRS%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4238. </span>
  4239. <span class="small pull-right mobile-hide">
  4240. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L318">View Source</a>
  4241. </span>
  4242. <a id="Unix_Terminal_Curses_COLOR_PAIRS_" data-uid="Unix.Terminal.Curses.COLOR_PAIRS*"></a>
  4243. <h4 id="Unix_Terminal_Curses_COLOR_PAIRS" data-uid="Unix.Terminal.Curses.COLOR_PAIRS">COLOR_PAIRS()</h4>
  4244. <div class="markdown level1 summary"></div>
  4245. <div class="markdown level1 conceptual"></div>
  4246. <h5 class="decalaration">Declaration</h5>
  4247. <div class="codewrapper">
  4248. <pre><code class="lang-csharp hljs">public static int COLOR_PAIRS()</code></pre>
  4249. </div>
  4250. <h5 class="returns">Returns</h5>
  4251. <table class="table table-bordered table-striped table-condensed">
  4252. <thead>
  4253. <tr>
  4254. <th>Type</th>
  4255. <th>Description</th>
  4256. </tr>
  4257. </thead>
  4258. <tbody>
  4259. <tr>
  4260. <td><span class="xref">System.Int32</span></td>
  4261. <td></td>
  4262. </tr>
  4263. </tbody>
  4264. </table>
  4265. <span class="small pull-right mobile-hide">
  4266. <span class="divider">|</span>
  4267. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ColorPair_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ColorPair(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4268. </span>
  4269. <span class="small pull-right mobile-hide">
  4270. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/constants.cs/#L179">View Source</a>
  4271. </span>
  4272. <a id="Unix_Terminal_Curses_ColorPair_" data-uid="Unix.Terminal.Curses.ColorPair*"></a>
  4273. <h4 id="Unix_Terminal_Curses_ColorPair_System_Int32_" data-uid="Unix.Terminal.Curses.ColorPair(System.Int32)">ColorPair(Int32)</h4>
  4274. <div class="markdown level1 summary"></div>
  4275. <div class="markdown level1 conceptual"></div>
  4276. <h5 class="decalaration">Declaration</h5>
  4277. <div class="codewrapper">
  4278. <pre><code class="lang-csharp hljs">public static int ColorPair(int n)</code></pre>
  4279. </div>
  4280. <h5 class="parameters">Parameters</h5>
  4281. <table class="table table-bordered table-striped table-condensed">
  4282. <thead>
  4283. <tr>
  4284. <th>Type</th>
  4285. <th>Name</th>
  4286. <th>Description</th>
  4287. </tr>
  4288. </thead>
  4289. <tbody>
  4290. <tr>
  4291. <td><span class="xref">System.Int32</span></td>
  4292. <td><span class="parametername">n</span></td>
  4293. <td></td>
  4294. </tr>
  4295. </tbody>
  4296. </table>
  4297. <h5 class="returns">Returns</h5>
  4298. <table class="table table-bordered table-striped table-condensed">
  4299. <thead>
  4300. <tr>
  4301. <th>Type</th>
  4302. <th>Description</th>
  4303. </tr>
  4304. </thead>
  4305. <tbody>
  4306. <tr>
  4307. <td><span class="xref">System.Int32</span></td>
  4308. <td></td>
  4309. </tr>
  4310. </tbody>
  4311. </table>
  4312. <span class="small pull-right mobile-hide">
  4313. <span class="divider">|</span>
  4314. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_curs_set_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.curs_set(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4315. </span>
  4316. <span class="small pull-right mobile-hide">
  4317. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L301">View Source</a>
  4318. </span>
  4319. <a id="Unix_Terminal_Curses_curs_set_" data-uid="Unix.Terminal.Curses.curs_set*"></a>
  4320. <h4 id="Unix_Terminal_Curses_curs_set_System_Int32_" data-uid="Unix.Terminal.Curses.curs_set(System.Int32)">curs_set(Int32)</h4>
  4321. <div class="markdown level1 summary"></div>
  4322. <div class="markdown level1 conceptual"></div>
  4323. <h5 class="decalaration">Declaration</h5>
  4324. <div class="codewrapper">
  4325. <pre><code class="lang-csharp hljs">public static int curs_set(int visibility)</code></pre>
  4326. </div>
  4327. <h5 class="parameters">Parameters</h5>
  4328. <table class="table table-bordered table-striped table-condensed">
  4329. <thead>
  4330. <tr>
  4331. <th>Type</th>
  4332. <th>Name</th>
  4333. <th>Description</th>
  4334. </tr>
  4335. </thead>
  4336. <tbody>
  4337. <tr>
  4338. <td><span class="xref">System.Int32</span></td>
  4339. <td><span class="parametername">visibility</span></td>
  4340. <td></td>
  4341. </tr>
  4342. </tbody>
  4343. </table>
  4344. <h5 class="returns">Returns</h5>
  4345. <table class="table table-bordered table-striped table-condensed">
  4346. <thead>
  4347. <tr>
  4348. <th>Type</th>
  4349. <th>Description</th>
  4350. </tr>
  4351. </thead>
  4352. <tbody>
  4353. <tr>
  4354. <td><span class="xref">System.Int32</span></td>
  4355. <td></td>
  4356. </tr>
  4357. </tbody>
  4358. </table>
  4359. <span class="small pull-right mobile-hide">
  4360. <span class="divider">|</span>
  4361. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_def_prog_mode.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.def_prog_mode%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4362. </span>
  4363. <span class="small pull-right mobile-hide">
  4364. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L327">View Source</a>
  4365. </span>
  4366. <a id="Unix_Terminal_Curses_def_prog_mode_" data-uid="Unix.Terminal.Curses.def_prog_mode*"></a>
  4367. <h4 id="Unix_Terminal_Curses_def_prog_mode" data-uid="Unix.Terminal.Curses.def_prog_mode">def_prog_mode()</h4>
  4368. <div class="markdown level1 summary"></div>
  4369. <div class="markdown level1 conceptual"></div>
  4370. <h5 class="decalaration">Declaration</h5>
  4371. <div class="codewrapper">
  4372. <pre><code class="lang-csharp hljs">public static int def_prog_mode()</code></pre>
  4373. </div>
  4374. <h5 class="returns">Returns</h5>
  4375. <table class="table table-bordered table-striped table-condensed">
  4376. <thead>
  4377. <tr>
  4378. <th>Type</th>
  4379. <th>Description</th>
  4380. </tr>
  4381. </thead>
  4382. <tbody>
  4383. <tr>
  4384. <td><span class="xref">System.Int32</span></td>
  4385. <td></td>
  4386. </tr>
  4387. </tbody>
  4388. </table>
  4389. <span class="small pull-right mobile-hide">
  4390. <span class="divider">|</span>
  4391. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_def_shell_mode.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.def_shell_mode%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4392. </span>
  4393. <span class="small pull-right mobile-hide">
  4394. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L328">View Source</a>
  4395. </span>
  4396. <a id="Unix_Terminal_Curses_def_shell_mode_" data-uid="Unix.Terminal.Curses.def_shell_mode*"></a>
  4397. <h4 id="Unix_Terminal_Curses_def_shell_mode" data-uid="Unix.Terminal.Curses.def_shell_mode">def_shell_mode()</h4>
  4398. <div class="markdown level1 summary"></div>
  4399. <div class="markdown level1 conceptual"></div>
  4400. <h5 class="decalaration">Declaration</h5>
  4401. <div class="codewrapper">
  4402. <pre><code class="lang-csharp hljs">public static int def_shell_mode()</code></pre>
  4403. </div>
  4404. <h5 class="returns">Returns</h5>
  4405. <table class="table table-bordered table-striped table-condensed">
  4406. <thead>
  4407. <tr>
  4408. <th>Type</th>
  4409. <th>Description</th>
  4410. </tr>
  4411. </thead>
  4412. <tbody>
  4413. <tr>
  4414. <td><span class="xref">System.Int32</span></td>
  4415. <td></td>
  4416. </tr>
  4417. </tbody>
  4418. </table>
  4419. <span class="small pull-right mobile-hide">
  4420. <span class="divider">|</span>
  4421. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_doupdate.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.doupdate%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4422. </span>
  4423. <span class="small pull-right mobile-hide">
  4424. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L295">View Source</a>
  4425. </span>
  4426. <a id="Unix_Terminal_Curses_doupdate_" data-uid="Unix.Terminal.Curses.doupdate*"></a>
  4427. <h4 id="Unix_Terminal_Curses_doupdate" data-uid="Unix.Terminal.Curses.doupdate">doupdate()</h4>
  4428. <div class="markdown level1 summary"></div>
  4429. <div class="markdown level1 conceptual"></div>
  4430. <h5 class="decalaration">Declaration</h5>
  4431. <div class="codewrapper">
  4432. <pre><code class="lang-csharp hljs">public static int doupdate()</code></pre>
  4433. </div>
  4434. <h5 class="returns">Returns</h5>
  4435. <table class="table table-bordered table-striped table-condensed">
  4436. <thead>
  4437. <tr>
  4438. <th>Type</th>
  4439. <th>Description</th>
  4440. </tr>
  4441. </thead>
  4442. <tbody>
  4443. <tr>
  4444. <td><span class="xref">System.Int32</span></td>
  4445. <td></td>
  4446. </tr>
  4447. </tbody>
  4448. </table>
  4449. <span class="small pull-right mobile-hide">
  4450. <span class="divider">|</span>
  4451. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_echo.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.echo%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4452. </span>
  4453. <span class="small pull-right mobile-hide">
  4454. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L270">View Source</a>
  4455. </span>
  4456. <a id="Unix_Terminal_Curses_echo_" data-uid="Unix.Terminal.Curses.echo*"></a>
  4457. <h4 id="Unix_Terminal_Curses_echo" data-uid="Unix.Terminal.Curses.echo">echo()</h4>
  4458. <div class="markdown level1 summary"></div>
  4459. <div class="markdown level1 conceptual"></div>
  4460. <h5 class="decalaration">Declaration</h5>
  4461. <div class="codewrapper">
  4462. <pre><code class="lang-csharp hljs">public static int echo()</code></pre>
  4463. </div>
  4464. <h5 class="returns">Returns</h5>
  4465. <table class="table table-bordered table-striped table-condensed">
  4466. <thead>
  4467. <tr>
  4468. <th>Type</th>
  4469. <th>Description</th>
  4470. </tr>
  4471. </thead>
  4472. <tbody>
  4473. <tr>
  4474. <td><span class="xref">System.Int32</span></td>
  4475. <td></td>
  4476. </tr>
  4477. </tbody>
  4478. </table>
  4479. <span class="small pull-right mobile-hide">
  4480. <span class="divider">|</span>
  4481. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_endwin.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.endwin%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4482. </span>
  4483. <span class="small pull-right mobile-hide">
  4484. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L266">View Source</a>
  4485. </span>
  4486. <a id="Unix_Terminal_Curses_endwin_" data-uid="Unix.Terminal.Curses.endwin*"></a>
  4487. <h4 id="Unix_Terminal_Curses_endwin" data-uid="Unix.Terminal.Curses.endwin">endwin()</h4>
  4488. <div class="markdown level1 summary"></div>
  4489. <div class="markdown level1 conceptual"></div>
  4490. <h5 class="decalaration">Declaration</h5>
  4491. <div class="codewrapper">
  4492. <pre><code class="lang-csharp hljs">public static int endwin()</code></pre>
  4493. </div>
  4494. <h5 class="returns">Returns</h5>
  4495. <table class="table table-bordered table-striped table-condensed">
  4496. <thead>
  4497. <tr>
  4498. <th>Type</th>
  4499. <th>Description</th>
  4500. </tr>
  4501. </thead>
  4502. <tbody>
  4503. <tr>
  4504. <td><span class="xref">System.Int32</span></td>
  4505. <td></td>
  4506. </tr>
  4507. </tbody>
  4508. </table>
  4509. <span class="small pull-right mobile-hide">
  4510. <span class="divider">|</span>
  4511. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_flushinp.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.flushinp%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4512. </span>
  4513. <span class="small pull-right mobile-hide">
  4514. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L326">View Source</a>
  4515. </span>
  4516. <a id="Unix_Terminal_Curses_flushinp_" data-uid="Unix.Terminal.Curses.flushinp*"></a>
  4517. <h4 id="Unix_Terminal_Curses_flushinp" data-uid="Unix.Terminal.Curses.flushinp">flushinp()</h4>
  4518. <div class="markdown level1 summary"></div>
  4519. <div class="markdown level1 conceptual"></div>
  4520. <h5 class="decalaration">Declaration</h5>
  4521. <div class="codewrapper">
  4522. <pre><code class="lang-csharp hljs">public static int flushinp()</code></pre>
  4523. </div>
  4524. <h5 class="returns">Returns</h5>
  4525. <table class="table table-bordered table-striped table-condensed">
  4526. <thead>
  4527. <tr>
  4528. <th>Type</th>
  4529. <th>Description</th>
  4530. </tr>
  4531. </thead>
  4532. <tbody>
  4533. <tr>
  4534. <td><span class="xref">System.Int32</span></td>
  4535. <td></td>
  4536. </tr>
  4537. </tbody>
  4538. </table>
  4539. <span class="small pull-right mobile-hide">
  4540. <span class="divider">|</span>
  4541. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_get_wch_System_Int32__.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.get_wch(System.Int32%40)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4542. </span>
  4543. <span class="small pull-right mobile-hide">
  4544. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L311">View Source</a>
  4545. </span>
  4546. <a id="Unix_Terminal_Curses_get_wch_" data-uid="Unix.Terminal.Curses.get_wch*"></a>
  4547. <h4 id="Unix_Terminal_Curses_get_wch_System_Int32__" data-uid="Unix.Terminal.Curses.get_wch(System.Int32@)">get_wch(out Int32)</h4>
  4548. <div class="markdown level1 summary"></div>
  4549. <div class="markdown level1 conceptual"></div>
  4550. <h5 class="decalaration">Declaration</h5>
  4551. <div class="codewrapper">
  4552. <pre><code class="lang-csharp hljs">public static int get_wch(out int sequence)</code></pre>
  4553. </div>
  4554. <h5 class="parameters">Parameters</h5>
  4555. <table class="table table-bordered table-striped table-condensed">
  4556. <thead>
  4557. <tr>
  4558. <th>Type</th>
  4559. <th>Name</th>
  4560. <th>Description</th>
  4561. </tr>
  4562. </thead>
  4563. <tbody>
  4564. <tr>
  4565. <td><span class="xref">System.Int32</span></td>
  4566. <td><span class="parametername">sequence</span></td>
  4567. <td></td>
  4568. </tr>
  4569. </tbody>
  4570. </table>
  4571. <h5 class="returns">Returns</h5>
  4572. <table class="table table-bordered table-striped table-condensed">
  4573. <thead>
  4574. <tr>
  4575. <th>Type</th>
  4576. <th>Description</th>
  4577. </tr>
  4578. </thead>
  4579. <tbody>
  4580. <tr>
  4581. <td><span class="xref">System.Int32</span></td>
  4582. <td></td>
  4583. </tr>
  4584. </tbody>
  4585. </table>
  4586. <span class="small pull-right mobile-hide">
  4587. <span class="divider">|</span>
  4588. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_getch.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.getch%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4589. </span>
  4590. <span class="small pull-right mobile-hide">
  4591. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L310">View Source</a>
  4592. </span>
  4593. <a id="Unix_Terminal_Curses_getch_" data-uid="Unix.Terminal.Curses.getch*"></a>
  4594. <h4 id="Unix_Terminal_Curses_getch" data-uid="Unix.Terminal.Curses.getch">getch()</h4>
  4595. <div class="markdown level1 summary"></div>
  4596. <div class="markdown level1 conceptual"></div>
  4597. <h5 class="decalaration">Declaration</h5>
  4598. <div class="codewrapper">
  4599. <pre><code class="lang-csharp hljs">public static int getch()</code></pre>
  4600. </div>
  4601. <h5 class="returns">Returns</h5>
  4602. <table class="table table-bordered table-striped table-condensed">
  4603. <thead>
  4604. <tr>
  4605. <th>Type</th>
  4606. <th>Description</th>
  4607. </tr>
  4608. </thead>
  4609. <tbody>
  4610. <tr>
  4611. <td><span class="xref">System.Int32</span></td>
  4612. <td></td>
  4613. </tr>
  4614. </tbody>
  4615. </table>
  4616. <span class="small pull-right mobile-hide">
  4617. <span class="divider">|</span>
  4618. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_getmouse_Unix_Terminal_Curses_MouseEvent__.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.getmouse(Unix.Terminal.Curses.MouseEvent%40)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4619. </span>
  4620. <span class="small pull-right mobile-hide">
  4621. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L319">View Source</a>
  4622. </span>
  4623. <a id="Unix_Terminal_Curses_getmouse_" data-uid="Unix.Terminal.Curses.getmouse*"></a>
  4624. <h4 id="Unix_Terminal_Curses_getmouse_Unix_Terminal_Curses_MouseEvent__" data-uid="Unix.Terminal.Curses.getmouse(Unix.Terminal.Curses.MouseEvent@)">getmouse(out Curses.MouseEvent)</h4>
  4625. <div class="markdown level1 summary"></div>
  4626. <div class="markdown level1 conceptual"></div>
  4627. <h5 class="decalaration">Declaration</h5>
  4628. <div class="codewrapper">
  4629. <pre><code class="lang-csharp hljs">public static uint getmouse(out Curses.MouseEvent ev)</code></pre>
  4630. </div>
  4631. <h5 class="parameters">Parameters</h5>
  4632. <table class="table table-bordered table-striped table-condensed">
  4633. <thead>
  4634. <tr>
  4635. <th>Type</th>
  4636. <th>Name</th>
  4637. <th>Description</th>
  4638. </tr>
  4639. </thead>
  4640. <tbody>
  4641. <tr>
  4642. <td><a class="xref" href="Unix.Terminal.Curses.MouseEvent.html">Curses.MouseEvent</a></td>
  4643. <td><span class="parametername">ev</span></td>
  4644. <td></td>
  4645. </tr>
  4646. </tbody>
  4647. </table>
  4648. <h5 class="returns">Returns</h5>
  4649. <table class="table table-bordered table-striped table-condensed">
  4650. <thead>
  4651. <tr>
  4652. <th>Type</th>
  4653. <th>Description</th>
  4654. </tr>
  4655. </thead>
  4656. <tbody>
  4657. <tr>
  4658. <td><span class="xref">System.UInt32</span></td>
  4659. <td></td>
  4660. </tr>
  4661. </tbody>
  4662. </table>
  4663. <span class="small pull-right mobile-hide">
  4664. <span class="divider">|</span>
  4665. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_halfdelay_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.halfdelay(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4666. </span>
  4667. <span class="small pull-right mobile-hide">
  4668. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L272">View Source</a>
  4669. </span>
  4670. <a id="Unix_Terminal_Curses_halfdelay_" data-uid="Unix.Terminal.Curses.halfdelay*"></a>
  4671. <h4 id="Unix_Terminal_Curses_halfdelay_System_Int32_" data-uid="Unix.Terminal.Curses.halfdelay(System.Int32)">halfdelay(Int32)</h4>
  4672. <div class="markdown level1 summary"></div>
  4673. <div class="markdown level1 conceptual"></div>
  4674. <h5 class="decalaration">Declaration</h5>
  4675. <div class="codewrapper">
  4676. <pre><code class="lang-csharp hljs">public static int halfdelay(int t)</code></pre>
  4677. </div>
  4678. <h5 class="parameters">Parameters</h5>
  4679. <table class="table table-bordered table-striped table-condensed">
  4680. <thead>
  4681. <tr>
  4682. <th>Type</th>
  4683. <th>Name</th>
  4684. <th>Description</th>
  4685. </tr>
  4686. </thead>
  4687. <tbody>
  4688. <tr>
  4689. <td><span class="xref">System.Int32</span></td>
  4690. <td><span class="parametername">t</span></td>
  4691. <td></td>
  4692. </tr>
  4693. </tbody>
  4694. </table>
  4695. <h5 class="returns">Returns</h5>
  4696. <table class="table table-bordered table-striped table-condensed">
  4697. <thead>
  4698. <tr>
  4699. <th>Type</th>
  4700. <th>Description</th>
  4701. </tr>
  4702. </thead>
  4703. <tbody>
  4704. <tr>
  4705. <td><span class="xref">System.Int32</span></td>
  4706. <td></td>
  4707. </tr>
  4708. </tbody>
  4709. </table>
  4710. <span class="small pull-right mobile-hide">
  4711. <span class="divider">|</span>
  4712. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_has_colors.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.has_colors%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4713. </span>
  4714. <span class="small pull-right mobile-hide">
  4715. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L314">View Source</a>
  4716. </span>
  4717. <a id="Unix_Terminal_Curses_has_colors_" data-uid="Unix.Terminal.Curses.has_colors*"></a>
  4718. <h4 id="Unix_Terminal_Curses_has_colors" data-uid="Unix.Terminal.Curses.has_colors">has_colors()</h4>
  4719. <div class="markdown level1 summary"></div>
  4720. <div class="markdown level1 conceptual"></div>
  4721. <h5 class="decalaration">Declaration</h5>
  4722. <div class="codewrapper">
  4723. <pre><code class="lang-csharp hljs">public static bool has_colors()</code></pre>
  4724. </div>
  4725. <h5 class="returns">Returns</h5>
  4726. <table class="table table-bordered table-striped table-condensed">
  4727. <thead>
  4728. <tr>
  4729. <th>Type</th>
  4730. <th>Description</th>
  4731. </tr>
  4732. </thead>
  4733. <tbody>
  4734. <tr>
  4735. <td><span class="xref">System.Boolean</span></td>
  4736. <td></td>
  4737. </tr>
  4738. </tbody>
  4739. </table>
  4740. <span class="small pull-right mobile-hide">
  4741. <span class="divider">|</span>
  4742. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_idcok_System_IntPtr_System_Boolean_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.idcok(System.IntPtr%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4743. </span>
  4744. <span class="small pull-right mobile-hide">
  4745. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L286">View Source</a>
  4746. </span>
  4747. <a id="Unix_Terminal_Curses_idcok_" data-uid="Unix.Terminal.Curses.idcok*"></a>
  4748. <h4 id="Unix_Terminal_Curses_idcok_System_IntPtr_System_Boolean_" data-uid="Unix.Terminal.Curses.idcok(System.IntPtr,System.Boolean)">idcok(IntPtr, Boolean)</h4>
  4749. <div class="markdown level1 summary"></div>
  4750. <div class="markdown level1 conceptual"></div>
  4751. <h5 class="decalaration">Declaration</h5>
  4752. <div class="codewrapper">
  4753. <pre><code class="lang-csharp hljs">public static void idcok(IntPtr win, bool bf)</code></pre>
  4754. </div>
  4755. <h5 class="parameters">Parameters</h5>
  4756. <table class="table table-bordered table-striped table-condensed">
  4757. <thead>
  4758. <tr>
  4759. <th>Type</th>
  4760. <th>Name</th>
  4761. <th>Description</th>
  4762. </tr>
  4763. </thead>
  4764. <tbody>
  4765. <tr>
  4766. <td><span class="xref">System.IntPtr</span></td>
  4767. <td><span class="parametername">win</span></td>
  4768. <td></td>
  4769. </tr>
  4770. <tr>
  4771. <td><span class="xref">System.Boolean</span></td>
  4772. <td><span class="parametername">bf</span></td>
  4773. <td></td>
  4774. </tr>
  4775. </tbody>
  4776. </table>
  4777. <span class="small pull-right mobile-hide">
  4778. <span class="divider">|</span>
  4779. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_idlok_System_IntPtr_System_Boolean_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.idlok(System.IntPtr%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4780. </span>
  4781. <span class="small pull-right mobile-hide">
  4782. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L285">View Source</a>
  4783. </span>
  4784. <a id="Unix_Terminal_Curses_idlok_" data-uid="Unix.Terminal.Curses.idlok*"></a>
  4785. <h4 id="Unix_Terminal_Curses_idlok_System_IntPtr_System_Boolean_" data-uid="Unix.Terminal.Curses.idlok(System.IntPtr,System.Boolean)">idlok(IntPtr, Boolean)</h4>
  4786. <div class="markdown level1 summary"></div>
  4787. <div class="markdown level1 conceptual"></div>
  4788. <h5 class="decalaration">Declaration</h5>
  4789. <div class="codewrapper">
  4790. <pre><code class="lang-csharp hljs">public static int idlok(IntPtr win, bool bf)</code></pre>
  4791. </div>
  4792. <h5 class="parameters">Parameters</h5>
  4793. <table class="table table-bordered table-striped table-condensed">
  4794. <thead>
  4795. <tr>
  4796. <th>Type</th>
  4797. <th>Name</th>
  4798. <th>Description</th>
  4799. </tr>
  4800. </thead>
  4801. <tbody>
  4802. <tr>
  4803. <td><span class="xref">System.IntPtr</span></td>
  4804. <td><span class="parametername">win</span></td>
  4805. <td></td>
  4806. </tr>
  4807. <tr>
  4808. <td><span class="xref">System.Boolean</span></td>
  4809. <td><span class="parametername">bf</span></td>
  4810. <td></td>
  4811. </tr>
  4812. </tbody>
  4813. </table>
  4814. <h5 class="returns">Returns</h5>
  4815. <table class="table table-bordered table-striped table-condensed">
  4816. <thead>
  4817. <tr>
  4818. <th>Type</th>
  4819. <th>Description</th>
  4820. </tr>
  4821. </thead>
  4822. <tbody>
  4823. <tr>
  4824. <td><span class="xref">System.Int32</span></td>
  4825. <td></td>
  4826. </tr>
  4827. </tbody>
  4828. </table>
  4829. <span class="small pull-right mobile-hide">
  4830. <span class="divider">|</span>
  4831. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_immedok_System_IntPtr_System_Boolean_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.immedok(System.IntPtr%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4832. </span>
  4833. <span class="small pull-right mobile-hide">
  4834. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L287">View Source</a>
  4835. </span>
  4836. <a id="Unix_Terminal_Curses_immedok_" data-uid="Unix.Terminal.Curses.immedok*"></a>
  4837. <h4 id="Unix_Terminal_Curses_immedok_System_IntPtr_System_Boolean_" data-uid="Unix.Terminal.Curses.immedok(System.IntPtr,System.Boolean)">immedok(IntPtr, Boolean)</h4>
  4838. <div class="markdown level1 summary"></div>
  4839. <div class="markdown level1 conceptual"></div>
  4840. <h5 class="decalaration">Declaration</h5>
  4841. <div class="codewrapper">
  4842. <pre><code class="lang-csharp hljs">public static void immedok(IntPtr win, bool bf)</code></pre>
  4843. </div>
  4844. <h5 class="parameters">Parameters</h5>
  4845. <table class="table table-bordered table-striped table-condensed">
  4846. <thead>
  4847. <tr>
  4848. <th>Type</th>
  4849. <th>Name</th>
  4850. <th>Description</th>
  4851. </tr>
  4852. </thead>
  4853. <tbody>
  4854. <tr>
  4855. <td><span class="xref">System.IntPtr</span></td>
  4856. <td><span class="parametername">win</span></td>
  4857. <td></td>
  4858. </tr>
  4859. <tr>
  4860. <td><span class="xref">System.Boolean</span></td>
  4861. <td><span class="parametername">bf</span></td>
  4862. <td></td>
  4863. </tr>
  4864. </tbody>
  4865. </table>
  4866. <span class="small pull-right mobile-hide">
  4867. <span class="divider">|</span>
  4868. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_init_pair_System_Int16_System_Int16_System_Int16_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.init_pair(System.Int16%2CSystem.Int16%2CSystem.Int16)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4869. </span>
  4870. <span class="small pull-right mobile-hide">
  4871. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L316">View Source</a>
  4872. </span>
  4873. <a id="Unix_Terminal_Curses_init_pair_" data-uid="Unix.Terminal.Curses.init_pair*"></a>
  4874. <h4 id="Unix_Terminal_Curses_init_pair_System_Int16_System_Int16_System_Int16_" data-uid="Unix.Terminal.Curses.init_pair(System.Int16,System.Int16,System.Int16)">init_pair(Int16, Int16, Int16)</h4>
  4875. <div class="markdown level1 summary"></div>
  4876. <div class="markdown level1 conceptual"></div>
  4877. <h5 class="decalaration">Declaration</h5>
  4878. <div class="codewrapper">
  4879. <pre><code class="lang-csharp hljs">public static int init_pair(short pair, short f, short b)</code></pre>
  4880. </div>
  4881. <h5 class="parameters">Parameters</h5>
  4882. <table class="table table-bordered table-striped table-condensed">
  4883. <thead>
  4884. <tr>
  4885. <th>Type</th>
  4886. <th>Name</th>
  4887. <th>Description</th>
  4888. </tr>
  4889. </thead>
  4890. <tbody>
  4891. <tr>
  4892. <td><span class="xref">System.Int16</span></td>
  4893. <td><span class="parametername">pair</span></td>
  4894. <td></td>
  4895. </tr>
  4896. <tr>
  4897. <td><span class="xref">System.Int16</span></td>
  4898. <td><span class="parametername">f</span></td>
  4899. <td></td>
  4900. </tr>
  4901. <tr>
  4902. <td><span class="xref">System.Int16</span></td>
  4903. <td><span class="parametername">b</span></td>
  4904. <td></td>
  4905. </tr>
  4906. </tbody>
  4907. </table>
  4908. <h5 class="returns">Returns</h5>
  4909. <table class="table table-bordered table-striped table-condensed">
  4910. <thead>
  4911. <tr>
  4912. <th>Type</th>
  4913. <th>Description</th>
  4914. </tr>
  4915. </thead>
  4916. <tbody>
  4917. <tr>
  4918. <td><span class="xref">System.Int32</span></td>
  4919. <td></td>
  4920. </tr>
  4921. </tbody>
  4922. </table>
  4923. <span class="small pull-right mobile-hide">
  4924. <span class="divider">|</span>
  4925. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_InitColorPair_System_Int16_System_Int16_System_Int16_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.InitColorPair(System.Int16%2CSystem.Int16%2CSystem.Int16)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4926. </span>
  4927. <span class="small pull-right mobile-hide">
  4928. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L259">View Source</a>
  4929. </span>
  4930. <a id="Unix_Terminal_Curses_InitColorPair_" data-uid="Unix.Terminal.Curses.InitColorPair*"></a>
  4931. <h4 id="Unix_Terminal_Curses_InitColorPair_System_Int16_System_Int16_System_Int16_" data-uid="Unix.Terminal.Curses.InitColorPair(System.Int16,System.Int16,System.Int16)">InitColorPair(Int16, Int16, Int16)</h4>
  4932. <div class="markdown level1 summary"></div>
  4933. <div class="markdown level1 conceptual"></div>
  4934. <h5 class="decalaration">Declaration</h5>
  4935. <div class="codewrapper">
  4936. <pre><code class="lang-csharp hljs">public static int InitColorPair(short pair, short foreground, short background)</code></pre>
  4937. </div>
  4938. <h5 class="parameters">Parameters</h5>
  4939. <table class="table table-bordered table-striped table-condensed">
  4940. <thead>
  4941. <tr>
  4942. <th>Type</th>
  4943. <th>Name</th>
  4944. <th>Description</th>
  4945. </tr>
  4946. </thead>
  4947. <tbody>
  4948. <tr>
  4949. <td><span class="xref">System.Int16</span></td>
  4950. <td><span class="parametername">pair</span></td>
  4951. <td></td>
  4952. </tr>
  4953. <tr>
  4954. <td><span class="xref">System.Int16</span></td>
  4955. <td><span class="parametername">foreground</span></td>
  4956. <td></td>
  4957. </tr>
  4958. <tr>
  4959. <td><span class="xref">System.Int16</span></td>
  4960. <td><span class="parametername">background</span></td>
  4961. <td></td>
  4962. </tr>
  4963. </tbody>
  4964. </table>
  4965. <h5 class="returns">Returns</h5>
  4966. <table class="table table-bordered table-striped table-condensed">
  4967. <thead>
  4968. <tr>
  4969. <th>Type</th>
  4970. <th>Description</th>
  4971. </tr>
  4972. </thead>
  4973. <tbody>
  4974. <tr>
  4975. <td><span class="xref">System.Int32</span></td>
  4976. <td></td>
  4977. </tr>
  4978. </tbody>
  4979. </table>
  4980. <span class="small pull-right mobile-hide">
  4981. <span class="divider">|</span>
  4982. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_initscr.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.initscr%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  4983. </span>
  4984. <span class="small pull-right mobile-hide">
  4985. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L101">View Source</a>
  4986. </span>
  4987. <a id="Unix_Terminal_Curses_initscr_" data-uid="Unix.Terminal.Curses.initscr*"></a>
  4988. <h4 id="Unix_Terminal_Curses_initscr" data-uid="Unix.Terminal.Curses.initscr">initscr()</h4>
  4989. <div class="markdown level1 summary"></div>
  4990. <div class="markdown level1 conceptual"></div>
  4991. <h5 class="decalaration">Declaration</h5>
  4992. <div class="codewrapper">
  4993. <pre><code class="lang-csharp hljs">public static Curses.Window initscr()</code></pre>
  4994. </div>
  4995. <h5 class="returns">Returns</h5>
  4996. <table class="table table-bordered table-striped table-condensed">
  4997. <thead>
  4998. <tr>
  4999. <th>Type</th>
  5000. <th>Description</th>
  5001. </tr>
  5002. </thead>
  5003. <tbody>
  5004. <tr>
  5005. <td><a class="xref" href="Unix.Terminal.Curses.Window.html">Curses.Window</a></td>
  5006. <td></td>
  5007. </tr>
  5008. </tbody>
  5009. </table>
  5010. <span class="small pull-right mobile-hide">
  5011. <span class="divider">|</span>
  5012. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_intrflush_System_IntPtr_System_Boolean_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.intrflush(System.IntPtr%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5013. </span>
  5014. <span class="small pull-right mobile-hide">
  5015. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L283">View Source</a>
  5016. </span>
  5017. <a id="Unix_Terminal_Curses_intrflush_" data-uid="Unix.Terminal.Curses.intrflush*"></a>
  5018. <h4 id="Unix_Terminal_Curses_intrflush_System_IntPtr_System_Boolean_" data-uid="Unix.Terminal.Curses.intrflush(System.IntPtr,System.Boolean)">intrflush(IntPtr, Boolean)</h4>
  5019. <div class="markdown level1 summary"></div>
  5020. <div class="markdown level1 conceptual"></div>
  5021. <h5 class="decalaration">Declaration</h5>
  5022. <div class="codewrapper">
  5023. <pre><code class="lang-csharp hljs">public static int intrflush(IntPtr win, bool bf)</code></pre>
  5024. </div>
  5025. <h5 class="parameters">Parameters</h5>
  5026. <table class="table table-bordered table-striped table-condensed">
  5027. <thead>
  5028. <tr>
  5029. <th>Type</th>
  5030. <th>Name</th>
  5031. <th>Description</th>
  5032. </tr>
  5033. </thead>
  5034. <tbody>
  5035. <tr>
  5036. <td><span class="xref">System.IntPtr</span></td>
  5037. <td><span class="parametername">win</span></td>
  5038. <td></td>
  5039. </tr>
  5040. <tr>
  5041. <td><span class="xref">System.Boolean</span></td>
  5042. <td><span class="parametername">bf</span></td>
  5043. <td></td>
  5044. </tr>
  5045. </tbody>
  5046. </table>
  5047. <h5 class="returns">Returns</h5>
  5048. <table class="table table-bordered table-striped table-condensed">
  5049. <thead>
  5050. <tr>
  5051. <th>Type</th>
  5052. <th>Description</th>
  5053. </tr>
  5054. </thead>
  5055. <tbody>
  5056. <tr>
  5057. <td><span class="xref">System.Int32</span></td>
  5058. <td></td>
  5059. </tr>
  5060. </tbody>
  5061. </table>
  5062. <span class="small pull-right mobile-hide">
  5063. <span class="divider">|</span>
  5064. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_is_term_resized_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.is_term_resized(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5065. </span>
  5066. <span class="small pull-right mobile-hide">
  5067. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L322">View Source</a>
  5068. </span>
  5069. <a id="Unix_Terminal_Curses_is_term_resized_" data-uid="Unix.Terminal.Curses.is_term_resized*"></a>
  5070. <h4 id="Unix_Terminal_Curses_is_term_resized_System_Int32_System_Int32_" data-uid="Unix.Terminal.Curses.is_term_resized(System.Int32,System.Int32)">is_term_resized(Int32, Int32)</h4>
  5071. <div class="markdown level1 summary"></div>
  5072. <div class="markdown level1 conceptual"></div>
  5073. <h5 class="decalaration">Declaration</h5>
  5074. <div class="codewrapper">
  5075. <pre><code class="lang-csharp hljs">public static bool is_term_resized(int lines, int columns)</code></pre>
  5076. </div>
  5077. <h5 class="parameters">Parameters</h5>
  5078. <table class="table table-bordered table-striped table-condensed">
  5079. <thead>
  5080. <tr>
  5081. <th>Type</th>
  5082. <th>Name</th>
  5083. <th>Description</th>
  5084. </tr>
  5085. </thead>
  5086. <tbody>
  5087. <tr>
  5088. <td><span class="xref">System.Int32</span></td>
  5089. <td><span class="parametername">lines</span></td>
  5090. <td></td>
  5091. </tr>
  5092. <tr>
  5093. <td><span class="xref">System.Int32</span></td>
  5094. <td><span class="parametername">columns</span></td>
  5095. <td></td>
  5096. </tr>
  5097. </tbody>
  5098. </table>
  5099. <h5 class="returns">Returns</h5>
  5100. <table class="table table-bordered table-striped table-condensed">
  5101. <thead>
  5102. <tr>
  5103. <th>Type</th>
  5104. <th>Description</th>
  5105. </tr>
  5106. </thead>
  5107. <tbody>
  5108. <tr>
  5109. <td><span class="xref">System.Boolean</span></td>
  5110. <td></td>
  5111. </tr>
  5112. </tbody>
  5113. </table>
  5114. <span class="small pull-right mobile-hide">
  5115. <span class="divider">|</span>
  5116. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_IsAlt_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.IsAlt(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5117. </span>
  5118. <span class="small pull-right mobile-hide">
  5119. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L250">View Source</a>
  5120. </span>
  5121. <a id="Unix_Terminal_Curses_IsAlt_" data-uid="Unix.Terminal.Curses.IsAlt*"></a>
  5122. <h4 id="Unix_Terminal_Curses_IsAlt_System_Int32_" data-uid="Unix.Terminal.Curses.IsAlt(System.Int32)">IsAlt(Int32)</h4>
  5123. <div class="markdown level1 summary"></div>
  5124. <div class="markdown level1 conceptual"></div>
  5125. <h5 class="decalaration">Declaration</h5>
  5126. <div class="codewrapper">
  5127. <pre><code class="lang-csharp hljs">public static int IsAlt(int key)</code></pre>
  5128. </div>
  5129. <h5 class="parameters">Parameters</h5>
  5130. <table class="table table-bordered table-striped table-condensed">
  5131. <thead>
  5132. <tr>
  5133. <th>Type</th>
  5134. <th>Name</th>
  5135. <th>Description</th>
  5136. </tr>
  5137. </thead>
  5138. <tbody>
  5139. <tr>
  5140. <td><span class="xref">System.Int32</span></td>
  5141. <td><span class="parametername">key</span></td>
  5142. <td></td>
  5143. </tr>
  5144. </tbody>
  5145. </table>
  5146. <h5 class="returns">Returns</h5>
  5147. <table class="table table-bordered table-striped table-condensed">
  5148. <thead>
  5149. <tr>
  5150. <th>Type</th>
  5151. <th>Description</th>
  5152. </tr>
  5153. </thead>
  5154. <tbody>
  5155. <tr>
  5156. <td><span class="xref">System.Int32</span></td>
  5157. <td></td>
  5158. </tr>
  5159. </tbody>
  5160. </table>
  5161. <span class="small pull-right mobile-hide">
  5162. <span class="divider">|</span>
  5163. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_isendwin.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.isendwin%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5164. </span>
  5165. <span class="small pull-right mobile-hide">
  5166. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L267">View Source</a>
  5167. </span>
  5168. <a id="Unix_Terminal_Curses_isendwin_" data-uid="Unix.Terminal.Curses.isendwin*"></a>
  5169. <h4 id="Unix_Terminal_Curses_isendwin" data-uid="Unix.Terminal.Curses.isendwin">isendwin()</h4>
  5170. <div class="markdown level1 summary"></div>
  5171. <div class="markdown level1 conceptual"></div>
  5172. <h5 class="decalaration">Declaration</h5>
  5173. <div class="codewrapper">
  5174. <pre><code class="lang-csharp hljs">public static bool isendwin()</code></pre>
  5175. </div>
  5176. <h5 class="returns">Returns</h5>
  5177. <table class="table table-bordered table-striped table-condensed">
  5178. <thead>
  5179. <tr>
  5180. <th>Type</th>
  5181. <th>Description</th>
  5182. </tr>
  5183. </thead>
  5184. <tbody>
  5185. <tr>
  5186. <td><span class="xref">System.Boolean</span></td>
  5187. <td></td>
  5188. </tr>
  5189. </tbody>
  5190. </table>
  5191. <span class="small pull-right mobile-hide">
  5192. <span class="divider">|</span>
  5193. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_keypad_System_IntPtr_System_Boolean_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.keypad(System.IntPtr%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5194. </span>
  5195. <span class="small pull-right mobile-hide">
  5196. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L281">View Source</a>
  5197. </span>
  5198. <a id="Unix_Terminal_Curses_keypad_" data-uid="Unix.Terminal.Curses.keypad*"></a>
  5199. <h4 id="Unix_Terminal_Curses_keypad_System_IntPtr_System_Boolean_" data-uid="Unix.Terminal.Curses.keypad(System.IntPtr,System.Boolean)">keypad(IntPtr, Boolean)</h4>
  5200. <div class="markdown level1 summary"></div>
  5201. <div class="markdown level1 conceptual"></div>
  5202. <h5 class="decalaration">Declaration</h5>
  5203. <div class="codewrapper">
  5204. <pre><code class="lang-csharp hljs">public static int keypad(IntPtr win, bool bf)</code></pre>
  5205. </div>
  5206. <h5 class="parameters">Parameters</h5>
  5207. <table class="table table-bordered table-striped table-condensed">
  5208. <thead>
  5209. <tr>
  5210. <th>Type</th>
  5211. <th>Name</th>
  5212. <th>Description</th>
  5213. </tr>
  5214. </thead>
  5215. <tbody>
  5216. <tr>
  5217. <td><span class="xref">System.IntPtr</span></td>
  5218. <td><span class="parametername">win</span></td>
  5219. <td></td>
  5220. </tr>
  5221. <tr>
  5222. <td><span class="xref">System.Boolean</span></td>
  5223. <td><span class="parametername">bf</span></td>
  5224. <td></td>
  5225. </tr>
  5226. </tbody>
  5227. </table>
  5228. <h5 class="returns">Returns</h5>
  5229. <table class="table table-bordered table-striped table-condensed">
  5230. <thead>
  5231. <tr>
  5232. <th>Type</th>
  5233. <th>Description</th>
  5234. </tr>
  5235. </thead>
  5236. <tbody>
  5237. <tr>
  5238. <td><span class="xref">System.Int32</span></td>
  5239. <td></td>
  5240. </tr>
  5241. </tbody>
  5242. </table>
  5243. <span class="small pull-right mobile-hide">
  5244. <span class="divider">|</span>
  5245. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_leaveok_System_IntPtr_System_Boolean_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.leaveok(System.IntPtr%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5246. </span>
  5247. <span class="small pull-right mobile-hide">
  5248. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L288">View Source</a>
  5249. </span>
  5250. <a id="Unix_Terminal_Curses_leaveok_" data-uid="Unix.Terminal.Curses.leaveok*"></a>
  5251. <h4 id="Unix_Terminal_Curses_leaveok_System_IntPtr_System_Boolean_" data-uid="Unix.Terminal.Curses.leaveok(System.IntPtr,System.Boolean)">leaveok(IntPtr, Boolean)</h4>
  5252. <div class="markdown level1 summary"></div>
  5253. <div class="markdown level1 conceptual"></div>
  5254. <h5 class="decalaration">Declaration</h5>
  5255. <div class="codewrapper">
  5256. <pre><code class="lang-csharp hljs">public static int leaveok(IntPtr win, bool bf)</code></pre>
  5257. </div>
  5258. <h5 class="parameters">Parameters</h5>
  5259. <table class="table table-bordered table-striped table-condensed">
  5260. <thead>
  5261. <tr>
  5262. <th>Type</th>
  5263. <th>Name</th>
  5264. <th>Description</th>
  5265. </tr>
  5266. </thead>
  5267. <tbody>
  5268. <tr>
  5269. <td><span class="xref">System.IntPtr</span></td>
  5270. <td><span class="parametername">win</span></td>
  5271. <td></td>
  5272. </tr>
  5273. <tr>
  5274. <td><span class="xref">System.Boolean</span></td>
  5275. <td><span class="parametername">bf</span></td>
  5276. <td></td>
  5277. </tr>
  5278. </tbody>
  5279. </table>
  5280. <h5 class="returns">Returns</h5>
  5281. <table class="table table-bordered table-striped table-condensed">
  5282. <thead>
  5283. <tr>
  5284. <th>Type</th>
  5285. <th>Description</th>
  5286. </tr>
  5287. </thead>
  5288. <tbody>
  5289. <tr>
  5290. <td><span class="xref">System.Int32</span></td>
  5291. <td></td>
  5292. </tr>
  5293. </tbody>
  5294. </table>
  5295. <span class="small pull-right mobile-hide">
  5296. <span class="divider">|</span>
  5297. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_meta_System_IntPtr_System_Boolean_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.meta(System.IntPtr%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5298. </span>
  5299. <span class="small pull-right mobile-hide">
  5300. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L282">View Source</a>
  5301. </span>
  5302. <a id="Unix_Terminal_Curses_meta_" data-uid="Unix.Terminal.Curses.meta*"></a>
  5303. <h4 id="Unix_Terminal_Curses_meta_System_IntPtr_System_Boolean_" data-uid="Unix.Terminal.Curses.meta(System.IntPtr,System.Boolean)">meta(IntPtr, Boolean)</h4>
  5304. <div class="markdown level1 summary"></div>
  5305. <div class="markdown level1 conceptual"></div>
  5306. <h5 class="decalaration">Declaration</h5>
  5307. <div class="codewrapper">
  5308. <pre><code class="lang-csharp hljs">public static int meta(IntPtr win, bool bf)</code></pre>
  5309. </div>
  5310. <h5 class="parameters">Parameters</h5>
  5311. <table class="table table-bordered table-striped table-condensed">
  5312. <thead>
  5313. <tr>
  5314. <th>Type</th>
  5315. <th>Name</th>
  5316. <th>Description</th>
  5317. </tr>
  5318. </thead>
  5319. <tbody>
  5320. <tr>
  5321. <td><span class="xref">System.IntPtr</span></td>
  5322. <td><span class="parametername">win</span></td>
  5323. <td></td>
  5324. </tr>
  5325. <tr>
  5326. <td><span class="xref">System.Boolean</span></td>
  5327. <td><span class="parametername">bf</span></td>
  5328. <td></td>
  5329. </tr>
  5330. </tbody>
  5331. </table>
  5332. <h5 class="returns">Returns</h5>
  5333. <table class="table table-bordered table-striped table-condensed">
  5334. <thead>
  5335. <tr>
  5336. <th>Type</th>
  5337. <th>Description</th>
  5338. </tr>
  5339. </thead>
  5340. <tbody>
  5341. <tr>
  5342. <td><span class="xref">System.Int32</span></td>
  5343. <td></td>
  5344. </tr>
  5345. </tbody>
  5346. </table>
  5347. <span class="small pull-right mobile-hide">
  5348. <span class="divider">|</span>
  5349. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_mouseinterval_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.mouseinterval(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5350. </span>
  5351. <span class="small pull-right mobile-hide">
  5352. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L321">View Source</a>
  5353. </span>
  5354. <a id="Unix_Terminal_Curses_mouseinterval_" data-uid="Unix.Terminal.Curses.mouseinterval*"></a>
  5355. <h4 id="Unix_Terminal_Curses_mouseinterval_System_Int32_" data-uid="Unix.Terminal.Curses.mouseinterval(System.Int32)">mouseinterval(Int32)</h4>
  5356. <div class="markdown level1 summary"></div>
  5357. <div class="markdown level1 conceptual"></div>
  5358. <h5 class="decalaration">Declaration</h5>
  5359. <div class="codewrapper">
  5360. <pre><code class="lang-csharp hljs">public static int mouseinterval(int interval)</code></pre>
  5361. </div>
  5362. <h5 class="parameters">Parameters</h5>
  5363. <table class="table table-bordered table-striped table-condensed">
  5364. <thead>
  5365. <tr>
  5366. <th>Type</th>
  5367. <th>Name</th>
  5368. <th>Description</th>
  5369. </tr>
  5370. </thead>
  5371. <tbody>
  5372. <tr>
  5373. <td><span class="xref">System.Int32</span></td>
  5374. <td><span class="parametername">interval</span></td>
  5375. <td></td>
  5376. </tr>
  5377. </tbody>
  5378. </table>
  5379. <h5 class="returns">Returns</h5>
  5380. <table class="table table-bordered table-striped table-condensed">
  5381. <thead>
  5382. <tr>
  5383. <th>Type</th>
  5384. <th>Description</th>
  5385. </tr>
  5386. </thead>
  5387. <tbody>
  5388. <tr>
  5389. <td><span class="xref">System.Int32</span></td>
  5390. <td></td>
  5391. </tr>
  5392. </tbody>
  5393. </table>
  5394. <span class="small pull-right mobile-hide">
  5395. <span class="divider">|</span>
  5396. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_mousemask_Unix_Terminal_Curses_Event_Unix_Terminal_Curses_Event__.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.mousemask(Unix.Terminal.Curses.Event%2CUnix.Terminal.Curses.Event%40)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5397. </span>
  5398. <span class="small pull-right mobile-hide">
  5399. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L239">View Source</a>
  5400. </span>
  5401. <a id="Unix_Terminal_Curses_mousemask_" data-uid="Unix.Terminal.Curses.mousemask*"></a>
  5402. <h4 id="Unix_Terminal_Curses_mousemask_Unix_Terminal_Curses_Event_Unix_Terminal_Curses_Event__" data-uid="Unix.Terminal.Curses.mousemask(Unix.Terminal.Curses.Event,Unix.Terminal.Curses.Event@)">mousemask(Curses.Event, out Curses.Event)</h4>
  5403. <div class="markdown level1 summary"></div>
  5404. <div class="markdown level1 conceptual"></div>
  5405. <h5 class="decalaration">Declaration</h5>
  5406. <div class="codewrapper">
  5407. <pre><code class="lang-csharp hljs">public static Curses.Event mousemask(Curses.Event newmask, out Curses.Event oldmask)</code></pre>
  5408. </div>
  5409. <h5 class="parameters">Parameters</h5>
  5410. <table class="table table-bordered table-striped table-condensed">
  5411. <thead>
  5412. <tr>
  5413. <th>Type</th>
  5414. <th>Name</th>
  5415. <th>Description</th>
  5416. </tr>
  5417. </thead>
  5418. <tbody>
  5419. <tr>
  5420. <td><a class="xref" href="Unix.Terminal.Curses.Event.html">Curses.Event</a></td>
  5421. <td><span class="parametername">newmask</span></td>
  5422. <td></td>
  5423. </tr>
  5424. <tr>
  5425. <td><a class="xref" href="Unix.Terminal.Curses.Event.html">Curses.Event</a></td>
  5426. <td><span class="parametername">oldmask</span></td>
  5427. <td></td>
  5428. </tr>
  5429. </tbody>
  5430. </table>
  5431. <h5 class="returns">Returns</h5>
  5432. <table class="table table-bordered table-striped table-condensed">
  5433. <thead>
  5434. <tr>
  5435. <th>Type</th>
  5436. <th>Description</th>
  5437. </tr>
  5438. </thead>
  5439. <tbody>
  5440. <tr>
  5441. <td><a class="xref" href="Unix.Terminal.Curses.Event.html">Curses.Event</a></td>
  5442. <td></td>
  5443. </tr>
  5444. </tbody>
  5445. </table>
  5446. <span class="small pull-right mobile-hide">
  5447. <span class="divider">|</span>
  5448. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_move_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.move(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5449. </span>
  5450. <span class="small pull-right mobile-hide">
  5451. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L300">View Source</a>
  5452. </span>
  5453. <a id="Unix_Terminal_Curses_move_" data-uid="Unix.Terminal.Curses.move*"></a>
  5454. <h4 id="Unix_Terminal_Curses_move_System_Int32_System_Int32_" data-uid="Unix.Terminal.Curses.move(System.Int32,System.Int32)">move(Int32, Int32)</h4>
  5455. <div class="markdown level1 summary"></div>
  5456. <div class="markdown level1 conceptual"></div>
  5457. <h5 class="decalaration">Declaration</h5>
  5458. <div class="codewrapper">
  5459. <pre><code class="lang-csharp hljs">public static int move(int line, int col)</code></pre>
  5460. </div>
  5461. <h5 class="parameters">Parameters</h5>
  5462. <table class="table table-bordered table-striped table-condensed">
  5463. <thead>
  5464. <tr>
  5465. <th>Type</th>
  5466. <th>Name</th>
  5467. <th>Description</th>
  5468. </tr>
  5469. </thead>
  5470. <tbody>
  5471. <tr>
  5472. <td><span class="xref">System.Int32</span></td>
  5473. <td><span class="parametername">line</span></td>
  5474. <td></td>
  5475. </tr>
  5476. <tr>
  5477. <td><span class="xref">System.Int32</span></td>
  5478. <td><span class="parametername">col</span></td>
  5479. <td></td>
  5480. </tr>
  5481. </tbody>
  5482. </table>
  5483. <h5 class="returns">Returns</h5>
  5484. <table class="table table-bordered table-striped table-condensed">
  5485. <thead>
  5486. <tr>
  5487. <th>Type</th>
  5488. <th>Description</th>
  5489. </tr>
  5490. </thead>
  5491. <tbody>
  5492. <tr>
  5493. <td><span class="xref">System.Int32</span></td>
  5494. <td></td>
  5495. </tr>
  5496. </tbody>
  5497. </table>
  5498. <span class="small pull-right mobile-hide">
  5499. <span class="divider">|</span>
  5500. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_mvaddch_System_Int32_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.mvaddch(System.Int32%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5501. </span>
  5502. <span class="small pull-right mobile-hide">
  5503. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L180">View Source</a>
  5504. </span>
  5505. <a id="Unix_Terminal_Curses_mvaddch_" data-uid="Unix.Terminal.Curses.mvaddch*"></a>
  5506. <h4 id="Unix_Terminal_Curses_mvaddch_System_Int32_System_Int32_System_Int32_" data-uid="Unix.Terminal.Curses.mvaddch(System.Int32,System.Int32,System.Int32)">mvaddch(Int32, Int32, Int32)</h4>
  5507. <div class="markdown level1 summary"></div>
  5508. <div class="markdown level1 conceptual"></div>
  5509. <h5 class="decalaration">Declaration</h5>
  5510. <div class="codewrapper">
  5511. <pre><code class="lang-csharp hljs">public static int mvaddch(int y, int x, int ch)</code></pre>
  5512. </div>
  5513. <h5 class="parameters">Parameters</h5>
  5514. <table class="table table-bordered table-striped table-condensed">
  5515. <thead>
  5516. <tr>
  5517. <th>Type</th>
  5518. <th>Name</th>
  5519. <th>Description</th>
  5520. </tr>
  5521. </thead>
  5522. <tbody>
  5523. <tr>
  5524. <td><span class="xref">System.Int32</span></td>
  5525. <td><span class="parametername">y</span></td>
  5526. <td></td>
  5527. </tr>
  5528. <tr>
  5529. <td><span class="xref">System.Int32</span></td>
  5530. <td><span class="parametername">x</span></td>
  5531. <td></td>
  5532. </tr>
  5533. <tr>
  5534. <td><span class="xref">System.Int32</span></td>
  5535. <td><span class="parametername">ch</span></td>
  5536. <td></td>
  5537. </tr>
  5538. </tbody>
  5539. </table>
  5540. <h5 class="returns">Returns</h5>
  5541. <table class="table table-bordered table-striped table-condensed">
  5542. <thead>
  5543. <tr>
  5544. <th>Type</th>
  5545. <th>Description</th>
  5546. </tr>
  5547. </thead>
  5548. <tbody>
  5549. <tr>
  5550. <td><span class="xref">System.Int32</span></td>
  5551. <td></td>
  5552. </tr>
  5553. </tbody>
  5554. </table>
  5555. <span class="small pull-right mobile-hide">
  5556. <span class="divider">|</span>
  5557. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_mvaddwstr_System_Int32_System_Int32_System_String_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.mvaddwstr(System.Int32%2CSystem.Int32%2CSystem.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5558. </span>
  5559. <span class="small pull-right mobile-hide">
  5560. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L304">View Source</a>
  5561. </span>
  5562. <a id="Unix_Terminal_Curses_mvaddwstr_" data-uid="Unix.Terminal.Curses.mvaddwstr*"></a>
  5563. <h4 id="Unix_Terminal_Curses_mvaddwstr_System_Int32_System_Int32_System_String_" data-uid="Unix.Terminal.Curses.mvaddwstr(System.Int32,System.Int32,System.String)">mvaddwstr(Int32, Int32, String)</h4>
  5564. <div class="markdown level1 summary"></div>
  5565. <div class="markdown level1 conceptual"></div>
  5566. <h5 class="decalaration">Declaration</h5>
  5567. <div class="codewrapper">
  5568. <pre><code class="lang-csharp hljs">public static int mvaddwstr(int y, int x, string s)</code></pre>
  5569. </div>
  5570. <h5 class="parameters">Parameters</h5>
  5571. <table class="table table-bordered table-striped table-condensed">
  5572. <thead>
  5573. <tr>
  5574. <th>Type</th>
  5575. <th>Name</th>
  5576. <th>Description</th>
  5577. </tr>
  5578. </thead>
  5579. <tbody>
  5580. <tr>
  5581. <td><span class="xref">System.Int32</span></td>
  5582. <td><span class="parametername">y</span></td>
  5583. <td></td>
  5584. </tr>
  5585. <tr>
  5586. <td><span class="xref">System.Int32</span></td>
  5587. <td><span class="parametername">x</span></td>
  5588. <td></td>
  5589. </tr>
  5590. <tr>
  5591. <td><span class="xref">System.String</span></td>
  5592. <td><span class="parametername">s</span></td>
  5593. <td></td>
  5594. </tr>
  5595. </tbody>
  5596. </table>
  5597. <h5 class="returns">Returns</h5>
  5598. <table class="table table-bordered table-striped table-condensed">
  5599. <thead>
  5600. <tr>
  5601. <th>Type</th>
  5602. <th>Description</th>
  5603. </tr>
  5604. </thead>
  5605. <tbody>
  5606. <tr>
  5607. <td><span class="xref">System.Int32</span></td>
  5608. <td></td>
  5609. </tr>
  5610. </tbody>
  5611. </table>
  5612. <span class="small pull-right mobile-hide">
  5613. <span class="divider">|</span>
  5614. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_mvgetch_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.mvgetch(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5615. </span>
  5616. <span class="small pull-right mobile-hide">
  5617. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L313">View Source</a>
  5618. </span>
  5619. <a id="Unix_Terminal_Curses_mvgetch_" data-uid="Unix.Terminal.Curses.mvgetch*"></a>
  5620. <h4 id="Unix_Terminal_Curses_mvgetch_System_Int32_System_Int32_" data-uid="Unix.Terminal.Curses.mvgetch(System.Int32,System.Int32)">mvgetch(Int32, Int32)</h4>
  5621. <div class="markdown level1 summary"></div>
  5622. <div class="markdown level1 conceptual"></div>
  5623. <h5 class="decalaration">Declaration</h5>
  5624. <div class="codewrapper">
  5625. <pre><code class="lang-csharp hljs">public static int mvgetch(int y, int x)</code></pre>
  5626. </div>
  5627. <h5 class="parameters">Parameters</h5>
  5628. <table class="table table-bordered table-striped table-condensed">
  5629. <thead>
  5630. <tr>
  5631. <th>Type</th>
  5632. <th>Name</th>
  5633. <th>Description</th>
  5634. </tr>
  5635. </thead>
  5636. <tbody>
  5637. <tr>
  5638. <td><span class="xref">System.Int32</span></td>
  5639. <td><span class="parametername">y</span></td>
  5640. <td></td>
  5641. </tr>
  5642. <tr>
  5643. <td><span class="xref">System.Int32</span></td>
  5644. <td><span class="parametername">x</span></td>
  5645. <td></td>
  5646. </tr>
  5647. </tbody>
  5648. </table>
  5649. <h5 class="returns">Returns</h5>
  5650. <table class="table table-bordered table-striped table-condensed">
  5651. <thead>
  5652. <tr>
  5653. <th>Type</th>
  5654. <th>Description</th>
  5655. </tr>
  5656. </thead>
  5657. <tbody>
  5658. <tr>
  5659. <td><span class="xref">System.Int32</span></td>
  5660. <td></td>
  5661. </tr>
  5662. </tbody>
  5663. </table>
  5664. <span class="small pull-right mobile-hide">
  5665. <span class="divider">|</span>
  5666. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_nl.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.nl%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5667. </span>
  5668. <span class="small pull-right mobile-hide">
  5669. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L291">View Source</a>
  5670. </span>
  5671. <a id="Unix_Terminal_Curses_nl_" data-uid="Unix.Terminal.Curses.nl*"></a>
  5672. <h4 id="Unix_Terminal_Curses_nl" data-uid="Unix.Terminal.Curses.nl">nl()</h4>
  5673. <div class="markdown level1 summary"></div>
  5674. <div class="markdown level1 conceptual"></div>
  5675. <h5 class="decalaration">Declaration</h5>
  5676. <div class="codewrapper">
  5677. <pre><code class="lang-csharp hljs">public static int nl()</code></pre>
  5678. </div>
  5679. <h5 class="returns">Returns</h5>
  5680. <table class="table table-bordered table-striped table-condensed">
  5681. <thead>
  5682. <tr>
  5683. <th>Type</th>
  5684. <th>Description</th>
  5685. </tr>
  5686. </thead>
  5687. <tbody>
  5688. <tr>
  5689. <td><span class="xref">System.Int32</span></td>
  5690. <td></td>
  5691. </tr>
  5692. </tbody>
  5693. </table>
  5694. <span class="small pull-right mobile-hide">
  5695. <span class="divider">|</span>
  5696. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_nocbreak.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.nocbreak%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5697. </span>
  5698. <span class="small pull-right mobile-hide">
  5699. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L269">View Source</a>
  5700. </span>
  5701. <a id="Unix_Terminal_Curses_nocbreak_" data-uid="Unix.Terminal.Curses.nocbreak*"></a>
  5702. <h4 id="Unix_Terminal_Curses_nocbreak" data-uid="Unix.Terminal.Curses.nocbreak">nocbreak()</h4>
  5703. <div class="markdown level1 summary"></div>
  5704. <div class="markdown level1 conceptual"></div>
  5705. <h5 class="decalaration">Declaration</h5>
  5706. <div class="codewrapper">
  5707. <pre><code class="lang-csharp hljs">public static int nocbreak()</code></pre>
  5708. </div>
  5709. <h5 class="returns">Returns</h5>
  5710. <table class="table table-bordered table-striped table-condensed">
  5711. <thead>
  5712. <tr>
  5713. <th>Type</th>
  5714. <th>Description</th>
  5715. </tr>
  5716. </thead>
  5717. <tbody>
  5718. <tr>
  5719. <td><span class="xref">System.Int32</span></td>
  5720. <td></td>
  5721. </tr>
  5722. </tbody>
  5723. </table>
  5724. <span class="small pull-right mobile-hide">
  5725. <span class="divider">|</span>
  5726. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_noecho.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.noecho%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5727. </span>
  5728. <span class="small pull-right mobile-hide">
  5729. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L271">View Source</a>
  5730. </span>
  5731. <a id="Unix_Terminal_Curses_noecho_" data-uid="Unix.Terminal.Curses.noecho*"></a>
  5732. <h4 id="Unix_Terminal_Curses_noecho" data-uid="Unix.Terminal.Curses.noecho">noecho()</h4>
  5733. <div class="markdown level1 summary"></div>
  5734. <div class="markdown level1 conceptual"></div>
  5735. <h5 class="decalaration">Declaration</h5>
  5736. <div class="codewrapper">
  5737. <pre><code class="lang-csharp hljs">public static int noecho()</code></pre>
  5738. </div>
  5739. <h5 class="returns">Returns</h5>
  5740. <table class="table table-bordered table-striped table-condensed">
  5741. <thead>
  5742. <tr>
  5743. <th>Type</th>
  5744. <th>Description</th>
  5745. </tr>
  5746. </thead>
  5747. <tbody>
  5748. <tr>
  5749. <td><span class="xref">System.Int32</span></td>
  5750. <td></td>
  5751. </tr>
  5752. </tbody>
  5753. </table>
  5754. <span class="small pull-right mobile-hide">
  5755. <span class="divider">|</span>
  5756. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_nonl.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.nonl%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5757. </span>
  5758. <span class="small pull-right mobile-hide">
  5759. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L292">View Source</a>
  5760. </span>
  5761. <a id="Unix_Terminal_Curses_nonl_" data-uid="Unix.Terminal.Curses.nonl*"></a>
  5762. <h4 id="Unix_Terminal_Curses_nonl" data-uid="Unix.Terminal.Curses.nonl">nonl()</h4>
  5763. <div class="markdown level1 summary"></div>
  5764. <div class="markdown level1 conceptual"></div>
  5765. <h5 class="decalaration">Declaration</h5>
  5766. <div class="codewrapper">
  5767. <pre><code class="lang-csharp hljs">public static int nonl()</code></pre>
  5768. </div>
  5769. <h5 class="returns">Returns</h5>
  5770. <table class="table table-bordered table-striped table-condensed">
  5771. <thead>
  5772. <tr>
  5773. <th>Type</th>
  5774. <th>Description</th>
  5775. </tr>
  5776. </thead>
  5777. <tbody>
  5778. <tr>
  5779. <td><span class="xref">System.Int32</span></td>
  5780. <td></td>
  5781. </tr>
  5782. </tbody>
  5783. </table>
  5784. <span class="small pull-right mobile-hide">
  5785. <span class="divider">|</span>
  5786. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_noqiflush.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.noqiflush%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5787. </span>
  5788. <span class="small pull-right mobile-hide">
  5789. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L275">View Source</a>
  5790. </span>
  5791. <a id="Unix_Terminal_Curses_noqiflush_" data-uid="Unix.Terminal.Curses.noqiflush*"></a>
  5792. <h4 id="Unix_Terminal_Curses_noqiflush" data-uid="Unix.Terminal.Curses.noqiflush">noqiflush()</h4>
  5793. <div class="markdown level1 summary"></div>
  5794. <div class="markdown level1 conceptual"></div>
  5795. <h5 class="decalaration">Declaration</h5>
  5796. <div class="codewrapper">
  5797. <pre><code class="lang-csharp hljs">public static void noqiflush()</code></pre>
  5798. </div>
  5799. <span class="small pull-right mobile-hide">
  5800. <span class="divider">|</span>
  5801. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_noraw.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.noraw%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5802. </span>
  5803. <span class="small pull-right mobile-hide">
  5804. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L274">View Source</a>
  5805. </span>
  5806. <a id="Unix_Terminal_Curses_noraw_" data-uid="Unix.Terminal.Curses.noraw*"></a>
  5807. <h4 id="Unix_Terminal_Curses_noraw" data-uid="Unix.Terminal.Curses.noraw">noraw()</h4>
  5808. <div class="markdown level1 summary"></div>
  5809. <div class="markdown level1 conceptual"></div>
  5810. <h5 class="decalaration">Declaration</h5>
  5811. <div class="codewrapper">
  5812. <pre><code class="lang-csharp hljs">public static int noraw()</code></pre>
  5813. </div>
  5814. <h5 class="returns">Returns</h5>
  5815. <table class="table table-bordered table-striped table-condensed">
  5816. <thead>
  5817. <tr>
  5818. <th>Type</th>
  5819. <th>Description</th>
  5820. </tr>
  5821. </thead>
  5822. <tbody>
  5823. <tr>
  5824. <td><span class="xref">System.Int32</span></td>
  5825. <td></td>
  5826. </tr>
  5827. </tbody>
  5828. </table>
  5829. <span class="small pull-right mobile-hide">
  5830. <span class="divider">|</span>
  5831. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_notimeout_System_IntPtr_System_Boolean_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.notimeout(System.IntPtr%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5832. </span>
  5833. <span class="small pull-right mobile-hide">
  5834. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L280">View Source</a>
  5835. </span>
  5836. <a id="Unix_Terminal_Curses_notimeout_" data-uid="Unix.Terminal.Curses.notimeout*"></a>
  5837. <h4 id="Unix_Terminal_Curses_notimeout_System_IntPtr_System_Boolean_" data-uid="Unix.Terminal.Curses.notimeout(System.IntPtr,System.Boolean)">notimeout(IntPtr, Boolean)</h4>
  5838. <div class="markdown level1 summary"></div>
  5839. <div class="markdown level1 conceptual"></div>
  5840. <h5 class="decalaration">Declaration</h5>
  5841. <div class="codewrapper">
  5842. <pre><code class="lang-csharp hljs">public static int notimeout(IntPtr win, bool bf)</code></pre>
  5843. </div>
  5844. <h5 class="parameters">Parameters</h5>
  5845. <table class="table table-bordered table-striped table-condensed">
  5846. <thead>
  5847. <tr>
  5848. <th>Type</th>
  5849. <th>Name</th>
  5850. <th>Description</th>
  5851. </tr>
  5852. </thead>
  5853. <tbody>
  5854. <tr>
  5855. <td><span class="xref">System.IntPtr</span></td>
  5856. <td><span class="parametername">win</span></td>
  5857. <td></td>
  5858. </tr>
  5859. <tr>
  5860. <td><span class="xref">System.Boolean</span></td>
  5861. <td><span class="parametername">bf</span></td>
  5862. <td></td>
  5863. </tr>
  5864. </tbody>
  5865. </table>
  5866. <h5 class="returns">Returns</h5>
  5867. <table class="table table-bordered table-striped table-condensed">
  5868. <thead>
  5869. <tr>
  5870. <th>Type</th>
  5871. <th>Description</th>
  5872. </tr>
  5873. </thead>
  5874. <tbody>
  5875. <tr>
  5876. <td><span class="xref">System.Int32</span></td>
  5877. <td></td>
  5878. </tr>
  5879. </tbody>
  5880. </table>
  5881. <span class="small pull-right mobile-hide">
  5882. <span class="divider">|</span>
  5883. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_qiflush.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.qiflush%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5884. </span>
  5885. <span class="small pull-right mobile-hide">
  5886. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L276">View Source</a>
  5887. </span>
  5888. <a id="Unix_Terminal_Curses_qiflush_" data-uid="Unix.Terminal.Curses.qiflush*"></a>
  5889. <h4 id="Unix_Terminal_Curses_qiflush" data-uid="Unix.Terminal.Curses.qiflush">qiflush()</h4>
  5890. <div class="markdown level1 summary"></div>
  5891. <div class="markdown level1 conceptual"></div>
  5892. <h5 class="decalaration">Declaration</h5>
  5893. <div class="codewrapper">
  5894. <pre><code class="lang-csharp hljs">public static void qiflush()</code></pre>
  5895. </div>
  5896. <span class="small pull-right mobile-hide">
  5897. <span class="divider">|</span>
  5898. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_raw.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.raw%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5899. </span>
  5900. <span class="small pull-right mobile-hide">
  5901. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L273">View Source</a>
  5902. </span>
  5903. <a id="Unix_Terminal_Curses_raw_" data-uid="Unix.Terminal.Curses.raw*"></a>
  5904. <h4 id="Unix_Terminal_Curses_raw" data-uid="Unix.Terminal.Curses.raw">raw()</h4>
  5905. <div class="markdown level1 summary"></div>
  5906. <div class="markdown level1 conceptual"></div>
  5907. <h5 class="decalaration">Declaration</h5>
  5908. <div class="codewrapper">
  5909. <pre><code class="lang-csharp hljs">public static int raw()</code></pre>
  5910. </div>
  5911. <h5 class="returns">Returns</h5>
  5912. <table class="table table-bordered table-striped table-condensed">
  5913. <thead>
  5914. <tr>
  5915. <th>Type</th>
  5916. <th>Description</th>
  5917. </tr>
  5918. </thead>
  5919. <tbody>
  5920. <tr>
  5921. <td><span class="xref">System.Int32</span></td>
  5922. <td></td>
  5923. </tr>
  5924. </tbody>
  5925. </table>
  5926. <span class="small pull-right mobile-hide">
  5927. <span class="divider">|</span>
  5928. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_redrawwin_System_IntPtr_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.redrawwin(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5929. </span>
  5930. <span class="small pull-right mobile-hide">
  5931. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L297">View Source</a>
  5932. </span>
  5933. <a id="Unix_Terminal_Curses_redrawwin_" data-uid="Unix.Terminal.Curses.redrawwin*"></a>
  5934. <h4 id="Unix_Terminal_Curses_redrawwin_System_IntPtr_" data-uid="Unix.Terminal.Curses.redrawwin(System.IntPtr)">redrawwin(IntPtr)</h4>
  5935. <div class="markdown level1 summary"></div>
  5936. <div class="markdown level1 conceptual"></div>
  5937. <h5 class="decalaration">Declaration</h5>
  5938. <div class="codewrapper">
  5939. <pre><code class="lang-csharp hljs">public static int redrawwin(IntPtr win)</code></pre>
  5940. </div>
  5941. <h5 class="parameters">Parameters</h5>
  5942. <table class="table table-bordered table-striped table-condensed">
  5943. <thead>
  5944. <tr>
  5945. <th>Type</th>
  5946. <th>Name</th>
  5947. <th>Description</th>
  5948. </tr>
  5949. </thead>
  5950. <tbody>
  5951. <tr>
  5952. <td><span class="xref">System.IntPtr</span></td>
  5953. <td><span class="parametername">win</span></td>
  5954. <td></td>
  5955. </tr>
  5956. </tbody>
  5957. </table>
  5958. <h5 class="returns">Returns</h5>
  5959. <table class="table table-bordered table-striped table-condensed">
  5960. <thead>
  5961. <tr>
  5962. <th>Type</th>
  5963. <th>Description</th>
  5964. </tr>
  5965. </thead>
  5966. <tbody>
  5967. <tr>
  5968. <td><span class="xref">System.Int32</span></td>
  5969. <td></td>
  5970. </tr>
  5971. </tbody>
  5972. </table>
  5973. <span class="small pull-right mobile-hide">
  5974. <span class="divider">|</span>
  5975. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_refresh.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.refresh%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  5976. </span>
  5977. <span class="small pull-right mobile-hide">
  5978. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L294">View Source</a>
  5979. </span>
  5980. <a id="Unix_Terminal_Curses_refresh_" data-uid="Unix.Terminal.Curses.refresh*"></a>
  5981. <h4 id="Unix_Terminal_Curses_refresh" data-uid="Unix.Terminal.Curses.refresh">refresh()</h4>
  5982. <div class="markdown level1 summary"></div>
  5983. <div class="markdown level1 conceptual"></div>
  5984. <h5 class="decalaration">Declaration</h5>
  5985. <div class="codewrapper">
  5986. <pre><code class="lang-csharp hljs">public static int refresh()</code></pre>
  5987. </div>
  5988. <h5 class="returns">Returns</h5>
  5989. <table class="table table-bordered table-striped table-condensed">
  5990. <thead>
  5991. <tr>
  5992. <th>Type</th>
  5993. <th>Description</th>
  5994. </tr>
  5995. </thead>
  5996. <tbody>
  5997. <tr>
  5998. <td><span class="xref">System.Int32</span></td>
  5999. <td></td>
  6000. </tr>
  6001. </tbody>
  6002. </table>
  6003. <span class="small pull-right mobile-hide">
  6004. <span class="divider">|</span>
  6005. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_reset_prog_mode.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.reset_prog_mode%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6006. </span>
  6007. <span class="small pull-right mobile-hide">
  6008. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L329">View Source</a>
  6009. </span>
  6010. <a id="Unix_Terminal_Curses_reset_prog_mode_" data-uid="Unix.Terminal.Curses.reset_prog_mode*"></a>
  6011. <h4 id="Unix_Terminal_Curses_reset_prog_mode" data-uid="Unix.Terminal.Curses.reset_prog_mode">reset_prog_mode()</h4>
  6012. <div class="markdown level1 summary"></div>
  6013. <div class="markdown level1 conceptual"></div>
  6014. <h5 class="decalaration">Declaration</h5>
  6015. <div class="codewrapper">
  6016. <pre><code class="lang-csharp hljs">public static int reset_prog_mode()</code></pre>
  6017. </div>
  6018. <h5 class="returns">Returns</h5>
  6019. <table class="table table-bordered table-striped table-condensed">
  6020. <thead>
  6021. <tr>
  6022. <th>Type</th>
  6023. <th>Description</th>
  6024. </tr>
  6025. </thead>
  6026. <tbody>
  6027. <tr>
  6028. <td><span class="xref">System.Int32</span></td>
  6029. <td></td>
  6030. </tr>
  6031. </tbody>
  6032. </table>
  6033. <span class="small pull-right mobile-hide">
  6034. <span class="divider">|</span>
  6035. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_reset_shell_mode.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.reset_shell_mode%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6036. </span>
  6037. <span class="small pull-right mobile-hide">
  6038. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L330">View Source</a>
  6039. </span>
  6040. <a id="Unix_Terminal_Curses_reset_shell_mode_" data-uid="Unix.Terminal.Curses.reset_shell_mode*"></a>
  6041. <h4 id="Unix_Terminal_Curses_reset_shell_mode" data-uid="Unix.Terminal.Curses.reset_shell_mode">reset_shell_mode()</h4>
  6042. <div class="markdown level1 summary"></div>
  6043. <div class="markdown level1 conceptual"></div>
  6044. <h5 class="decalaration">Declaration</h5>
  6045. <div class="codewrapper">
  6046. <pre><code class="lang-csharp hljs">public static int reset_shell_mode()</code></pre>
  6047. </div>
  6048. <h5 class="returns">Returns</h5>
  6049. <table class="table table-bordered table-striped table-condensed">
  6050. <thead>
  6051. <tr>
  6052. <th>Type</th>
  6053. <th>Description</th>
  6054. </tr>
  6055. </thead>
  6056. <tbody>
  6057. <tr>
  6058. <td><span class="xref">System.Int32</span></td>
  6059. <td></td>
  6060. </tr>
  6061. </tbody>
  6062. </table>
  6063. <span class="small pull-right mobile-hide">
  6064. <span class="divider">|</span>
  6065. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_resetty.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.resetty%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6066. </span>
  6067. <span class="small pull-right mobile-hide">
  6068. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L332">View Source</a>
  6069. </span>
  6070. <a id="Unix_Terminal_Curses_resetty_" data-uid="Unix.Terminal.Curses.resetty*"></a>
  6071. <h4 id="Unix_Terminal_Curses_resetty" data-uid="Unix.Terminal.Curses.resetty">resetty()</h4>
  6072. <div class="markdown level1 summary"></div>
  6073. <div class="markdown level1 conceptual"></div>
  6074. <h5 class="decalaration">Declaration</h5>
  6075. <div class="codewrapper">
  6076. <pre><code class="lang-csharp hljs">public static int resetty()</code></pre>
  6077. </div>
  6078. <h5 class="returns">Returns</h5>
  6079. <table class="table table-bordered table-striped table-condensed">
  6080. <thead>
  6081. <tr>
  6082. <th>Type</th>
  6083. <th>Description</th>
  6084. </tr>
  6085. </thead>
  6086. <tbody>
  6087. <tr>
  6088. <td><span class="xref">System.Int32</span></td>
  6089. <td></td>
  6090. </tr>
  6091. </tbody>
  6092. </table>
  6093. <span class="small pull-right mobile-hide">
  6094. <span class="divider">|</span>
  6095. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_resize_term_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.resize_term(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6096. </span>
  6097. <span class="small pull-right mobile-hide">
  6098. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L323">View Source</a>
  6099. </span>
  6100. <a id="Unix_Terminal_Curses_resize_term_" data-uid="Unix.Terminal.Curses.resize_term*"></a>
  6101. <h4 id="Unix_Terminal_Curses_resize_term_System_Int32_System_Int32_" data-uid="Unix.Terminal.Curses.resize_term(System.Int32,System.Int32)">resize_term(Int32, Int32)</h4>
  6102. <div class="markdown level1 summary"></div>
  6103. <div class="markdown level1 conceptual"></div>
  6104. <h5 class="decalaration">Declaration</h5>
  6105. <div class="codewrapper">
  6106. <pre><code class="lang-csharp hljs">public static int resize_term(int lines, int columns)</code></pre>
  6107. </div>
  6108. <h5 class="parameters">Parameters</h5>
  6109. <table class="table table-bordered table-striped table-condensed">
  6110. <thead>
  6111. <tr>
  6112. <th>Type</th>
  6113. <th>Name</th>
  6114. <th>Description</th>
  6115. </tr>
  6116. </thead>
  6117. <tbody>
  6118. <tr>
  6119. <td><span class="xref">System.Int32</span></td>
  6120. <td><span class="parametername">lines</span></td>
  6121. <td></td>
  6122. </tr>
  6123. <tr>
  6124. <td><span class="xref">System.Int32</span></td>
  6125. <td><span class="parametername">columns</span></td>
  6126. <td></td>
  6127. </tr>
  6128. </tbody>
  6129. </table>
  6130. <h5 class="returns">Returns</h5>
  6131. <table class="table table-bordered table-striped table-condensed">
  6132. <thead>
  6133. <tr>
  6134. <th>Type</th>
  6135. <th>Description</th>
  6136. </tr>
  6137. </thead>
  6138. <tbody>
  6139. <tr>
  6140. <td><span class="xref">System.Int32</span></td>
  6141. <td></td>
  6142. </tr>
  6143. </tbody>
  6144. </table>
  6145. <span class="small pull-right mobile-hide">
  6146. <span class="divider">|</span>
  6147. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_resizeterm_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.resizeterm(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6148. </span>
  6149. <span class="small pull-right mobile-hide">
  6150. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L324">View Source</a>
  6151. </span>
  6152. <a id="Unix_Terminal_Curses_resizeterm_" data-uid="Unix.Terminal.Curses.resizeterm*"></a>
  6153. <h4 id="Unix_Terminal_Curses_resizeterm_System_Int32_System_Int32_" data-uid="Unix.Terminal.Curses.resizeterm(System.Int32,System.Int32)">resizeterm(Int32, Int32)</h4>
  6154. <div class="markdown level1 summary"></div>
  6155. <div class="markdown level1 conceptual"></div>
  6156. <h5 class="decalaration">Declaration</h5>
  6157. <div class="codewrapper">
  6158. <pre><code class="lang-csharp hljs">public static int resizeterm(int lines, int columns)</code></pre>
  6159. </div>
  6160. <h5 class="parameters">Parameters</h5>
  6161. <table class="table table-bordered table-striped table-condensed">
  6162. <thead>
  6163. <tr>
  6164. <th>Type</th>
  6165. <th>Name</th>
  6166. <th>Description</th>
  6167. </tr>
  6168. </thead>
  6169. <tbody>
  6170. <tr>
  6171. <td><span class="xref">System.Int32</span></td>
  6172. <td><span class="parametername">lines</span></td>
  6173. <td></td>
  6174. </tr>
  6175. <tr>
  6176. <td><span class="xref">System.Int32</span></td>
  6177. <td><span class="parametername">columns</span></td>
  6178. <td></td>
  6179. </tr>
  6180. </tbody>
  6181. </table>
  6182. <h5 class="returns">Returns</h5>
  6183. <table class="table table-bordered table-striped table-condensed">
  6184. <thead>
  6185. <tr>
  6186. <th>Type</th>
  6187. <th>Description</th>
  6188. </tr>
  6189. </thead>
  6190. <tbody>
  6191. <tr>
  6192. <td><span class="xref">System.Int32</span></td>
  6193. <td></td>
  6194. </tr>
  6195. </tbody>
  6196. </table>
  6197. <span class="small pull-right mobile-hide">
  6198. <span class="divider">|</span>
  6199. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_savetty.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.savetty%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6200. </span>
  6201. <span class="small pull-right mobile-hide">
  6202. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L331">View Source</a>
  6203. </span>
  6204. <a id="Unix_Terminal_Curses_savetty_" data-uid="Unix.Terminal.Curses.savetty*"></a>
  6205. <h4 id="Unix_Terminal_Curses_savetty" data-uid="Unix.Terminal.Curses.savetty">savetty()</h4>
  6206. <div class="markdown level1 summary"></div>
  6207. <div class="markdown level1 conceptual"></div>
  6208. <h5 class="decalaration">Declaration</h5>
  6209. <div class="codewrapper">
  6210. <pre><code class="lang-csharp hljs">public static int savetty()</code></pre>
  6211. </div>
  6212. <h5 class="returns">Returns</h5>
  6213. <table class="table table-bordered table-striped table-condensed">
  6214. <thead>
  6215. <tr>
  6216. <th>Type</th>
  6217. <th>Description</th>
  6218. </tr>
  6219. </thead>
  6220. <tbody>
  6221. <tr>
  6222. <td><span class="xref">System.Int32</span></td>
  6223. <td></td>
  6224. </tr>
  6225. </tbody>
  6226. </table>
  6227. <span class="small pull-right mobile-hide">
  6228. <span class="divider">|</span>
  6229. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_scrollok_System_IntPtr_System_Boolean_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.scrollok(System.IntPtr%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6230. </span>
  6231. <span class="small pull-right mobile-hide">
  6232. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L290">View Source</a>
  6233. </span>
  6234. <a id="Unix_Terminal_Curses_scrollok_" data-uid="Unix.Terminal.Curses.scrollok*"></a>
  6235. <h4 id="Unix_Terminal_Curses_scrollok_System_IntPtr_System_Boolean_" data-uid="Unix.Terminal.Curses.scrollok(System.IntPtr,System.Boolean)">scrollok(IntPtr, Boolean)</h4>
  6236. <div class="markdown level1 summary"></div>
  6237. <div class="markdown level1 conceptual"></div>
  6238. <h5 class="decalaration">Declaration</h5>
  6239. <div class="codewrapper">
  6240. <pre><code class="lang-csharp hljs">public static int scrollok(IntPtr win, bool bf)</code></pre>
  6241. </div>
  6242. <h5 class="parameters">Parameters</h5>
  6243. <table class="table table-bordered table-striped table-condensed">
  6244. <thead>
  6245. <tr>
  6246. <th>Type</th>
  6247. <th>Name</th>
  6248. <th>Description</th>
  6249. </tr>
  6250. </thead>
  6251. <tbody>
  6252. <tr>
  6253. <td><span class="xref">System.IntPtr</span></td>
  6254. <td><span class="parametername">win</span></td>
  6255. <td></td>
  6256. </tr>
  6257. <tr>
  6258. <td><span class="xref">System.Boolean</span></td>
  6259. <td><span class="parametername">bf</span></td>
  6260. <td></td>
  6261. </tr>
  6262. </tbody>
  6263. </table>
  6264. <h5 class="returns">Returns</h5>
  6265. <table class="table table-bordered table-striped table-condensed">
  6266. <thead>
  6267. <tr>
  6268. <th>Type</th>
  6269. <th>Description</th>
  6270. </tr>
  6271. </thead>
  6272. <tbody>
  6273. <tr>
  6274. <td><span class="xref">System.Int32</span></td>
  6275. <td></td>
  6276. </tr>
  6277. </tbody>
  6278. </table>
  6279. <a id="Unix_Terminal_Curses_setlocale_" data-uid="Unix.Terminal.Curses.setlocale*"></a>
  6280. <h4 id="Unix_Terminal_Curses_setlocale_System_Int32_System_String_" data-uid="Unix.Terminal.Curses.setlocale(System.Int32,System.String)">setlocale(Int32, String)</h4>
  6281. <div class="markdown level1 summary"></div>
  6282. <div class="markdown level1 conceptual"></div>
  6283. <h5 class="decalaration">Declaration</h5>
  6284. <div class="codewrapper">
  6285. <pre><code class="lang-csharp hljs">public static extern int setlocale(int cate, string locale)</code></pre>
  6286. </div>
  6287. <h5 class="parameters">Parameters</h5>
  6288. <table class="table table-bordered table-striped table-condensed">
  6289. <thead>
  6290. <tr>
  6291. <th>Type</th>
  6292. <th>Name</th>
  6293. <th>Description</th>
  6294. </tr>
  6295. </thead>
  6296. <tbody>
  6297. <tr>
  6298. <td><span class="xref">System.Int32</span></td>
  6299. <td><span class="parametername">cate</span></td>
  6300. <td></td>
  6301. </tr>
  6302. <tr>
  6303. <td><span class="xref">System.String</span></td>
  6304. <td><span class="parametername">locale</span></td>
  6305. <td></td>
  6306. </tr>
  6307. </tbody>
  6308. </table>
  6309. <h5 class="returns">Returns</h5>
  6310. <table class="table table-bordered table-striped table-condensed">
  6311. <thead>
  6312. <tr>
  6313. <th>Type</th>
  6314. <th>Description</th>
  6315. </tr>
  6316. </thead>
  6317. <tbody>
  6318. <tr>
  6319. <td><span class="xref">System.Int32</span></td>
  6320. <td></td>
  6321. </tr>
  6322. </tbody>
  6323. </table>
  6324. <span class="small pull-right mobile-hide">
  6325. <span class="divider">|</span>
  6326. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_setscrreg_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.setscrreg(System.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6327. </span>
  6328. <span class="small pull-right mobile-hide">
  6329. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L293">View Source</a>
  6330. </span>
  6331. <a id="Unix_Terminal_Curses_setscrreg_" data-uid="Unix.Terminal.Curses.setscrreg*"></a>
  6332. <h4 id="Unix_Terminal_Curses_setscrreg_System_Int32_System_Int32_" data-uid="Unix.Terminal.Curses.setscrreg(System.Int32,System.Int32)">setscrreg(Int32, Int32)</h4>
  6333. <div class="markdown level1 summary"></div>
  6334. <div class="markdown level1 conceptual"></div>
  6335. <h5 class="decalaration">Declaration</h5>
  6336. <div class="codewrapper">
  6337. <pre><code class="lang-csharp hljs">public static int setscrreg(int top, int bot)</code></pre>
  6338. </div>
  6339. <h5 class="parameters">Parameters</h5>
  6340. <table class="table table-bordered table-striped table-condensed">
  6341. <thead>
  6342. <tr>
  6343. <th>Type</th>
  6344. <th>Name</th>
  6345. <th>Description</th>
  6346. </tr>
  6347. </thead>
  6348. <tbody>
  6349. <tr>
  6350. <td><span class="xref">System.Int32</span></td>
  6351. <td><span class="parametername">top</span></td>
  6352. <td></td>
  6353. </tr>
  6354. <tr>
  6355. <td><span class="xref">System.Int32</span></td>
  6356. <td><span class="parametername">bot</span></td>
  6357. <td></td>
  6358. </tr>
  6359. </tbody>
  6360. </table>
  6361. <h5 class="returns">Returns</h5>
  6362. <table class="table table-bordered table-striped table-condensed">
  6363. <thead>
  6364. <tr>
  6365. <th>Type</th>
  6366. <th>Description</th>
  6367. </tr>
  6368. </thead>
  6369. <tbody>
  6370. <tr>
  6371. <td><span class="xref">System.Int32</span></td>
  6372. <td></td>
  6373. </tr>
  6374. </tbody>
  6375. </table>
  6376. <span class="small pull-right mobile-hide">
  6377. <span class="divider">|</span>
  6378. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_start_color.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.start_color%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6379. </span>
  6380. <span class="small pull-right mobile-hide">
  6381. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L315">View Source</a>
  6382. </span>
  6383. <a id="Unix_Terminal_Curses_start_color_" data-uid="Unix.Terminal.Curses.start_color*"></a>
  6384. <h4 id="Unix_Terminal_Curses_start_color" data-uid="Unix.Terminal.Curses.start_color">start_color()</h4>
  6385. <div class="markdown level1 summary"></div>
  6386. <div class="markdown level1 conceptual"></div>
  6387. <h5 class="decalaration">Declaration</h5>
  6388. <div class="codewrapper">
  6389. <pre><code class="lang-csharp hljs">public static int start_color()</code></pre>
  6390. </div>
  6391. <h5 class="returns">Returns</h5>
  6392. <table class="table table-bordered table-striped table-condensed">
  6393. <thead>
  6394. <tr>
  6395. <th>Type</th>
  6396. <th>Description</th>
  6397. </tr>
  6398. </thead>
  6399. <tbody>
  6400. <tr>
  6401. <td><span class="xref">System.Int32</span></td>
  6402. <td></td>
  6403. </tr>
  6404. </tbody>
  6405. </table>
  6406. <span class="small pull-right mobile-hide">
  6407. <span class="divider">|</span>
  6408. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_StartColor.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.StartColor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6409. </span>
  6410. <span class="small pull-right mobile-hide">
  6411. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L257">View Source</a>
  6412. </span>
  6413. <a id="Unix_Terminal_Curses_StartColor_" data-uid="Unix.Terminal.Curses.StartColor*"></a>
  6414. <h4 id="Unix_Terminal_Curses_StartColor" data-uid="Unix.Terminal.Curses.StartColor">StartColor()</h4>
  6415. <div class="markdown level1 summary"></div>
  6416. <div class="markdown level1 conceptual"></div>
  6417. <h5 class="decalaration">Declaration</h5>
  6418. <div class="codewrapper">
  6419. <pre><code class="lang-csharp hljs">public static int StartColor()</code></pre>
  6420. </div>
  6421. <h5 class="returns">Returns</h5>
  6422. <table class="table table-bordered table-striped table-condensed">
  6423. <thead>
  6424. <tr>
  6425. <th>Type</th>
  6426. <th>Description</th>
  6427. </tr>
  6428. </thead>
  6429. <tbody>
  6430. <tr>
  6431. <td><span class="xref">System.Int32</span></td>
  6432. <td></td>
  6433. </tr>
  6434. </tbody>
  6435. </table>
  6436. <span class="small pull-right mobile-hide">
  6437. <span class="divider">|</span>
  6438. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_timeout_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.timeout(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6439. </span>
  6440. <span class="small pull-right mobile-hide">
  6441. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L278">View Source</a>
  6442. </span>
  6443. <a id="Unix_Terminal_Curses_timeout_" data-uid="Unix.Terminal.Curses.timeout*"></a>
  6444. <h4 id="Unix_Terminal_Curses_timeout_System_Int32_" data-uid="Unix.Terminal.Curses.timeout(System.Int32)">timeout(Int32)</h4>
  6445. <div class="markdown level1 summary"></div>
  6446. <div class="markdown level1 conceptual"></div>
  6447. <h5 class="decalaration">Declaration</h5>
  6448. <div class="codewrapper">
  6449. <pre><code class="lang-csharp hljs">public static int timeout(int delay)</code></pre>
  6450. </div>
  6451. <h5 class="parameters">Parameters</h5>
  6452. <table class="table table-bordered table-striped table-condensed">
  6453. <thead>
  6454. <tr>
  6455. <th>Type</th>
  6456. <th>Name</th>
  6457. <th>Description</th>
  6458. </tr>
  6459. </thead>
  6460. <tbody>
  6461. <tr>
  6462. <td><span class="xref">System.Int32</span></td>
  6463. <td><span class="parametername">delay</span></td>
  6464. <td></td>
  6465. </tr>
  6466. </tbody>
  6467. </table>
  6468. <h5 class="returns">Returns</h5>
  6469. <table class="table table-bordered table-striped table-condensed">
  6470. <thead>
  6471. <tr>
  6472. <th>Type</th>
  6473. <th>Description</th>
  6474. </tr>
  6475. </thead>
  6476. <tbody>
  6477. <tr>
  6478. <td><span class="xref">System.Int32</span></td>
  6479. <td></td>
  6480. </tr>
  6481. </tbody>
  6482. </table>
  6483. <span class="small pull-right mobile-hide">
  6484. <span class="divider">|</span>
  6485. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_typeahead_System_IntPtr_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.typeahead(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6486. </span>
  6487. <span class="small pull-right mobile-hide">
  6488. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L277">View Source</a>
  6489. </span>
  6490. <a id="Unix_Terminal_Curses_typeahead_" data-uid="Unix.Terminal.Curses.typeahead*"></a>
  6491. <h4 id="Unix_Terminal_Curses_typeahead_System_IntPtr_" data-uid="Unix.Terminal.Curses.typeahead(System.IntPtr)">typeahead(IntPtr)</h4>
  6492. <div class="markdown level1 summary"></div>
  6493. <div class="markdown level1 conceptual"></div>
  6494. <h5 class="decalaration">Declaration</h5>
  6495. <div class="codewrapper">
  6496. <pre><code class="lang-csharp hljs">public static int typeahead(IntPtr fd)</code></pre>
  6497. </div>
  6498. <h5 class="parameters">Parameters</h5>
  6499. <table class="table table-bordered table-striped table-condensed">
  6500. <thead>
  6501. <tr>
  6502. <th>Type</th>
  6503. <th>Name</th>
  6504. <th>Description</th>
  6505. </tr>
  6506. </thead>
  6507. <tbody>
  6508. <tr>
  6509. <td><span class="xref">System.IntPtr</span></td>
  6510. <td><span class="parametername">fd</span></td>
  6511. <td></td>
  6512. </tr>
  6513. </tbody>
  6514. </table>
  6515. <h5 class="returns">Returns</h5>
  6516. <table class="table table-bordered table-striped table-condensed">
  6517. <thead>
  6518. <tr>
  6519. <th>Type</th>
  6520. <th>Description</th>
  6521. </tr>
  6522. </thead>
  6523. <tbody>
  6524. <tr>
  6525. <td><span class="xref">System.Int32</span></td>
  6526. <td></td>
  6527. </tr>
  6528. </tbody>
  6529. </table>
  6530. <span class="small pull-right mobile-hide">
  6531. <span class="divider">|</span>
  6532. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ungetch_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ungetch(System.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6533. </span>
  6534. <span class="small pull-right mobile-hide">
  6535. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L312">View Source</a>
  6536. </span>
  6537. <a id="Unix_Terminal_Curses_ungetch_" data-uid="Unix.Terminal.Curses.ungetch*"></a>
  6538. <h4 id="Unix_Terminal_Curses_ungetch_System_Int32_" data-uid="Unix.Terminal.Curses.ungetch(System.Int32)">ungetch(Int32)</h4>
  6539. <div class="markdown level1 summary"></div>
  6540. <div class="markdown level1 conceptual"></div>
  6541. <h5 class="decalaration">Declaration</h5>
  6542. <div class="codewrapper">
  6543. <pre><code class="lang-csharp hljs">public static int ungetch(int ch)</code></pre>
  6544. </div>
  6545. <h5 class="parameters">Parameters</h5>
  6546. <table class="table table-bordered table-striped table-condensed">
  6547. <thead>
  6548. <tr>
  6549. <th>Type</th>
  6550. <th>Name</th>
  6551. <th>Description</th>
  6552. </tr>
  6553. </thead>
  6554. <tbody>
  6555. <tr>
  6556. <td><span class="xref">System.Int32</span></td>
  6557. <td><span class="parametername">ch</span></td>
  6558. <td></td>
  6559. </tr>
  6560. </tbody>
  6561. </table>
  6562. <h5 class="returns">Returns</h5>
  6563. <table class="table table-bordered table-striped table-condensed">
  6564. <thead>
  6565. <tr>
  6566. <th>Type</th>
  6567. <th>Description</th>
  6568. </tr>
  6569. </thead>
  6570. <tbody>
  6571. <tr>
  6572. <td><span class="xref">System.Int32</span></td>
  6573. <td></td>
  6574. </tr>
  6575. </tbody>
  6576. </table>
  6577. <span class="small pull-right mobile-hide">
  6578. <span class="divider">|</span>
  6579. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_ungetmouse_Unix_Terminal_Curses_MouseEvent__.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.ungetmouse(Unix.Terminal.Curses.MouseEvent%40)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6580. </span>
  6581. <span class="small pull-right mobile-hide">
  6582. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L320">View Source</a>
  6583. </span>
  6584. <a id="Unix_Terminal_Curses_ungetmouse_" data-uid="Unix.Terminal.Curses.ungetmouse*"></a>
  6585. <h4 id="Unix_Terminal_Curses_ungetmouse_Unix_Terminal_Curses_MouseEvent__" data-uid="Unix.Terminal.Curses.ungetmouse(Unix.Terminal.Curses.MouseEvent@)">ungetmouse(ref Curses.MouseEvent)</h4>
  6586. <div class="markdown level1 summary"></div>
  6587. <div class="markdown level1 conceptual"></div>
  6588. <h5 class="decalaration">Declaration</h5>
  6589. <div class="codewrapper">
  6590. <pre><code class="lang-csharp hljs">public static uint ungetmouse(ref Curses.MouseEvent ev)</code></pre>
  6591. </div>
  6592. <h5 class="parameters">Parameters</h5>
  6593. <table class="table table-bordered table-striped table-condensed">
  6594. <thead>
  6595. <tr>
  6596. <th>Type</th>
  6597. <th>Name</th>
  6598. <th>Description</th>
  6599. </tr>
  6600. </thead>
  6601. <tbody>
  6602. <tr>
  6603. <td><a class="xref" href="Unix.Terminal.Curses.MouseEvent.html">Curses.MouseEvent</a></td>
  6604. <td><span class="parametername">ev</span></td>
  6605. <td></td>
  6606. </tr>
  6607. </tbody>
  6608. </table>
  6609. <h5 class="returns">Returns</h5>
  6610. <table class="table table-bordered table-striped table-condensed">
  6611. <thead>
  6612. <tr>
  6613. <th>Type</th>
  6614. <th>Description</th>
  6615. </tr>
  6616. </thead>
  6617. <tbody>
  6618. <tr>
  6619. <td><span class="xref">System.UInt32</span></td>
  6620. <td></td>
  6621. </tr>
  6622. </tbody>
  6623. </table>
  6624. <span class="small pull-right mobile-hide">
  6625. <span class="divider">|</span>
  6626. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_use_default_colors.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.use_default_colors%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6627. </span>
  6628. <span class="small pull-right mobile-hide">
  6629. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L317">View Source</a>
  6630. </span>
  6631. <a id="Unix_Terminal_Curses_use_default_colors_" data-uid="Unix.Terminal.Curses.use_default_colors*"></a>
  6632. <h4 id="Unix_Terminal_Curses_use_default_colors" data-uid="Unix.Terminal.Curses.use_default_colors">use_default_colors()</h4>
  6633. <div class="markdown level1 summary"></div>
  6634. <div class="markdown level1 conceptual"></div>
  6635. <h5 class="decalaration">Declaration</h5>
  6636. <div class="codewrapper">
  6637. <pre><code class="lang-csharp hljs">public static int use_default_colors()</code></pre>
  6638. </div>
  6639. <h5 class="returns">Returns</h5>
  6640. <table class="table table-bordered table-striped table-condensed">
  6641. <thead>
  6642. <tr>
  6643. <th>Type</th>
  6644. <th>Description</th>
  6645. </tr>
  6646. </thead>
  6647. <tbody>
  6648. <tr>
  6649. <td><span class="xref">System.Int32</span></td>
  6650. <td></td>
  6651. </tr>
  6652. </tbody>
  6653. </table>
  6654. <span class="small pull-right mobile-hide">
  6655. <span class="divider">|</span>
  6656. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_use_env_System_Boolean_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.use_env(System.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6657. </span>
  6658. <span class="small pull-right mobile-hide">
  6659. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L325">View Source</a>
  6660. </span>
  6661. <a id="Unix_Terminal_Curses_use_env_" data-uid="Unix.Terminal.Curses.use_env*"></a>
  6662. <h4 id="Unix_Terminal_Curses_use_env_System_Boolean_" data-uid="Unix.Terminal.Curses.use_env(System.Boolean)">use_env(Boolean)</h4>
  6663. <div class="markdown level1 summary"></div>
  6664. <div class="markdown level1 conceptual"></div>
  6665. <h5 class="decalaration">Declaration</h5>
  6666. <div class="codewrapper">
  6667. <pre><code class="lang-csharp hljs">public static void use_env(bool f)</code></pre>
  6668. </div>
  6669. <h5 class="parameters">Parameters</h5>
  6670. <table class="table table-bordered table-striped table-condensed">
  6671. <thead>
  6672. <tr>
  6673. <th>Type</th>
  6674. <th>Name</th>
  6675. <th>Description</th>
  6676. </tr>
  6677. </thead>
  6678. <tbody>
  6679. <tr>
  6680. <td><span class="xref">System.Boolean</span></td>
  6681. <td><span class="parametername">f</span></td>
  6682. <td></td>
  6683. </tr>
  6684. </tbody>
  6685. </table>
  6686. <span class="small pull-right mobile-hide">
  6687. <span class="divider">|</span>
  6688. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_UseDefaultColors.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.UseDefaultColors%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6689. </span>
  6690. <span class="small pull-right mobile-hide">
  6691. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L260">View Source</a>
  6692. </span>
  6693. <a id="Unix_Terminal_Curses_UseDefaultColors_" data-uid="Unix.Terminal.Curses.UseDefaultColors*"></a>
  6694. <h4 id="Unix_Terminal_Curses_UseDefaultColors" data-uid="Unix.Terminal.Curses.UseDefaultColors">UseDefaultColors()</h4>
  6695. <div class="markdown level1 summary"></div>
  6696. <div class="markdown level1 conceptual"></div>
  6697. <h5 class="decalaration">Declaration</h5>
  6698. <div class="codewrapper">
  6699. <pre><code class="lang-csharp hljs">public static int UseDefaultColors()</code></pre>
  6700. </div>
  6701. <h5 class="returns">Returns</h5>
  6702. <table class="table table-bordered table-striped table-condensed">
  6703. <thead>
  6704. <tr>
  6705. <th>Type</th>
  6706. <th>Description</th>
  6707. </tr>
  6708. </thead>
  6709. <tbody>
  6710. <tr>
  6711. <td><span class="xref">System.Int32</span></td>
  6712. <td></td>
  6713. </tr>
  6714. </tbody>
  6715. </table>
  6716. <span class="small pull-right mobile-hide">
  6717. <span class="divider">|</span>
  6718. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_waddch_System_IntPtr_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.waddch(System.IntPtr%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6719. </span>
  6720. <span class="small pull-right mobile-hide">
  6721. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L306">View Source</a>
  6722. </span>
  6723. <a id="Unix_Terminal_Curses_waddch_" data-uid="Unix.Terminal.Curses.waddch*"></a>
  6724. <h4 id="Unix_Terminal_Curses_waddch_System_IntPtr_System_Int32_" data-uid="Unix.Terminal.Curses.waddch(System.IntPtr,System.Int32)">waddch(IntPtr, Int32)</h4>
  6725. <div class="markdown level1 summary"></div>
  6726. <div class="markdown level1 conceptual"></div>
  6727. <h5 class="decalaration">Declaration</h5>
  6728. <div class="codewrapper">
  6729. <pre><code class="lang-csharp hljs">public static int waddch(IntPtr win, int ch)</code></pre>
  6730. </div>
  6731. <h5 class="parameters">Parameters</h5>
  6732. <table class="table table-bordered table-striped table-condensed">
  6733. <thead>
  6734. <tr>
  6735. <th>Type</th>
  6736. <th>Name</th>
  6737. <th>Description</th>
  6738. </tr>
  6739. </thead>
  6740. <tbody>
  6741. <tr>
  6742. <td><span class="xref">System.IntPtr</span></td>
  6743. <td><span class="parametername">win</span></td>
  6744. <td></td>
  6745. </tr>
  6746. <tr>
  6747. <td><span class="xref">System.Int32</span></td>
  6748. <td><span class="parametername">ch</span></td>
  6749. <td></td>
  6750. </tr>
  6751. </tbody>
  6752. </table>
  6753. <h5 class="returns">Returns</h5>
  6754. <table class="table table-bordered table-striped table-condensed">
  6755. <thead>
  6756. <tr>
  6757. <th>Type</th>
  6758. <th>Description</th>
  6759. </tr>
  6760. </thead>
  6761. <tbody>
  6762. <tr>
  6763. <td><span class="xref">System.Int32</span></td>
  6764. <td></td>
  6765. </tr>
  6766. </tbody>
  6767. </table>
  6768. <span class="small pull-right mobile-hide">
  6769. <span class="divider">|</span>
  6770. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_wmove_System_IntPtr_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.wmove(System.IntPtr%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6771. </span>
  6772. <span class="small pull-right mobile-hide">
  6773. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L305">View Source</a>
  6774. </span>
  6775. <a id="Unix_Terminal_Curses_wmove_" data-uid="Unix.Terminal.Curses.wmove*"></a>
  6776. <h4 id="Unix_Terminal_Curses_wmove_System_IntPtr_System_Int32_System_Int32_" data-uid="Unix.Terminal.Curses.wmove(System.IntPtr,System.Int32,System.Int32)">wmove(IntPtr, Int32, Int32)</h4>
  6777. <div class="markdown level1 summary"></div>
  6778. <div class="markdown level1 conceptual"></div>
  6779. <h5 class="decalaration">Declaration</h5>
  6780. <div class="codewrapper">
  6781. <pre><code class="lang-csharp hljs">public static int wmove(IntPtr win, int line, int col)</code></pre>
  6782. </div>
  6783. <h5 class="parameters">Parameters</h5>
  6784. <table class="table table-bordered table-striped table-condensed">
  6785. <thead>
  6786. <tr>
  6787. <th>Type</th>
  6788. <th>Name</th>
  6789. <th>Description</th>
  6790. </tr>
  6791. </thead>
  6792. <tbody>
  6793. <tr>
  6794. <td><span class="xref">System.IntPtr</span></td>
  6795. <td><span class="parametername">win</span></td>
  6796. <td></td>
  6797. </tr>
  6798. <tr>
  6799. <td><span class="xref">System.Int32</span></td>
  6800. <td><span class="parametername">line</span></td>
  6801. <td></td>
  6802. </tr>
  6803. <tr>
  6804. <td><span class="xref">System.Int32</span></td>
  6805. <td><span class="parametername">col</span></td>
  6806. <td></td>
  6807. </tr>
  6808. </tbody>
  6809. </table>
  6810. <h5 class="returns">Returns</h5>
  6811. <table class="table table-bordered table-striped table-condensed">
  6812. <thead>
  6813. <tr>
  6814. <th>Type</th>
  6815. <th>Description</th>
  6816. </tr>
  6817. </thead>
  6818. <tbody>
  6819. <tr>
  6820. <td><span class="xref">System.Int32</span></td>
  6821. <td></td>
  6822. </tr>
  6823. </tbody>
  6824. </table>
  6825. <span class="small pull-right mobile-hide">
  6826. <span class="divider">|</span>
  6827. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_wnoutrefresh_System_IntPtr_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.wnoutrefresh(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6828. </span>
  6829. <span class="small pull-right mobile-hide">
  6830. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L299">View Source</a>
  6831. </span>
  6832. <a id="Unix_Terminal_Curses_wnoutrefresh_" data-uid="Unix.Terminal.Curses.wnoutrefresh*"></a>
  6833. <h4 id="Unix_Terminal_Curses_wnoutrefresh_System_IntPtr_" data-uid="Unix.Terminal.Curses.wnoutrefresh(System.IntPtr)">wnoutrefresh(IntPtr)</h4>
  6834. <div class="markdown level1 summary"></div>
  6835. <div class="markdown level1 conceptual"></div>
  6836. <h5 class="decalaration">Declaration</h5>
  6837. <div class="codewrapper">
  6838. <pre><code class="lang-csharp hljs">public static int wnoutrefresh(IntPtr win)</code></pre>
  6839. </div>
  6840. <h5 class="parameters">Parameters</h5>
  6841. <table class="table table-bordered table-striped table-condensed">
  6842. <thead>
  6843. <tr>
  6844. <th>Type</th>
  6845. <th>Name</th>
  6846. <th>Description</th>
  6847. </tr>
  6848. </thead>
  6849. <tbody>
  6850. <tr>
  6851. <td><span class="xref">System.IntPtr</span></td>
  6852. <td><span class="parametername">win</span></td>
  6853. <td></td>
  6854. </tr>
  6855. </tbody>
  6856. </table>
  6857. <h5 class="returns">Returns</h5>
  6858. <table class="table table-bordered table-striped table-condensed">
  6859. <thead>
  6860. <tr>
  6861. <th>Type</th>
  6862. <th>Description</th>
  6863. </tr>
  6864. </thead>
  6865. <tbody>
  6866. <tr>
  6867. <td><span class="xref">System.Int32</span></td>
  6868. <td></td>
  6869. </tr>
  6870. </tbody>
  6871. </table>
  6872. <span class="small pull-right mobile-hide">
  6873. <span class="divider">|</span>
  6874. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_wrefresh_System_IntPtr_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.wrefresh(System.IntPtr)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6875. </span>
  6876. <span class="small pull-right mobile-hide">
  6877. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L296">View Source</a>
  6878. </span>
  6879. <a id="Unix_Terminal_Curses_wrefresh_" data-uid="Unix.Terminal.Curses.wrefresh*"></a>
  6880. <h4 id="Unix_Terminal_Curses_wrefresh_System_IntPtr_" data-uid="Unix.Terminal.Curses.wrefresh(System.IntPtr)">wrefresh(IntPtr)</h4>
  6881. <div class="markdown level1 summary"></div>
  6882. <div class="markdown level1 conceptual"></div>
  6883. <h5 class="decalaration">Declaration</h5>
  6884. <div class="codewrapper">
  6885. <pre><code class="lang-csharp hljs">public static int wrefresh(IntPtr win)</code></pre>
  6886. </div>
  6887. <h5 class="parameters">Parameters</h5>
  6888. <table class="table table-bordered table-striped table-condensed">
  6889. <thead>
  6890. <tr>
  6891. <th>Type</th>
  6892. <th>Name</th>
  6893. <th>Description</th>
  6894. </tr>
  6895. </thead>
  6896. <tbody>
  6897. <tr>
  6898. <td><span class="xref">System.IntPtr</span></td>
  6899. <td><span class="parametername">win</span></td>
  6900. <td></td>
  6901. </tr>
  6902. </tbody>
  6903. </table>
  6904. <h5 class="returns">Returns</h5>
  6905. <table class="table table-bordered table-striped table-condensed">
  6906. <thead>
  6907. <tr>
  6908. <th>Type</th>
  6909. <th>Description</th>
  6910. </tr>
  6911. </thead>
  6912. <tbody>
  6913. <tr>
  6914. <td><span class="xref">System.Int32</span></td>
  6915. <td></td>
  6916. </tr>
  6917. </tbody>
  6918. </table>
  6919. <span class="small pull-right mobile-hide">
  6920. <span class="divider">|</span>
  6921. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_wsetscrreg_System_IntPtr_System_Int32_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.wsetscrreg(System.IntPtr%2CSystem.Int32%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6922. </span>
  6923. <span class="small pull-right mobile-hide">
  6924. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L289">View Source</a>
  6925. </span>
  6926. <a id="Unix_Terminal_Curses_wsetscrreg_" data-uid="Unix.Terminal.Curses.wsetscrreg*"></a>
  6927. <h4 id="Unix_Terminal_Curses_wsetscrreg_System_IntPtr_System_Int32_System_Int32_" data-uid="Unix.Terminal.Curses.wsetscrreg(System.IntPtr,System.Int32,System.Int32)">wsetscrreg(IntPtr, Int32, Int32)</h4>
  6928. <div class="markdown level1 summary"></div>
  6929. <div class="markdown level1 conceptual"></div>
  6930. <h5 class="decalaration">Declaration</h5>
  6931. <div class="codewrapper">
  6932. <pre><code class="lang-csharp hljs">public static int wsetscrreg(IntPtr win, int top, int bot)</code></pre>
  6933. </div>
  6934. <h5 class="parameters">Parameters</h5>
  6935. <table class="table table-bordered table-striped table-condensed">
  6936. <thead>
  6937. <tr>
  6938. <th>Type</th>
  6939. <th>Name</th>
  6940. <th>Description</th>
  6941. </tr>
  6942. </thead>
  6943. <tbody>
  6944. <tr>
  6945. <td><span class="xref">System.IntPtr</span></td>
  6946. <td><span class="parametername">win</span></td>
  6947. <td></td>
  6948. </tr>
  6949. <tr>
  6950. <td><span class="xref">System.Int32</span></td>
  6951. <td><span class="parametername">top</span></td>
  6952. <td></td>
  6953. </tr>
  6954. <tr>
  6955. <td><span class="xref">System.Int32</span></td>
  6956. <td><span class="parametername">bot</span></td>
  6957. <td></td>
  6958. </tr>
  6959. </tbody>
  6960. </table>
  6961. <h5 class="returns">Returns</h5>
  6962. <table class="table table-bordered table-striped table-condensed">
  6963. <thead>
  6964. <tr>
  6965. <th>Type</th>
  6966. <th>Description</th>
  6967. </tr>
  6968. </thead>
  6969. <tbody>
  6970. <tr>
  6971. <td><span class="xref">System.Int32</span></td>
  6972. <td></td>
  6973. </tr>
  6974. </tbody>
  6975. </table>
  6976. <span class="small pull-right mobile-hide">
  6977. <span class="divider">|</span>
  6978. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_wtimeout_System_IntPtr_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.wtimeout(System.IntPtr%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
  6979. </span>
  6980. <span class="small pull-right mobile-hide">
  6981. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L279">View Source</a>
  6982. </span>
  6983. <a id="Unix_Terminal_Curses_wtimeout_" data-uid="Unix.Terminal.Curses.wtimeout*"></a>
  6984. <h4 id="Unix_Terminal_Curses_wtimeout_System_IntPtr_System_Int32_" data-uid="Unix.Terminal.Curses.wtimeout(System.IntPtr,System.Int32)">wtimeout(IntPtr, Int32)</h4>
  6985. <div class="markdown level1 summary"></div>
  6986. <div class="markdown level1 conceptual"></div>
  6987. <h5 class="decalaration">Declaration</h5>
  6988. <div class="codewrapper">
  6989. <pre><code class="lang-csharp hljs">public static int wtimeout(IntPtr win, int delay)</code></pre>
  6990. </div>
  6991. <h5 class="parameters">Parameters</h5>
  6992. <table class="table table-bordered table-striped table-condensed">
  6993. <thead>
  6994. <tr>
  6995. <th>Type</th>
  6996. <th>Name</th>
  6997. <th>Description</th>
  6998. </tr>
  6999. </thead>
  7000. <tbody>
  7001. <tr>
  7002. <td><span class="xref">System.IntPtr</span></td>
  7003. <td><span class="parametername">win</span></td>
  7004. <td></td>
  7005. </tr>
  7006. <tr>
  7007. <td><span class="xref">System.Int32</span></td>
  7008. <td><span class="parametername">delay</span></td>
  7009. <td></td>
  7010. </tr>
  7011. </tbody>
  7012. </table>
  7013. <h5 class="returns">Returns</h5>
  7014. <table class="table table-bordered table-striped table-condensed">
  7015. <thead>
  7016. <tr>
  7017. <th>Type</th>
  7018. <th>Description</th>
  7019. </tr>
  7020. </thead>
  7021. <tbody>
  7022. <tr>
  7023. <td><span class="xref">System.Int32</span></td>
  7024. <td></td>
  7025. </tr>
  7026. </tbody>
  7027. </table>
  7028. </article>
  7029. </div>
  7030. <div class="hidden-sm col-md-2" role="complementary">
  7031. <div class="sideaffix">
  7032. <div class="contribution">
  7033. <ul class="nav">
  7034. <li>
  7035. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
  7036. </li>
  7037. <li>
  7038. <a href="tig:tig/Terminal.Gui/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/handles.cs/#L32" class="contribution-link">View Source</a>
  7039. </li>
  7040. </ul>
  7041. </div>
  7042. <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
  7043. <h5>In This Article</h5>
  7044. <div></div>
  7045. </nav>
  7046. </div>
  7047. </div>
  7048. </div>
  7049. </div>
  7050. <footer>
  7051. <div class="grad-bottom"></div>
  7052. <div class="footer">
  7053. <div class="container">
  7054. <span class="pull-right">
  7055. <a href="#top">Back to top</a>
  7056. </span>
  7057. <span>Generated by <strong>DocFX</strong></span>
  7058. </div>
  7059. </div>
  7060. </footer>
  7061. </div>
  7062. <script type="text/javascript" src="../../styles/docfx.vendor.js"></script>
  7063. <script type="text/javascript" src="../../styles/docfx.js"></script>
  7064. <script type="text/javascript" src="../../styles/main.js"></script>
  7065. </body>
  7066. </html>