Unix.Terminal.Curses.html 314 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130
  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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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/gui.cs/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. <span class="small pull-right mobile-hide">
  6280. <span class="divider">|</span>
  6281. <a href="https://github.com/gui-cs/Terminal.Gui/new/develop/apidoc/new?filename=Unix_Terminal_Curses_set_escdelay_System_Int32_.md&amp;value=---%0Auid%3A%20Unix.Terminal.Curses.set_escdelay(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>
  6282. </span>
  6283. <span class="small pull-right mobile-hide">
  6284. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L333">View Source</a>
  6285. </span>
  6286. <a id="Unix_Terminal_Curses_set_escdelay_" data-uid="Unix.Terminal.Curses.set_escdelay*"></a>
  6287. <h4 id="Unix_Terminal_Curses_set_escdelay_System_Int32_" data-uid="Unix.Terminal.Curses.set_escdelay(System.Int32)">set_escdelay(Int32)</h4>
  6288. <div class="markdown level1 summary"></div>
  6289. <div class="markdown level1 conceptual"></div>
  6290. <h5 class="decalaration">Declaration</h5>
  6291. <div class="codewrapper">
  6292. <pre><code class="lang-csharp hljs">public static int set_escdelay(int size)</code></pre>
  6293. </div>
  6294. <h5 class="parameters">Parameters</h5>
  6295. <table class="table table-bordered table-striped table-condensed">
  6296. <thead>
  6297. <tr>
  6298. <th>Type</th>
  6299. <th>Name</th>
  6300. <th>Description</th>
  6301. </tr>
  6302. </thead>
  6303. <tbody>
  6304. <tr>
  6305. <td><span class="xref">System.Int32</span></td>
  6306. <td><span class="parametername">size</span></td>
  6307. <td></td>
  6308. </tr>
  6309. </tbody>
  6310. </table>
  6311. <h5 class="returns">Returns</h5>
  6312. <table class="table table-bordered table-striped table-condensed">
  6313. <thead>
  6314. <tr>
  6315. <th>Type</th>
  6316. <th>Description</th>
  6317. </tr>
  6318. </thead>
  6319. <tbody>
  6320. <tr>
  6321. <td><span class="xref">System.Int32</span></td>
  6322. <td></td>
  6323. </tr>
  6324. </tbody>
  6325. </table>
  6326. <a id="Unix_Terminal_Curses_setlocale_" data-uid="Unix.Terminal.Curses.setlocale*"></a>
  6327. <h4 id="Unix_Terminal_Curses_setlocale_System_Int32_System_String_" data-uid="Unix.Terminal.Curses.setlocale(System.Int32,System.String)">setlocale(Int32, String)</h4>
  6328. <div class="markdown level1 summary"></div>
  6329. <div class="markdown level1 conceptual"></div>
  6330. <h5 class="decalaration">Declaration</h5>
  6331. <div class="codewrapper">
  6332. <pre><code class="lang-csharp hljs">public static extern int setlocale(int cate, string locale)</code></pre>
  6333. </div>
  6334. <h5 class="parameters">Parameters</h5>
  6335. <table class="table table-bordered table-striped table-condensed">
  6336. <thead>
  6337. <tr>
  6338. <th>Type</th>
  6339. <th>Name</th>
  6340. <th>Description</th>
  6341. </tr>
  6342. </thead>
  6343. <tbody>
  6344. <tr>
  6345. <td><span class="xref">System.Int32</span></td>
  6346. <td><span class="parametername">cate</span></td>
  6347. <td></td>
  6348. </tr>
  6349. <tr>
  6350. <td><span class="xref">System.String</span></td>
  6351. <td><span class="parametername">locale</span></td>
  6352. <td></td>
  6353. </tr>
  6354. </tbody>
  6355. </table>
  6356. <h5 class="returns">Returns</h5>
  6357. <table class="table table-bordered table-striped table-condensed">
  6358. <thead>
  6359. <tr>
  6360. <th>Type</th>
  6361. <th>Description</th>
  6362. </tr>
  6363. </thead>
  6364. <tbody>
  6365. <tr>
  6366. <td><span class="xref">System.Int32</span></td>
  6367. <td></td>
  6368. </tr>
  6369. </tbody>
  6370. </table>
  6371. <span class="small pull-right mobile-hide">
  6372. <span class="divider">|</span>
  6373. <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>
  6374. </span>
  6375. <span class="small pull-right mobile-hide">
  6376. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L293">View Source</a>
  6377. </span>
  6378. <a id="Unix_Terminal_Curses_setscrreg_" data-uid="Unix.Terminal.Curses.setscrreg*"></a>
  6379. <h4 id="Unix_Terminal_Curses_setscrreg_System_Int32_System_Int32_" data-uid="Unix.Terminal.Curses.setscrreg(System.Int32,System.Int32)">setscrreg(Int32, Int32)</h4>
  6380. <div class="markdown level1 summary"></div>
  6381. <div class="markdown level1 conceptual"></div>
  6382. <h5 class="decalaration">Declaration</h5>
  6383. <div class="codewrapper">
  6384. <pre><code class="lang-csharp hljs">public static int setscrreg(int top, int bot)</code></pre>
  6385. </div>
  6386. <h5 class="parameters">Parameters</h5>
  6387. <table class="table table-bordered table-striped table-condensed">
  6388. <thead>
  6389. <tr>
  6390. <th>Type</th>
  6391. <th>Name</th>
  6392. <th>Description</th>
  6393. </tr>
  6394. </thead>
  6395. <tbody>
  6396. <tr>
  6397. <td><span class="xref">System.Int32</span></td>
  6398. <td><span class="parametername">top</span></td>
  6399. <td></td>
  6400. </tr>
  6401. <tr>
  6402. <td><span class="xref">System.Int32</span></td>
  6403. <td><span class="parametername">bot</span></td>
  6404. <td></td>
  6405. </tr>
  6406. </tbody>
  6407. </table>
  6408. <h5 class="returns">Returns</h5>
  6409. <table class="table table-bordered table-striped table-condensed">
  6410. <thead>
  6411. <tr>
  6412. <th>Type</th>
  6413. <th>Description</th>
  6414. </tr>
  6415. </thead>
  6416. <tbody>
  6417. <tr>
  6418. <td><span class="xref">System.Int32</span></td>
  6419. <td></td>
  6420. </tr>
  6421. </tbody>
  6422. </table>
  6423. <span class="small pull-right mobile-hide">
  6424. <span class="divider">|</span>
  6425. <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>
  6426. </span>
  6427. <span class="small pull-right mobile-hide">
  6428. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L315">View Source</a>
  6429. </span>
  6430. <a id="Unix_Terminal_Curses_start_color_" data-uid="Unix.Terminal.Curses.start_color*"></a>
  6431. <h4 id="Unix_Terminal_Curses_start_color" data-uid="Unix.Terminal.Curses.start_color">start_color()</h4>
  6432. <div class="markdown level1 summary"></div>
  6433. <div class="markdown level1 conceptual"></div>
  6434. <h5 class="decalaration">Declaration</h5>
  6435. <div class="codewrapper">
  6436. <pre><code class="lang-csharp hljs">public static int start_color()</code></pre>
  6437. </div>
  6438. <h5 class="returns">Returns</h5>
  6439. <table class="table table-bordered table-striped table-condensed">
  6440. <thead>
  6441. <tr>
  6442. <th>Type</th>
  6443. <th>Description</th>
  6444. </tr>
  6445. </thead>
  6446. <tbody>
  6447. <tr>
  6448. <td><span class="xref">System.Int32</span></td>
  6449. <td></td>
  6450. </tr>
  6451. </tbody>
  6452. </table>
  6453. <span class="small pull-right mobile-hide">
  6454. <span class="divider">|</span>
  6455. <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>
  6456. </span>
  6457. <span class="small pull-right mobile-hide">
  6458. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L257">View Source</a>
  6459. </span>
  6460. <a id="Unix_Terminal_Curses_StartColor_" data-uid="Unix.Terminal.Curses.StartColor*"></a>
  6461. <h4 id="Unix_Terminal_Curses_StartColor" data-uid="Unix.Terminal.Curses.StartColor">StartColor()</h4>
  6462. <div class="markdown level1 summary"></div>
  6463. <div class="markdown level1 conceptual"></div>
  6464. <h5 class="decalaration">Declaration</h5>
  6465. <div class="codewrapper">
  6466. <pre><code class="lang-csharp hljs">public static int StartColor()</code></pre>
  6467. </div>
  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_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>
  6486. </span>
  6487. <span class="small pull-right mobile-hide">
  6488. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L278">View Source</a>
  6489. </span>
  6490. <a id="Unix_Terminal_Curses_timeout_" data-uid="Unix.Terminal.Curses.timeout*"></a>
  6491. <h4 id="Unix_Terminal_Curses_timeout_System_Int32_" data-uid="Unix.Terminal.Curses.timeout(System.Int32)">timeout(Int32)</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 timeout(int delay)</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.Int32</span></td>
  6510. <td><span class="parametername">delay</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_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>
  6533. </span>
  6534. <span class="small pull-right mobile-hide">
  6535. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L277">View Source</a>
  6536. </span>
  6537. <a id="Unix_Terminal_Curses_typeahead_" data-uid="Unix.Terminal.Curses.typeahead*"></a>
  6538. <h4 id="Unix_Terminal_Curses_typeahead_System_IntPtr_" data-uid="Unix.Terminal.Curses.typeahead(System.IntPtr)">typeahead(IntPtr)</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 typeahead(IntPtr fd)</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.IntPtr</span></td>
  6557. <td><span class="parametername">fd</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_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>
  6580. </span>
  6581. <span class="small pull-right mobile-hide">
  6582. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L312">View Source</a>
  6583. </span>
  6584. <a id="Unix_Terminal_Curses_ungetch_" data-uid="Unix.Terminal.Curses.ungetch*"></a>
  6585. <h4 id="Unix_Terminal_Curses_ungetch_System_Int32_" data-uid="Unix.Terminal.Curses.ungetch(System.Int32)">ungetch(Int32)</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 int ungetch(int ch)</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><span class="xref">System.Int32</span></td>
  6604. <td><span class="parametername">ch</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.Int32</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_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>
  6627. </span>
  6628. <span class="small pull-right mobile-hide">
  6629. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L320">View Source</a>
  6630. </span>
  6631. <a id="Unix_Terminal_Curses_ungetmouse_" data-uid="Unix.Terminal.Curses.ungetmouse*"></a>
  6632. <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>
  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 uint ungetmouse(ref Curses.MouseEvent ev)</code></pre>
  6638. </div>
  6639. <h5 class="parameters">Parameters</h5>
  6640. <table class="table table-bordered table-striped table-condensed">
  6641. <thead>
  6642. <tr>
  6643. <th>Type</th>
  6644. <th>Name</th>
  6645. <th>Description</th>
  6646. </tr>
  6647. </thead>
  6648. <tbody>
  6649. <tr>
  6650. <td><a class="xref" href="Unix.Terminal.Curses.MouseEvent.html">Curses.MouseEvent</a></td>
  6651. <td><span class="parametername">ev</span></td>
  6652. <td></td>
  6653. </tr>
  6654. </tbody>
  6655. </table>
  6656. <h5 class="returns">Returns</h5>
  6657. <table class="table table-bordered table-striped table-condensed">
  6658. <thead>
  6659. <tr>
  6660. <th>Type</th>
  6661. <th>Description</th>
  6662. </tr>
  6663. </thead>
  6664. <tbody>
  6665. <tr>
  6666. <td><span class="xref">System.UInt32</span></td>
  6667. <td></td>
  6668. </tr>
  6669. </tbody>
  6670. </table>
  6671. <span class="small pull-right mobile-hide">
  6672. <span class="divider">|</span>
  6673. <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>
  6674. </span>
  6675. <span class="small pull-right mobile-hide">
  6676. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L317">View Source</a>
  6677. </span>
  6678. <a id="Unix_Terminal_Curses_use_default_colors_" data-uid="Unix.Terminal.Curses.use_default_colors*"></a>
  6679. <h4 id="Unix_Terminal_Curses_use_default_colors" data-uid="Unix.Terminal.Curses.use_default_colors">use_default_colors()</h4>
  6680. <div class="markdown level1 summary"></div>
  6681. <div class="markdown level1 conceptual"></div>
  6682. <h5 class="decalaration">Declaration</h5>
  6683. <div class="codewrapper">
  6684. <pre><code class="lang-csharp hljs">public static int use_default_colors()</code></pre>
  6685. </div>
  6686. <h5 class="returns">Returns</h5>
  6687. <table class="table table-bordered table-striped table-condensed">
  6688. <thead>
  6689. <tr>
  6690. <th>Type</th>
  6691. <th>Description</th>
  6692. </tr>
  6693. </thead>
  6694. <tbody>
  6695. <tr>
  6696. <td><span class="xref">System.Int32</span></td>
  6697. <td></td>
  6698. </tr>
  6699. </tbody>
  6700. </table>
  6701. <span class="small pull-right mobile-hide">
  6702. <span class="divider">|</span>
  6703. <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>
  6704. </span>
  6705. <span class="small pull-right mobile-hide">
  6706. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L325">View Source</a>
  6707. </span>
  6708. <a id="Unix_Terminal_Curses_use_env_" data-uid="Unix.Terminal.Curses.use_env*"></a>
  6709. <h4 id="Unix_Terminal_Curses_use_env_System_Boolean_" data-uid="Unix.Terminal.Curses.use_env(System.Boolean)">use_env(Boolean)</h4>
  6710. <div class="markdown level1 summary"></div>
  6711. <div class="markdown level1 conceptual"></div>
  6712. <h5 class="decalaration">Declaration</h5>
  6713. <div class="codewrapper">
  6714. <pre><code class="lang-csharp hljs">public static void use_env(bool f)</code></pre>
  6715. </div>
  6716. <h5 class="parameters">Parameters</h5>
  6717. <table class="table table-bordered table-striped table-condensed">
  6718. <thead>
  6719. <tr>
  6720. <th>Type</th>
  6721. <th>Name</th>
  6722. <th>Description</th>
  6723. </tr>
  6724. </thead>
  6725. <tbody>
  6726. <tr>
  6727. <td><span class="xref">System.Boolean</span></td>
  6728. <td><span class="parametername">f</span></td>
  6729. <td></td>
  6730. </tr>
  6731. </tbody>
  6732. </table>
  6733. <span class="small pull-right mobile-hide">
  6734. <span class="divider">|</span>
  6735. <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>
  6736. </span>
  6737. <span class="small pull-right mobile-hide">
  6738. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L260">View Source</a>
  6739. </span>
  6740. <a id="Unix_Terminal_Curses_UseDefaultColors_" data-uid="Unix.Terminal.Curses.UseDefaultColors*"></a>
  6741. <h4 id="Unix_Terminal_Curses_UseDefaultColors" data-uid="Unix.Terminal.Curses.UseDefaultColors">UseDefaultColors()</h4>
  6742. <div class="markdown level1 summary"></div>
  6743. <div class="markdown level1 conceptual"></div>
  6744. <h5 class="decalaration">Declaration</h5>
  6745. <div class="codewrapper">
  6746. <pre><code class="lang-csharp hljs">public static int UseDefaultColors()</code></pre>
  6747. </div>
  6748. <h5 class="returns">Returns</h5>
  6749. <table class="table table-bordered table-striped table-condensed">
  6750. <thead>
  6751. <tr>
  6752. <th>Type</th>
  6753. <th>Description</th>
  6754. </tr>
  6755. </thead>
  6756. <tbody>
  6757. <tr>
  6758. <td><span class="xref">System.Int32</span></td>
  6759. <td></td>
  6760. </tr>
  6761. </tbody>
  6762. </table>
  6763. <span class="small pull-right mobile-hide">
  6764. <span class="divider">|</span>
  6765. <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>
  6766. </span>
  6767. <span class="small pull-right mobile-hide">
  6768. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L306">View Source</a>
  6769. </span>
  6770. <a id="Unix_Terminal_Curses_waddch_" data-uid="Unix.Terminal.Curses.waddch*"></a>
  6771. <h4 id="Unix_Terminal_Curses_waddch_System_IntPtr_System_Int32_" data-uid="Unix.Terminal.Curses.waddch(System.IntPtr,System.Int32)">waddch(IntPtr, Int32)</h4>
  6772. <div class="markdown level1 summary"></div>
  6773. <div class="markdown level1 conceptual"></div>
  6774. <h5 class="decalaration">Declaration</h5>
  6775. <div class="codewrapper">
  6776. <pre><code class="lang-csharp hljs">public static int waddch(IntPtr win, int ch)</code></pre>
  6777. </div>
  6778. <h5 class="parameters">Parameters</h5>
  6779. <table class="table table-bordered table-striped table-condensed">
  6780. <thead>
  6781. <tr>
  6782. <th>Type</th>
  6783. <th>Name</th>
  6784. <th>Description</th>
  6785. </tr>
  6786. </thead>
  6787. <tbody>
  6788. <tr>
  6789. <td><span class="xref">System.IntPtr</span></td>
  6790. <td><span class="parametername">win</span></td>
  6791. <td></td>
  6792. </tr>
  6793. <tr>
  6794. <td><span class="xref">System.Int32</span></td>
  6795. <td><span class="parametername">ch</span></td>
  6796. <td></td>
  6797. </tr>
  6798. </tbody>
  6799. </table>
  6800. <h5 class="returns">Returns</h5>
  6801. <table class="table table-bordered table-striped table-condensed">
  6802. <thead>
  6803. <tr>
  6804. <th>Type</th>
  6805. <th>Description</th>
  6806. </tr>
  6807. </thead>
  6808. <tbody>
  6809. <tr>
  6810. <td><span class="xref">System.Int32</span></td>
  6811. <td></td>
  6812. </tr>
  6813. </tbody>
  6814. </table>
  6815. <span class="small pull-right mobile-hide">
  6816. <span class="divider">|</span>
  6817. <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>
  6818. </span>
  6819. <span class="small pull-right mobile-hide">
  6820. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L305">View Source</a>
  6821. </span>
  6822. <a id="Unix_Terminal_Curses_wmove_" data-uid="Unix.Terminal.Curses.wmove*"></a>
  6823. <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>
  6824. <div class="markdown level1 summary"></div>
  6825. <div class="markdown level1 conceptual"></div>
  6826. <h5 class="decalaration">Declaration</h5>
  6827. <div class="codewrapper">
  6828. <pre><code class="lang-csharp hljs">public static int wmove(IntPtr win, int line, int col)</code></pre>
  6829. </div>
  6830. <h5 class="parameters">Parameters</h5>
  6831. <table class="table table-bordered table-striped table-condensed">
  6832. <thead>
  6833. <tr>
  6834. <th>Type</th>
  6835. <th>Name</th>
  6836. <th>Description</th>
  6837. </tr>
  6838. </thead>
  6839. <tbody>
  6840. <tr>
  6841. <td><span class="xref">System.IntPtr</span></td>
  6842. <td><span class="parametername">win</span></td>
  6843. <td></td>
  6844. </tr>
  6845. <tr>
  6846. <td><span class="xref">System.Int32</span></td>
  6847. <td><span class="parametername">line</span></td>
  6848. <td></td>
  6849. </tr>
  6850. <tr>
  6851. <td><span class="xref">System.Int32</span></td>
  6852. <td><span class="parametername">col</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_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>
  6875. </span>
  6876. <span class="small pull-right mobile-hide">
  6877. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L299">View Source</a>
  6878. </span>
  6879. <a id="Unix_Terminal_Curses_wnoutrefresh_" data-uid="Unix.Terminal.Curses.wnoutrefresh*"></a>
  6880. <h4 id="Unix_Terminal_Curses_wnoutrefresh_System_IntPtr_" data-uid="Unix.Terminal.Curses.wnoutrefresh(System.IntPtr)">wnoutrefresh(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 wnoutrefresh(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_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>
  6922. </span>
  6923. <span class="small pull-right mobile-hide">
  6924. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L296">View Source</a>
  6925. </span>
  6926. <a id="Unix_Terminal_Curses_wrefresh_" data-uid="Unix.Terminal.Curses.wrefresh*"></a>
  6927. <h4 id="Unix_Terminal_Curses_wrefresh_System_IntPtr_" data-uid="Unix.Terminal.Curses.wrefresh(System.IntPtr)">wrefresh(IntPtr)</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 wrefresh(IntPtr win)</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. </tbody>
  6950. </table>
  6951. <h5 class="returns">Returns</h5>
  6952. <table class="table table-bordered table-striped table-condensed">
  6953. <thead>
  6954. <tr>
  6955. <th>Type</th>
  6956. <th>Description</th>
  6957. </tr>
  6958. </thead>
  6959. <tbody>
  6960. <tr>
  6961. <td><span class="xref">System.Int32</span></td>
  6962. <td></td>
  6963. </tr>
  6964. </tbody>
  6965. </table>
  6966. <span class="small pull-right mobile-hide">
  6967. <span class="divider">|</span>
  6968. <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>
  6969. </span>
  6970. <span class="small pull-right mobile-hide">
  6971. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L289">View Source</a>
  6972. </span>
  6973. <a id="Unix_Terminal_Curses_wsetscrreg_" data-uid="Unix.Terminal.Curses.wsetscrreg*"></a>
  6974. <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>
  6975. <div class="markdown level1 summary"></div>
  6976. <div class="markdown level1 conceptual"></div>
  6977. <h5 class="decalaration">Declaration</h5>
  6978. <div class="codewrapper">
  6979. <pre><code class="lang-csharp hljs">public static int wsetscrreg(IntPtr win, int top, int bot)</code></pre>
  6980. </div>
  6981. <h5 class="parameters">Parameters</h5>
  6982. <table class="table table-bordered table-striped table-condensed">
  6983. <thead>
  6984. <tr>
  6985. <th>Type</th>
  6986. <th>Name</th>
  6987. <th>Description</th>
  6988. </tr>
  6989. </thead>
  6990. <tbody>
  6991. <tr>
  6992. <td><span class="xref">System.IntPtr</span></td>
  6993. <td><span class="parametername">win</span></td>
  6994. <td></td>
  6995. </tr>
  6996. <tr>
  6997. <td><span class="xref">System.Int32</span></td>
  6998. <td><span class="parametername">top</span></td>
  6999. <td></td>
  7000. </tr>
  7001. <tr>
  7002. <td><span class="xref">System.Int32</span></td>
  7003. <td><span class="parametername">bot</span></td>
  7004. <td></td>
  7005. </tr>
  7006. </tbody>
  7007. </table>
  7008. <h5 class="returns">Returns</h5>
  7009. <table class="table table-bordered table-striped table-condensed">
  7010. <thead>
  7011. <tr>
  7012. <th>Type</th>
  7013. <th>Description</th>
  7014. </tr>
  7015. </thead>
  7016. <tbody>
  7017. <tr>
  7018. <td><span class="xref">System.Int32</span></td>
  7019. <td></td>
  7020. </tr>
  7021. </tbody>
  7022. </table>
  7023. <span class="small pull-right mobile-hide">
  7024. <span class="divider">|</span>
  7025. <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>
  7026. </span>
  7027. <span class="small pull-right mobile-hide">
  7028. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs/#L279">View Source</a>
  7029. </span>
  7030. <a id="Unix_Terminal_Curses_wtimeout_" data-uid="Unix.Terminal.Curses.wtimeout*"></a>
  7031. <h4 id="Unix_Terminal_Curses_wtimeout_System_IntPtr_System_Int32_" data-uid="Unix.Terminal.Curses.wtimeout(System.IntPtr,System.Int32)">wtimeout(IntPtr, Int32)</h4>
  7032. <div class="markdown level1 summary"></div>
  7033. <div class="markdown level1 conceptual"></div>
  7034. <h5 class="decalaration">Declaration</h5>
  7035. <div class="codewrapper">
  7036. <pre><code class="lang-csharp hljs">public static int wtimeout(IntPtr win, int delay)</code></pre>
  7037. </div>
  7038. <h5 class="parameters">Parameters</h5>
  7039. <table class="table table-bordered table-striped table-condensed">
  7040. <thead>
  7041. <tr>
  7042. <th>Type</th>
  7043. <th>Name</th>
  7044. <th>Description</th>
  7045. </tr>
  7046. </thead>
  7047. <tbody>
  7048. <tr>
  7049. <td><span class="xref">System.IntPtr</span></td>
  7050. <td><span class="parametername">win</span></td>
  7051. <td></td>
  7052. </tr>
  7053. <tr>
  7054. <td><span class="xref">System.Int32</span></td>
  7055. <td><span class="parametername">delay</span></td>
  7056. <td></td>
  7057. </tr>
  7058. </tbody>
  7059. </table>
  7060. <h5 class="returns">Returns</h5>
  7061. <table class="table table-bordered table-striped table-condensed">
  7062. <thead>
  7063. <tr>
  7064. <th>Type</th>
  7065. <th>Description</th>
  7066. </tr>
  7067. </thead>
  7068. <tbody>
  7069. <tr>
  7070. <td><span class="xref">System.Int32</span></td>
  7071. <td></td>
  7072. </tr>
  7073. </tbody>
  7074. </table>
  7075. </article>
  7076. </div>
  7077. <div class="hidden-sm col-md-2" role="complementary">
  7078. <div class="sideaffix">
  7079. <div class="contribution">
  7080. <ul class="nav">
  7081. <li>
  7082. <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>
  7083. </li>
  7084. <li>
  7085. <a href="tig:tig/gui.cs/blob/main/Terminal.Gui/ConsoleDrivers/CursesDriver/handles.cs/#L32" class="contribution-link">View Source</a>
  7086. </li>
  7087. </ul>
  7088. </div>
  7089. <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
  7090. <h5>In This Article</h5>
  7091. <div></div>
  7092. </nav>
  7093. </div>
  7094. </div>
  7095. </div>
  7096. </div>
  7097. <footer>
  7098. <div class="grad-bottom"></div>
  7099. <div class="footer">
  7100. <div class="container">
  7101. <span class="pull-right">
  7102. <a href="#top">Back to top</a>
  7103. </span>
  7104. <span>Generated by <strong>DocFX</strong></span>
  7105. </div>
  7106. </div>
  7107. </footer>
  7108. </div>
  7109. <script type="text/javascript" src="../../styles/docfx.vendor.js"></script>
  7110. <script type="text/javascript" src="../../styles/docfx.js"></script>
  7111. <script type="text/javascript" src="../../styles/main.js"></script>
  7112. </body>
  7113. </html>