DevExpress.XtraLayout.v21.2.xml 375 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <assembly>
  4. <name>DevExpress.XtraLayout.v21.2</name>
  5. </assembly>
  6. <members>
  7. <member name="N:DevExpress.XtraDataLayout">
  8. <summary>
  9. <para>Contains classes that implement the <see cref="T:DevExpress.XtraDataLayout.DataLayoutControl"/> control functionality.</para>
  10. </summary>
  11. </member>
  12. <member name="T:DevExpress.XtraDataLayout.DataLayoutControl">
  13. <summary>
  14. <para>Creates and maintains a consistent layout of controls for editing a specific data source’s fields. See Data Layout Control.</para>
  15. </summary>
  16. </member>
  17. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.#ctor">
  18. <summary>
  19. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraDataLayout.DataLayoutControl"/> class.</para>
  20. </summary>
  21. </member>
  22. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.AddToHiddenItems(DevExpress.XtraLayout.BaseLayoutItem)">
  23. <summary>
  24. <para>Adds a layout item to the control and hides it.</para>
  25. </summary>
  26. <param name="item">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant that represents the layout item to be added to the control and hidden.</param>
  27. </member>
  28. <member name="P:DevExpress.XtraDataLayout.DataLayoutControl.AllowGeneratingCollectionProperties">
  29. <summary>
  30. <para>Gets or sets whether layout items that correspond to IList properties will be added to the generated layout. By default, these layout items will contain embedded <see cref="T:DevExpress.XtraGrid.GridControl"/>s to display and edit IList object contents.</para>
  31. </summary>
  32. <value>True to generate layout items for IList properties; Default or False to exclude these properties from the generated layout.</value>
  33. </member>
  34. <member name="P:DevExpress.XtraDataLayout.DataLayoutControl.AllowGeneratingNestedGroups">
  35. <summary>
  36. <para>Gets or sets whether nested layout groups are generated to present fields of business object properties.</para>
  37. </summary>
  38. <value>True, if nested groups are generated for business object properties; Default or False if nested groups are not generated.</value>
  39. </member>
  40. <member name="P:DevExpress.XtraDataLayout.DataLayoutControl.AutoRetrieveFields">
  41. <summary>
  42. <para>Gets or sets whether a layout is re-built each time a new value is assigned to the <see cref="P:DevExpress.XtraDataLayout.DataLayoutControl.DataSource"/> property.</para>
  43. </summary>
  44. <value>true if a layout is re-built each time a new value is assigned to the <see cref="P:DevExpress.XtraDataLayout.DataLayoutControl.DataSource"/> property; otherwise, false.</value>
  45. </member>
  46. <member name="P:DevExpress.XtraDataLayout.DataLayoutControl.ControlsManager">
  47. <summary>
  48. <para>Gets an object that identifies which editors can be used to edit data of specific types.</para>
  49. </summary>
  50. <value>A DevExpress.XtraDataLayout.ControlsManager object.</value>
  51. </member>
  52. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.CreateLayoutCreator">
  53. <summary>
  54. <para>For internal use.</para>
  55. </summary>
  56. <returns></returns>
  57. </member>
  58. <member name="P:DevExpress.XtraDataLayout.DataLayoutControl.CurrentRecord">
  59. <summary>
  60. <para>Gets an object that specifies the current data record.</para>
  61. </summary>
  62. <value>An object that specifies the current data record.</value>
  63. </member>
  64. <member name="E:DevExpress.XtraDataLayout.DataLayoutControl.CurrentRecordChanged">
  65. <summary>
  66. <para>Fires when the current position in the bound data source changes.</para>
  67. </summary>
  68. </member>
  69. <member name="P:DevExpress.XtraDataLayout.DataLayoutControl.CurrentRecordPosition">
  70. <summary>
  71. <para>Gets or sets the index of the data record to be displayed in the control.</para>
  72. </summary>
  73. <value>An integer value that specifies the index of the data record to be displayed in the control.</value>
  74. </member>
  75. <member name="P:DevExpress.XtraDataLayout.DataLayoutControl.DataMember">
  76. <summary>
  77. <para>Gets or sets the data source member which supplies data to the <see cref="T:DevExpress.XtraDataLayout.DataLayoutControl"/>‘s editors.</para>
  78. </summary>
  79. <value>A string value representing the data source member.</value>
  80. </member>
  81. <member name="P:DevExpress.XtraDataLayout.DataLayoutControl.DataSource">
  82. <summary>
  83. <para>Gets or sets the data source providing data for editors that are created by the <see cref="T:DevExpress.XtraDataLayout.DataLayoutControl"/> control.</para>
  84. </summary>
  85. <value>The object used as the data source.</value>
  86. </member>
  87. <member name="E:DevExpress.XtraDataLayout.DataLayoutControl.FieldRetrieved">
  88. <summary>
  89. <para>Fires after a layout is generated at runtime. Allows you to customize settings of individual generated layout items and editors.</para>
  90. </summary>
  91. </member>
  92. <member name="E:DevExpress.XtraDataLayout.DataLayoutControl.FieldRetrieving">
  93. <summary>
  94. <para>Fires before a layout item with an embedded editor is generated and thus, prior to the editor’s data binding. It allows you to customize the type of editor to be generated, modify editor binding settings and hide certain editors.</para>
  95. </summary>
  96. </member>
  97. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.ForceInitialize">
  98. <summary>
  99. <para>Forces the control to finish its initialization.</para>
  100. </summary>
  101. </member>
  102. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.GetControlByFieldName(System.String)">
  103. <summary>
  104. <para>Returns the nested control that is bound to the specified field.</para>
  105. </summary>
  106. <param name="fieldName">The name of the field to which the target control is bound.</param>
  107. <returns>The control bound to the specified field. The null value if no control is bound to this field.</returns>
  108. </member>
  109. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.GetCurrentRecordFieldValue(System.String)">
  110. <summary>
  111. <para>Returns the current record’s cell value in the specified data field.</para>
  112. </summary>
  113. <param name="fieldName">A string value that specifies the data field name.</param>
  114. <returns>An object that specifies the cell value.</returns>
  115. </member>
  116. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.GetItemByFieldName(System.String)">
  117. <summary>
  118. <para>Returns the layout item whose control (<see cref="P:DevExpress.XtraLayout.LayoutControlItem.Control"/>) is bound to the specified field.</para>
  119. </summary>
  120. <param name="fieldName">The name of the field to which the target layout item’s control is bound.</param>
  121. <returns>The layout item whose control (<see cref="P:DevExpress.XtraLayout.LayoutControlItem.Control"/>) is bound to the specified field. The null value if no control is found.</returns>
  122. </member>
  123. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.GetLayoutElementsBindingsInfo">
  124. <summary>
  125. <para>Returns information on the layout column count and binding settings of public properties in the data source.</para>
  126. </summary>
  127. <returns>A value that specifies information on layout element binding settings.</returns>
  128. </member>
  129. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.GetLayoutElementsBindingsInfo(System.Collections.ICollection)">
  130. <summary>
  131. <para>Returns the layout element binding information from the specified PropertyDescriptor collection.</para>
  132. </summary>
  133. <param name="propertyDescriptorCollection">A collection of PropertyDescriptor objects.</param>
  134. <returns>A value that specifies the layout element binding information.</returns>
  135. </member>
  136. <member name="P:DevExpress.XtraDataLayout.DataLayoutControl.RecordCount">
  137. <summary>
  138. <para>Returns the number of records in the bound data source.</para>
  139. </summary>
  140. <value>The number of records in the bound data source.</value>
  141. </member>
  142. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.RetrieveFields">
  143. <summary>
  144. <para>Creates layout items for all public fields in the bound data source.</para>
  145. </summary>
  146. </member>
  147. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.RetrieveFields(DevExpress.XtraDataLayout.RetrieveFieldsParameters)">
  148. <summary>
  149. <para>Creates layout items for all public fields in the bound data source and allows you to customize general binding and layout settings.</para>
  150. </summary>
  151. <param name="parameters">An object that provides additional binding and layout customization options.</param>
  152. </member>
  153. <member name="M:DevExpress.XtraDataLayout.DataLayoutControl.SetCurrentRecordFieldValue(System.String,System.Object)">
  154. <summary>
  155. <para>Assigns the specified value to the current record’s specified field.</para>
  156. </summary>
  157. <param name="fieldName">A string value that specifies the field name.</param>
  158. <param name="value">An object that specifies the assigned value.</param>
  159. </member>
  160. <member name="P:DevExpress.XtraDataLayout.DataLayoutControl.Site">
  161. <summary>
  162. <para>Gets or sets the site associated with the current <see cref="T:DevExpress.XtraDataLayout.DataLayoutControl"/>.</para>
  163. </summary>
  164. <value>A System.ComponentModel.ISite object.</value>
  165. </member>
  166. <member name="T:DevExpress.XtraDataLayout.FieldRetrievedEventArgs">
  167. <summary>
  168. <para>Provides data for the <see cref="E:DevExpress.XtraDataLayout.DataLayoutControl.FieldRetrieved"/> event.</para>
  169. </summary>
  170. </member>
  171. <member name="M:DevExpress.XtraDataLayout.FieldRetrievedEventArgs.#ctor">
  172. <summary>
  173. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraDataLayout.FieldRetrievedEventArgs"/> class.</para>
  174. </summary>
  175. </member>
  176. <member name="P:DevExpress.XtraDataLayout.FieldRetrievedEventArgs.Control">
  177. <summary>
  178. <para>Gets the control embedded in the layout item.</para>
  179. </summary>
  180. <value>The control embedded in the layout item.</value>
  181. </member>
  182. <member name="P:DevExpress.XtraDataLayout.FieldRetrievedEventArgs.FieldName">
  183. <summary>
  184. <para>Gets the data source field to which the editor is bound.</para>
  185. </summary>
  186. <value>The bound data source field.</value>
  187. </member>
  188. <member name="P:DevExpress.XtraDataLayout.FieldRetrievedEventArgs.Item">
  189. <summary>
  190. <para>Gets the created Layout Item.</para>
  191. </summary>
  192. <value>The created layout item.</value>
  193. </member>
  194. <member name="P:DevExpress.XtraDataLayout.FieldRetrievedEventArgs.RepositoryItem">
  195. <summary>
  196. <para>Gets a <see cref="T:DevExpress.XtraEditors.Repository.RepositoryItem"/> descendant that corresponds to the created editor. This property is in effect when a DevExpress editor (<see cref="T:DevExpress.XtraEditors.BaseEdit"/> descendant) is embedded in the created layout item.</para>
  197. </summary>
  198. <value>The Repository Item that corresponds to a DevExpress editor embedded in the created layout item.</value>
  199. </member>
  200. <member name="T:DevExpress.XtraDataLayout.FieldRetrievingEventArgs">
  201. <summary>
  202. <para>Provides data for the <see cref="E:DevExpress.XtraDataLayout.DataLayoutControl.FieldRetrieving"/> event.</para>
  203. </summary>
  204. </member>
  205. <member name="M:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.#ctor">
  206. <summary>
  207. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraDataLayout.FieldRetrievingEventArgs"/> class.</para>
  208. </summary>
  209. </member>
  210. <member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.DataSourceNullValue">
  211. <summary>
  212. <para>Gets or sets the value used to initialize the Binding.DataSourceNullValue property for the auto-generated editor.</para>
  213. </summary>
  214. <value>The value used to initialize the Binding.DataSourceNullValue property of the auto-generated editor.</value>
  215. </member>
  216. <member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.DataSourceUpdateMode">
  217. <summary>
  218. <para>Gets or sets the value used to initialize the Binding.DataSourceUpdateMode property for the auto-generated editor.</para>
  219. </summary>
  220. <value>The value used to initialize the Binding.DataSourceUpdateMode property of the auto-generated editor.</value>
  221. </member>
  222. <member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.DataType">
  223. <summary>
  224. <para>Gets the bound field’s data type.</para>
  225. </summary>
  226. <value>The bound field’s data type.</value>
  227. </member>
  228. <member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.EditorType">
  229. <summary>
  230. <para>Gets or sets the type of the editor to be created.</para>
  231. </summary>
  232. <value>The type of the editor to be created.</value>
  233. </member>
  234. <member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.FieldName">
  235. <summary>
  236. <para>Gets the data source field to which the editor is bound.</para>
  237. </summary>
  238. <value>The bound data source field.</value>
  239. </member>
  240. <member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.Handled">
  241. <summary>
  242. <para>Gets or sets whether the event is handled and the customized event parameters must be applied after the event handler is completed.</para>
  243. </summary>
  244. <value>true, to apply the customized event parameters after your event handler is completed; false, to discard the customizations made via the event.</value>
  245. </member>
  246. <member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.PropertyName">
  247. <summary>
  248. <para>Gets or sets the name of the editor’s property to which the data source field is bound.</para>
  249. </summary>
  250. <value>The name of the editor’s property to which the data source field is bound.</value>
  251. </member>
  252. <member name="P:DevExpress.XtraDataLayout.FieldRetrievingEventArgs.Visible">
  253. <summary>
  254. <para>Gets or sets the layout item’s (editor’s) visibility.</para>
  255. </summary>
  256. <value>The layout item’s (editor’s) visibility.</value>
  257. </member>
  258. <member name="T:DevExpress.XtraDataLayout.RetrieveFieldsParameters">
  259. <summary>
  260. <para>Contains parameters for the DataLayoutControl.RetrieveFields method.</para>
  261. </summary>
  262. </member>
  263. <member name="M:DevExpress.XtraDataLayout.RetrieveFieldsParameters.#ctor">
  264. <summary>
  265. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraDataLayout.RetrieveFieldsParameters"/> class with the specified settings.</para>
  266. </summary>
  267. </member>
  268. <member name="P:DevExpress.XtraDataLayout.RetrieveFieldsParameters.ColumnCount">
  269. <summary>
  270. <para>Gets or sets the number of columns in the layout that will be generated.</para>
  271. </summary>
  272. <value>An integer value that specifies the number of columns in the layout that will be generated.</value>
  273. </member>
  274. <member name="P:DevExpress.XtraDataLayout.RetrieveFieldsParameters.CustomListParameters">
  275. <summary>
  276. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  277. </summary>
  278. <value></value>
  279. </member>
  280. <member name="P:DevExpress.XtraDataLayout.RetrieveFieldsParameters.DataSourceNullValue">
  281. <summary>
  282. <para>Gets or sets the default value used to initialize the Binding.DataSourceNullValue property for all auto-generated editors.</para>
  283. <para>This property identifies the value to be stored in the data source if the editor’s value is null or empty.</para>
  284. </summary>
  285. <value>The default value used to initialize the Binding.DataSourceNullValue property of all auto-generated editors.</value>
  286. </member>
  287. <member name="P:DevExpress.XtraDataLayout.RetrieveFieldsParameters.DataSourceUpdateMode">
  288. <summary>
  289. <para>Gets or sets the default value used to initialize the Binding.DataSourceUpdateMode property for all auto-generated editors.</para>
  290. <para></para>
  291. <para>This property indicates when changes to the bound editor property are propagated to the data source.</para>
  292. </summary>
  293. <value>The default value used to initialize the Binding.DataSourceUpdateMode property of all auto-generated editors.</value>
  294. </member>
  295. <member name="N:DevExpress.XtraLayout">
  296. <summary>
  297. <para>Contains the classes that encapsulate the Layout Control’s main functionality.</para>
  298. </summary>
  299. </member>
  300. <member name="T:DevExpress.XtraLayout.AutoAlignMode">
  301. <summary>
  302. <para>Obsolete. Instead use the options provided by the <see cref="T:DevExpress.XtraLayout.TextAlignMode"/> class.</para>
  303. </summary>
  304. </member>
  305. <member name="F:DevExpress.XtraLayout.AutoAlignMode.AlignGlobal">
  306. <summary>
  307. <para>This member is obsolete. Controls are aligned throughout the LayoutControl.</para>
  308. </summary>
  309. </member>
  310. <member name="F:DevExpress.XtraLayout.AutoAlignMode.AlignLocal">
  311. <summary>
  312. <para>This member is obsolete. Controls are aligned independently within layout groups.</para>
  313. </summary>
  314. </member>
  315. <member name="F:DevExpress.XtraLayout.AutoAlignMode.AutoSize">
  316. <summary>
  317. <para>This member is obsolete. The auto-size feature is enabled.</para>
  318. </summary>
  319. </member>
  320. <member name="T:DevExpress.XtraLayout.AutoSizeModes">
  321. <summary>
  322. <para>Enumerates the options that specify how a <see cref="T:DevExpress.XtraLayout.LayoutControl"/>‘s size is changed when it is positioned within another LayoutControl.</para>
  323. </summary>
  324. </member>
  325. <member name="F:DevExpress.XtraLayout.AutoSizeModes.ResizeToMinSize">
  326. <summary>
  327. <para>The embedded LayoutControl’s size is fixed and is equal to its minimum size.</para>
  328. </summary>
  329. </member>
  330. <member name="F:DevExpress.XtraLayout.AutoSizeModes.UseMinAndMaxSize">
  331. <summary>
  332. <para>The embedded LayoutControl’s size can vary between its minimum and maximum sizes.</para>
  333. </summary>
  334. </member>
  335. <member name="F:DevExpress.XtraLayout.AutoSizeModes.UseMinSizeAndGrow">
  336. <summary>
  337. <para>The embedded LayoutControl’s minimum size is restricted; while its maximum size is unlimited.</para>
  338. </summary>
  339. </member>
  340. <member name="T:DevExpress.XtraLayout.BaseLayoutItem">
  341. <summary>
  342. <para>Represents the base class for layout items.</para>
  343. </summary>
  344. </member>
  345. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.Accept(DevExpress.XtraLayout.Utils.BaseVisitor)">
  346. <summary>
  347. <para>Invokes the Visit method of the specified visitor for each layout item that belongs to the current layout item.</para>
  348. </summary>
  349. <param name="visitor">A DevExpress.XtraLayout.Utils.BaseVisitor class descendant.</param>
  350. </member>
  351. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.AccessibleDescription">
  352. <summary>
  353. <para>Gets or sets the object’s description used by accessibility client applications.</para>
  354. </summary>
  355. <value>The object’s description used by accessibility client applications.</value>
  356. </member>
  357. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.AccessibleName">
  358. <summary>
  359. <para>Gets or sets the object’s name used by accessibility client applications.</para>
  360. </summary>
  361. <value>The object’s name used by accessibility client applications.</value>
  362. </member>
  363. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.AccessibleRole">
  364. <summary />
  365. <value></value>
  366. </member>
  367. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.AllowHide">
  368. <summary>
  369. <para>Gets or sets whether the item can be hidden to the Customization Form.</para>
  370. </summary>
  371. <value>true if the item can be hidden to the Customization Form; otherwise, false.</value>
  372. </member>
  373. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.AppearanceItemCaption">
  374. <summary>
  375. <para>Gets the appearance settings used to paint a layout item’s caption.</para>
  376. </summary>
  377. <value>An <see cref="T:DevExpress.Utils.AppearanceObject"/> object which provides the appearance settings used to paint the layout item’s caption.</value>
  378. </member>
  379. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.Assign(DevExpress.XtraLayout.BaseLayoutItem)">
  380. <summary>
  381. <para>Assigns the specified object’s property values to the current object’s corresponding properties.</para>
  382. </summary>
  383. <param name="item">The object whose property values to assign to the current object’s corresponding properties.</param>
  384. </member>
  385. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.BeginInit">
  386. <summary>
  387. <para>Starts the component’s initialization.</para>
  388. </summary>
  389. </member>
  390. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.BestFitWeight">
  391. <summary>
  392. <para>Gets or sets the width of the current <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> relative to other items’ width after the <see cref="M:DevExpress.XtraLayout.LayoutControl.BestFit"/> method has been called.</para>
  393. </summary>
  394. <value>An Integer value that is the proportion of the current <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/>‘s width to other items’ width after the <see cref="M:DevExpress.XtraLayout.LayoutControl.BestFit"/> method has been called.</value>
  395. </member>
  396. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.BindingContext">
  397. <summary>
  398. <para>Gets or sets the BindingContext for the item.</para>
  399. </summary>
  400. <value>A BindingContext for the item.</value>
  401. </member>
  402. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Bounds">
  403. <summary>
  404. <para>Gets the layout item’s bounding rectangle.</para>
  405. </summary>
  406. <value>A <see cref="T:System.Drawing.Rectangle"/> structure that specifies the bounding rectangle.</value>
  407. </member>
  408. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.CanMove(DevExpress.XtraLayout.Customization.LayoutItemDragController)">
  409. <summary>
  410. <para>Returns whether the layout item can be moved to a specific position.</para>
  411. </summary>
  412. <param name="controller">A <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object whose settings determine the position to which the layout item should be moved.</param>
  413. <returns>true if the layout item can be moved to a specific position; otherwise, false.</returns>
  414. </member>
  415. <member name="E:DevExpress.XtraLayout.BaseLayoutItem.Click">
  416. <summary>
  417. <para>Fires when the current item is clicked.</para>
  418. </summary>
  419. </member>
  420. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.Clone(DevExpress.XtraLayout.LayoutGroup,DevExpress.XtraLayout.ILayoutControl)">
  421. <summary>
  422. <para>Creates a copy of the current layout item.</para>
  423. </summary>
  424. <param name="cloneParent">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object that represents the group to which the created layout item belongs.</param>
  425. <param name="cloneOwner">An object that implements the DevExpress.XtraLayout.ILayoutControl interface, and owns the created layout item.</param>
  426. <returns>A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object that represents an exact copy of the current <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> instance.</returns>
  427. </member>
  428. <member name="E:DevExpress.XtraLayout.BaseLayoutItem.CustomDraw">
  429. <summary>
  430. <para>Allows you to custom paint the current item.</para>
  431. </summary>
  432. </member>
  433. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.CustomizationFormText">
  434. <summary>
  435. <para>Gets or sets the layout item’s caption within the Customization Form.</para>
  436. </summary>
  437. <value>A string value that specifies the layout item’s caption within the Customization Form.</value>
  438. </member>
  439. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.DataBindings">
  440. <summary>
  441. <para>Gets the data bindings for the layout item.</para>
  442. </summary>
  443. <value>A ControlBindingsCollection that contains the Binding objects for the item</value>
  444. </member>
  445. <member name="E:DevExpress.XtraLayout.BaseLayoutItem.DoubleClick">
  446. <summary>
  447. <para>Fires when the current item is clicked.</para>
  448. </summary>
  449. </member>
  450. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.EndInit">
  451. <summary>
  452. <para>Finishes the component’s initialization.</para>
  453. </summary>
  454. </member>
  455. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Expanded">
  456. <summary>
  457. <para>Not supported.</para>
  458. </summary>
  459. <value>Always True.</value>
  460. </member>
  461. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.GetDefaultText">
  462. <summary>
  463. <para>Gets the default value of the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</para>
  464. </summary>
  465. <returns>A string that specifies the default value of the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</returns>
  466. </member>
  467. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.GetDisplayText">
  468. <summary>
  469. <para>Returns the <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/>‘s <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> value without HTML tags and hotkey prefixes (the “&amp;” symbol).</para>
  470. </summary>
  471. <returns>The <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/>‘s display text.</returns>
  472. </member>
  473. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.GetPaintAppearanceItemCaptionByState(DevExpress.Utils.Drawing.ObjectState)">
  474. <summary />
  475. <param name="objectState"></param>
  476. <returns></returns>
  477. </member>
  478. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Height">
  479. <summary>
  480. <para>Gets or sets the layout item’s height.</para>
  481. </summary>
  482. <value>An integer that specifies the layout item’s height.</value>
  483. </member>
  484. <member name="E:DevExpress.XtraLayout.BaseLayoutItem.Hidden">
  485. <summary>
  486. <para>Fires after an item has been hidden.</para>
  487. </summary>
  488. </member>
  489. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.HideToCustomization">
  490. <summary>
  491. <para>Hides the item to the Customization Form.</para>
  492. </summary>
  493. </member>
  494. <member name="E:DevExpress.XtraLayout.BaseLayoutItem.Hiding">
  495. <summary>
  496. <para>Fires when the item is about to be hidden (when dragging the item and dropping it onto on the Customization Form).</para>
  497. </summary>
  498. </member>
  499. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.Invalidate">
  500. <summary>
  501. <para>Invalidates the region which is occupied by the layout item.</para>
  502. </summary>
  503. </member>
  504. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.IsDisposing">
  505. <summary>
  506. <para>Gets whether the current item is being disposed of.</para>
  507. </summary>
  508. <value>true if the current item is being disposed of; otherwise, false.</value>
  509. </member>
  510. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.IsGroup">
  511. <summary>
  512. <para>Gets whether the current layout item represents a Layout Group.</para>
  513. </summary>
  514. <value>true if the layout item represents a Layout Group; otherwise, false.</value>
  515. </member>
  516. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.IsHidden">
  517. <summary>
  518. <para>Gets whether the layout item is hidden.</para>
  519. </summary>
  520. <value>true if the layout item is hidden; otheriwse, false.</value>
  521. </member>
  522. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.IsUpdateLocked">
  523. <summary>
  524. <para>Gets whether the layout item has been locked for updating.</para>
  525. </summary>
  526. <value>true if the layout item is locked; otherwise, false.</value>
  527. </member>
  528. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Location">
  529. <summary>
  530. <para>Gets or sets the coordinates of the layout item’s top left corner.</para>
  531. </summary>
  532. <value>A <see cref="T:System.Drawing.Point"/> structure that specifies the coordinates of the layout item’s top left corner.</value>
  533. </member>
  534. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.MaxSize">
  535. <summary>
  536. <para>Gets or sets the maximum size of the layout item.</para>
  537. </summary>
  538. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the item’s maximum width and height.</value>
  539. </member>
  540. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.MinSize">
  541. <summary>
  542. <para>Gets or sets the item’s minimum size.</para>
  543. </summary>
  544. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the item’s minimum width and height.</value>
  545. </member>
  546. <member name="E:DevExpress.XtraLayout.BaseLayoutItem.MouseDown">
  547. <summary>
  548. <para>Occurs when the mouse pointer is over a layout item and a mouse button is pressed.</para>
  549. </summary>
  550. </member>
  551. <member name="E:DevExpress.XtraLayout.BaseLayoutItem.MouseUp">
  552. <summary>
  553. <para>Occurs when the mouse button is released if it was pressed within a layout item.</para>
  554. </summary>
  555. </member>
  556. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.Move(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  557. <summary>
  558. <para>Moves the item to the specified visual position within the LayoutControl.</para>
  559. </summary>
  560. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant that represents the layout item within the LayoutControl.</param>
  561. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified baseItem.</param>
  562. <returns>true if the item has been successfully moved to a new position; otherwise, false.</returns>
  563. </member>
  564. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.Move(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType,DevExpress.XtraLayout.Utils.MoveType)">
  565. <summary>
  566. <para>Moves the item to the specified visual position within the LayoutControl.</para>
  567. </summary>
  568. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant that represents the layout item within the LayoutControl.</param>
  569. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified baseItem.</param>
  570. <param name="moveType">A <see cref="T:DevExpress.XtraLayout.Utils.MoveType"/> enumeration value that specifies how a layout item is inserted to another position.</param>
  571. <returns>true if the item has been successfully moved to a new position; otherwise, false.</returns>
  572. </member>
  573. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.Move(DevExpress.XtraLayout.Customization.LayoutItemDragController)">
  574. <summary>
  575. <para>Moves the item to the specified position within the LayoutControl.</para>
  576. </summary>
  577. <param name="controller">A <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object whose settings determine the position to which the layout item should be moved.</param>
  578. <returns>true if the item has been successfully moved to a new position; otherwise, false.</returns>
  579. </member>
  580. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Name">
  581. <summary>
  582. <para>Gets or sets the layout item’s name.</para>
  583. </summary>
  584. <value>A <see cref="T:System.String"/> value that specifies the item’s name.</value>
  585. </member>
  586. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsCustomization">
  587. <summary>
  588. <para>Contains options that specify which operations can be performed on the layout item at runtime.</para>
  589. </summary>
  590. <value>A <see cref="T:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions"/> object that contains the corresponding options.</value>
  591. </member>
  592. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsIconToolTip">
  593. <summary>
  594. <para>This member is obsolete. Use the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsToolTip"/> property instead.</para>
  595. </summary>
  596. <value>A BaseLayoutItemToolTipOptions object.</value>
  597. </member>
  598. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsItemToolTip">
  599. <summary>
  600. <para>This member is obsolete. Use the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsToolTip"/> property instead.</para>
  601. </summary>
  602. <value>A BaseLayoutItemToolTipOptions object.</value>
  603. </member>
  604. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsTableLayoutItem">
  605. <summary>
  606. <para>Provides access to the options that specify how a layout item is arranged within a table layout.</para>
  607. </summary>
  608. <value>An object that contains the layout item’s arrangement options.</value>
  609. </member>
  610. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.OptionsToolTip">
  611. <summary>
  612. <para>Contains options that allow tooltips to be assigned to layout items and their images.</para>
  613. </summary>
  614. <value>A <see cref="T:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip"/> object providing corresponding options.</value>
  615. </member>
  616. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Owner">
  617. <summary>
  618. <para>Gets or set the LayoutControl that owns the current layout item.</para>
  619. </summary>
  620. <value>A LayoutControl control.</value>
  621. </member>
  622. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Padding">
  623. <summary>
  624. <para>Gets or sets the amount of space in pixels between the item’s borders and its contents.</para>
  625. </summary>
  626. <value>A DevExpress.XtraLayout.Utils.Padding object that contains inner indents between the layout item’s borders and its contents.</value>
  627. </member>
  628. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.PaintAppearanceItemCaption">
  629. <summary>
  630. <para>Provides access to the appearance settings currently used to paint the layout item.</para>
  631. </summary>
  632. <value>An <see cref="T:DevExpress.Utils.AppearanceObject"/> object that contains the corresponding appearance settings.</value>
  633. </member>
  634. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Parent">
  635. <summary>
  636. <para>Gets or sets the group that owns the current item.</para>
  637. </summary>
  638. <value>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> or its descendant that owns the current item.</value>
  639. </member>
  640. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.ParentName">
  641. <summary>
  642. <para>Gets or sets the name of the item’s parent.</para>
  643. </summary>
  644. <value>A string that specifies the name of the item’s parent.</value>
  645. </member>
  646. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.RestoreFromCustomization">
  647. <summary>
  648. <para>Restores the current layout item from the Customization Form and adds it to the root group with the default layout type.</para>
  649. </summary>
  650. </member>
  651. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.RestoreFromCustomization(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  652. <summary>
  653. <para>Restores the current layout item from the Customization Form and adds it to the parent group of the specified item at the specified visual position.</para>
  654. </summary>
  655. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant which represents the layout item within the LayoutControl.</param>
  656. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the restored item relative to the baseItem.</param>
  657. </member>
  658. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.RestoreFromCustomization(DevExpress.XtraLayout.Customization.LayoutItemDragController)">
  659. <summary>
  660. <para>Restores the current layout item from the Customization Form and displays it at the specified position within the LayoutControl.</para>
  661. </summary>
  662. <param name="controller">A <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object whose settings determine the position to which the layout item should be moved.</param>
  663. </member>
  664. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.RestoreFromCustomization(DevExpress.XtraLayout.LayoutGroup)">
  665. <summary>
  666. <para>Restores the current layout item from the Customization Form and adds it to the specified group with the default layout type.</para>
  667. </summary>
  668. <param name="parent">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> descendant which represents the layout group that the current layout item will be added to.</param>
  669. </member>
  670. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Selected">
  671. <summary>
  672. <para>Gets or sets the selection state of the current item.</para>
  673. </summary>
  674. <value>true if the current layout item is selected; otherwise, false.</value>
  675. </member>
  676. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.ShowInCustomizationForm">
  677. <summary>
  678. <para>Gets or sets whether the layout item is displayed within the Customization Form when the item is hidden.</para>
  679. </summary>
  680. <value>true if the layout item is displayed within the Customization Form when it’s hidden; otherwise, false.</value>
  681. </member>
  682. <member name="E:DevExpress.XtraLayout.BaseLayoutItem.Showing">
  683. <summary>
  684. <para>Fires when the item is about to be added to the layout (by dragging it from the Customization Form).</para>
  685. </summary>
  686. </member>
  687. <member name="E:DevExpress.XtraLayout.BaseLayoutItem.Shown">
  688. <summary>
  689. <para>Fires after an item has been made visible.</para>
  690. </summary>
  691. </member>
  692. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Size">
  693. <summary>
  694. <para>Gets or sets the layout item’s size.</para>
  695. </summary>
  696. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the item’s width and height.</value>
  697. </member>
  698. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Spacing">
  699. <summary>
  700. <para>Gets or sets the outer indents of the item’s borders.</para>
  701. </summary>
  702. <value>A DevExpress.XtraLayout.Utils.Padding object that contains the outer indents of the layout item’s borders.</value>
  703. </member>
  704. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.StartNewLine">
  705. <summary>
  706. <para>Gets or sets whether the current item starts a new row within a flow layout.</para>
  707. </summary>
  708. <value>true if the layout item starts a new row within the flow layout; otherwise, false.</value>
  709. </member>
  710. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Tag">
  711. <summary>
  712. <para>Gets or sets an object that contains data on the current layout item.</para>
  713. </summary>
  714. <value>An object that contains data on the layout item.</value>
  715. </member>
  716. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Text">
  717. <summary>
  718. <para>Gets or sets the text associated with the layout item.</para>
  719. </summary>
  720. <value>A string that specifies the layout item’s text.</value>
  721. </member>
  722. <member name="E:DevExpress.XtraLayout.BaseLayoutItem.TextChanged">
  723. <summary>
  724. <para>Fires after the layout item’s text has been changed.</para>
  725. </summary>
  726. </member>
  727. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.TextLocation">
  728. <summary>
  729. <para>Gets or sets the item caption position.</para>
  730. </summary>
  731. <value>A <see cref="T:DevExpress.Utils.Locations"/> value that specifies the item caption position.</value>
  732. </member>
  733. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.TextSize">
  734. <summary>
  735. <para>Gets or sets the size of the text region.</para>
  736. </summary>
  737. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the width and height of the item’s text region.</value>
  738. </member>
  739. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.TextToControlDistance">
  740. <summary>
  741. <para>Gets or sets the distance between the control displayed within the layout item and the text region.</para>
  742. </summary>
  743. <value>An integer that specifies the distance, in pixels.</value>
  744. </member>
  745. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.TextVisible">
  746. <summary>
  747. <para>Gets or sets whether the text region is visible.</para>
  748. </summary>
  749. <value>true if the text region is visible; otherwise, false. For <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/>s, the TextVisible property’s default value
  750. is dependent on the type of control embedded in this layout item.</value>
  751. </member>
  752. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.TypeName">
  753. <summary>
  754. <para>Gets the name of the current layout item’s type.</para>
  755. </summary>
  756. <value>A string that represents the name of the current layout item’s type.</value>
  757. </member>
  758. <member name="M:DevExpress.XtraLayout.BaseLayoutItem.Update">
  759. <summary>
  760. <para>Updates the region occupied by the layout item.</para>
  761. </summary>
  762. </member>
  763. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.ViewInfo">
  764. <summary>
  765. <para>Gets the object which contains the information used to render the layout item.</para>
  766. </summary>
  767. <value>A DevExpress.XtraLayout.ViewInfo.BaseLayoutItemViewInfo object.</value>
  768. </member>
  769. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Visibility">
  770. <summary>
  771. <para>Allows you to hide the item from the Layout Control and Customization Form.</para>
  772. </summary>
  773. <value>A <see cref="T:DevExpress.XtraLayout.Utils.LayoutVisibility"/> value that specifies whether the item is visible in the layout and the Customization Form.</value>
  774. </member>
  775. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Visible">
  776. <summary>
  777. <para>Gets whether the layout item is visible.</para>
  778. </summary>
  779. <value>true if the layout item is visible; otherwise, false.</value>
  780. </member>
  781. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Width">
  782. <summary>
  783. <para>Gets or sets the layout item’s width.</para>
  784. </summary>
  785. <value>An integer that specifies the layout item’s width.</value>
  786. </member>
  787. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.X">
  788. <summary>
  789. <para>Gets or sets the X coordinate of the item’s top left corner relative to the parent’s top left corner.</para>
  790. </summary>
  791. <value>An integer which specifies the X coordinate of the item’s top left corner.</value>
  792. </member>
  793. <member name="P:DevExpress.XtraLayout.BaseLayoutItem.Y">
  794. <summary>
  795. <para>Gets or sets the Y coordinate of the item’s top left corner relative to the parent’s top left corner.</para>
  796. </summary>
  797. <value>An integer which specifies the Y coordinate of the item’s top left corner.</value>
  798. </member>
  799. <member name="T:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions">
  800. <summary>
  801. <para>Contains options that specify which operations can be performed on a layout item at runtime.</para>
  802. </summary>
  803. </member>
  804. <member name="M:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.#ctor(DevExpress.XtraLayout.BaseLayoutItem)">
  805. <summary>
  806. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions"/> class.</para>
  807. </summary>
  808. <param name="owner">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object that will own the created object.</param>
  809. </member>
  810. <member name="P:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.AllowDrag">
  811. <summary>
  812. <para>Gets or sets whether the current layout item/group can be dragged-and-dropped to another position.</para>
  813. </summary>
  814. <value>An ItemDragDropMode value that specifies whether the current item/group can be dragged-and-dropped to another position.</value>
  815. </member>
  816. <member name="P:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.AllowDrop">
  817. <summary>
  818. <para>Gets or sets whether other items can be dragged-and-dropped onto the current layout item/group.</para>
  819. </summary>
  820. <value>An ItemDragDropMode value that specifies whether other items can be dragged-and-dropped onto the current layout item/group.</value>
  821. </member>
  822. <member name="M:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.Assign(DevExpress.Utils.Controls.BaseOptions)">
  823. <summary>
  824. <para>Copies options from the specified object to the current object.</para>
  825. </summary>
  826. <param name="options">A <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant whose settings are assigned to the current object.</param>
  827. </member>
  828. <member name="M:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.CanDrag">
  829. <summary>
  830. <para>Returns whether the layout item can be dragged-and-dropped to another position.</para>
  831. </summary>
  832. <returns>true if the layout item can be dragged-and-dropped to another position; otherwise, false.</returns>
  833. </member>
  834. <member name="M:DevExpress.XtraLayout.BaseLayoutItemCustomizationOptions.CanDrop">
  835. <summary>
  836. <para>Returns whether other layout items can be dragged-and-dropped onto the current layout item.</para>
  837. </summary>
  838. <returns>true if other layout items can be dragged-and-dropped onto the current layout item; otherwise, false.</returns>
  839. </member>
  840. <member name="T:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip">
  841. <summary>
  842. <para>Contains options that allow tooltips to be assigned to layout items.</para>
  843. </summary>
  844. </member>
  845. <member name="M:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.#ctor">
  846. <summary>
  847. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip"/> class.</para>
  848. </summary>
  849. </member>
  850. <member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.AllowHtmlString">
  851. <summary>
  852. <para>Gets or sets whether HTML formatting tags can be used to format the tooltip’s text.</para>
  853. </summary>
  854. <value>True if HTML formatting tags can be used to format the tooltip’s text; False if not; Default uses the <see cref="P:DevExpress.Utils.ToolTipController.AllowHtmlText"/> global setting.</value>
  855. </member>
  856. <member name="M:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.Assign(DevExpress.Utils.Controls.BaseOptions)">
  857. <summary>
  858. <para>Copies options from the specified object to the current object.</para>
  859. </summary>
  860. <param name="options">A <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant whose settings are assigned to the current object.</param>
  861. </member>
  862. <member name="M:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.CanShowIconToolTip">
  863. <summary>
  864. <para>Returns whether a tooltip for a layout item’s image can be displayed.</para>
  865. </summary>
  866. <returns>true if a tooltip for a layout item’s image can be displayed; otherwise, false.</returns>
  867. </member>
  868. <member name="M:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.CanShowToolTip">
  869. <summary>
  870. <para>Returns whether a tooltip for a layout item’s caption can be displayed.</para>
  871. </summary>
  872. <returns>true if a tooltip for a layout item’s caption can be displayed; otherwise, false.</returns>
  873. </member>
  874. <member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.EnableIconToolTip">
  875. <summary>
  876. <para>Gets or sets whether a tooltip displayed for the layout item’s image is enabled.</para>
  877. </summary>
  878. <value>true if a tooltip displayed for the layout item’s image is enabled; otherwise, false.</value>
  879. </member>
  880. <member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.IconAllowHtmlString">
  881. <summary>
  882. <para>Gets or sets whether HTML tags can be used to format the tooltip text displayed for the item’s icon.</para>
  883. </summary>
  884. <value>True if HTML tags can be used to format the tooltip text; False if not; Default uses the <see cref="P:DevExpress.Utils.ToolTipController.AllowHtmlText"/> global setting.</value>
  885. </member>
  886. <member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.IconImmediateToolTip">
  887. <summary>
  888. <para>Gets or sets whether the tooltip for the layout item’s icon is displayed immediately or after a delay.</para>
  889. </summary>
  890. <value>true if the tooltip is displayed immediately; otherwise, false.</value>
  891. </member>
  892. <member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.IconToolTip">
  893. <summary>
  894. <para>Specifies the text of the tooltip displayed when the mouse cursor hovers over the layout item’s image.</para>
  895. </summary>
  896. <value>A string that specifies the tooltip’s text.</value>
  897. </member>
  898. <member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.IconToolTipIconType">
  899. <summary>
  900. <para>Gets or sets the type of the icon for the tooltip that is displayed when the mouse cursor hovers over the layout item’s image.</para>
  901. </summary>
  902. <value>A <see cref="T:DevExpress.Utils.ToolTipIconType"/> value.</value>
  903. </member>
  904. <member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.IconToolTipTitle">
  905. <summary>
  906. <para>Gets or sets the title of the tooltip that is displayed when the mouse cursor hovers over the layout item’s image.</para>
  907. </summary>
  908. <value>A string that specifies the tooltip’s title.</value>
  909. </member>
  910. <member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.ImmediateToolTip">
  911. <summary>
  912. <para>Gets or sets whether the tooltip is displayed immediately or after a delay.</para>
  913. </summary>
  914. <value>true if the tooltip is displayed immediately; otherwise, false.</value>
  915. </member>
  916. <member name="M:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.ShouldSerializeCore(System.ComponentModel.IComponent)">
  917. <summary>
  918. <para>This method supports the internal infrastructure and is not intended to be called directly from your code.</para>
  919. </summary>
  920. <param name="owner">An IComponent object.</param>
  921. <returns>A Boolean value.</returns>
  922. </member>
  923. <member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.ToolTip">
  924. <summary>
  925. <para>Specifies the text of the tooltip displayed when the mouse cursor hovers over the layout item’s caption, and by default over its image.</para>
  926. </summary>
  927. <value>A string that specifies the tooltip’s text.</value>
  928. </member>
  929. <member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.ToolTipIconType">
  930. <summary>
  931. <para>Gets or sets the type of the icon for the tooltip that is displayed when the mouse cursor hovers over the layout item’s caption, and by default over its image.</para>
  932. </summary>
  933. <value>A <see cref="T:DevExpress.Utils.ToolTipIconType"/> value.</value>
  934. </member>
  935. <member name="P:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip.ToolTipTitle">
  936. <summary>
  937. <para>Gets or sets the title of the tooltip that is displayed when the mouse cursor hovers over the layout item’s caption, and by default over its image.</para>
  938. </summary>
  939. <value>A string that specifies the tooltip’s title.</value>
  940. </member>
  941. <member name="T:DevExpress.XtraLayout.ColumnDefinition">
  942. <summary>
  943. <para>Defines a column in a table layout.</para>
  944. </summary>
  945. </member>
  946. <member name="M:DevExpress.XtraLayout.ColumnDefinition.#ctor">
  947. <summary>
  948. <para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> class with the default settings.</para>
  949. </summary>
  950. </member>
  951. <member name="M:DevExpress.XtraLayout.ColumnDefinition.#ctor(DevExpress.XtraLayout.LayoutGroup)">
  952. <summary>
  953. <para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> class with the specified owner.</para>
  954. </summary>
  955. <param name="owner">A layout group that owns the created <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> object.</param>
  956. </member>
  957. <member name="M:DevExpress.XtraLayout.ColumnDefinition.#ctor(DevExpress.XtraLayout.LayoutGroup,System.Double,System.Windows.Forms.SizeType)">
  958. <summary>
  959. <para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> class with the specified settings.</para>
  960. </summary>
  961. <param name="owner">A layout group that owns the created <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> object.</param>
  962. <param name="size">The width of the created column. This value is assigned to the <see cref="P:DevExpress.XtraLayout.ColumnDefinition.Width"/> property.</param>
  963. <param name="sizingType">The size type of the created column. This value is assigned to the <see cref="P:DevExpress.XtraLayout.ColumnDefinition.SizeType"/> property.</param>
  964. </member>
  965. <member name="M:DevExpress.XtraLayout.ColumnDefinition.#ctor(DevExpress.XtraLayout.LayoutGroup,System.Double,System.Windows.Forms.SizeType,System.Boolean)">
  966. <summary>
  967. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> class with specified settings.</para>
  968. </summary>
  969. <param name="owner"></param>
  970. <param name="size"></param>
  971. <param name="sizingType"></param>
  972. <param name="visible"></param>
  973. </member>
  974. <member name="P:DevExpress.XtraLayout.ColumnDefinition.SizeType">
  975. <summary>
  976. <para>Gets or sets the column’s size type in a table layout.</para>
  977. </summary>
  978. <value>A value that specifies the column’s size type.</value>
  979. </member>
  980. <member name="P:DevExpress.XtraLayout.ColumnDefinition.Width">
  981. <summary>
  982. <para>Gets or sets the column width, in pixels or as a percentage, according to the <see cref="P:DevExpress.XtraLayout.ColumnDefinition.SizeType"/>.</para>
  983. </summary>
  984. <value>A value that specifies the column width.</value>
  985. </member>
  986. <member name="T:DevExpress.XtraLayout.ColumnDefinitions">
  987. <summary>
  988. <para>A column collection within a table layout.</para>
  989. </summary>
  990. </member>
  991. <member name="M:DevExpress.XtraLayout.ColumnDefinitions.#ctor(DevExpress.XtraLayout.ColumnDefinitions,DevExpress.XtraLayout.LayoutGroup)">
  992. <summary>
  993. <para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.ColumnDefinitions"/> class with the settings of the specified source object and with the specified owner.</para>
  994. </summary>
  995. <param name="source">An object whose settings are used to initialize the created object.</param>
  996. <param name="ownerGroup">A layout group that owns the created object.</param>
  997. </member>
  998. <member name="M:DevExpress.XtraLayout.ColumnDefinitions.#ctor(DevExpress.XtraLayout.LayoutGroup)">
  999. <summary>
  1000. <para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.ColumnDefinitions"/> class with the specified owner.</para>
  1001. </summary>
  1002. <param name="owner">A layout group that owns the created <see cref="T:DevExpress.XtraLayout.ColumnDefinitions"/> object.</param>
  1003. </member>
  1004. <member name="M:DevExpress.XtraLayout.ColumnDefinitions.Add(DevExpress.XtraLayout.ColumnDefinition)">
  1005. <summary>
  1006. <para>Adds a specified column to the table layout.</para>
  1007. </summary>
  1008. <param name="columnDefinition">An object that specifies the column to be added.</param>
  1009. <returns>The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.</returns>
  1010. </member>
  1011. <member name="M:DevExpress.XtraLayout.ColumnDefinitions.AddRange(DevExpress.XtraLayout.ColumnDefinition[])">
  1012. <summary>
  1013. <para>Adds an array of columns to the table layout.</para>
  1014. </summary>
  1015. <param name="items">An array of <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> objects to be added to the table layout.</param>
  1016. </member>
  1017. <member name="M:DevExpress.XtraLayout.ColumnDefinitions.Insert(System.Int32,DevExpress.XtraLayout.ColumnDefinition,System.Boolean)">
  1018. <summary>
  1019. <para>Inserts an element into the collection at the specified index.</para>
  1020. </summary>
  1021. <param name="index">The zero-based index at which a columnDefinition should be inserted.</param>
  1022. <param name="columnDefinition">The <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> to insert.</param>
  1023. <param name="updateItemIndexes">true, to recalculate the <see cref="P:DevExpress.XtraLayout.OptionsTableLayoutItem.ColumnIndex"/> property of items in the current layout group; otherwise, false.</param>
  1024. </member>
  1025. <member name="P:DevExpress.XtraLayout.ColumnDefinitions.Item(System.Int32)">
  1026. <summary>
  1027. <para>Provides indexed access to columns within the table layout.</para>
  1028. </summary>
  1029. <param name="index">A zero-based integer value that specifies the index of the required column.</param>
  1030. <value>A column at the specified position within the collection.</value>
  1031. </member>
  1032. <member name="M:DevExpress.XtraLayout.ColumnDefinitions.RemoveAt(System.Int32,System.Boolean)">
  1033. <summary>
  1034. <para>Removes the element at the specified index.</para>
  1035. </summary>
  1036. <param name="index">The zero-based index of the element to remove.</param>
  1037. <param name="updateItemIndexes">true, to recalculate the <see cref="P:DevExpress.XtraLayout.OptionsTableLayoutItem.ColumnIndex"/> property of items in the current layout group; otherwise, false.</param>
  1038. </member>
  1039. <member name="T:DevExpress.XtraLayout.ControlMaxSizeCalcMode">
  1040. <summary>
  1041. <para>Contains values that specify how default maximum size constraints are calculated for controls that implement the <see cref="T:DevExpress.Utils.Controls.IXtraResizableControl"/> interface.</para>
  1042. </summary>
  1043. </member>
  1044. <member name="F:DevExpress.XtraLayout.ControlMaxSizeCalcMode.CombineControlMaximumSizeAndIXtraResizableMaxSize">
  1045. <summary>
  1046. <para>The default maximum width is calculated for a control as the maximum of two values: Control.MaximumSize.Width and IXtraResizableControl.MaxSize.Width.</para>
  1047. <para>The default maximum height is calculated for a control as the maximum of two values: Control.MaximumSize.Height and IXtraResizableControl.MaxSize.Height.</para>
  1048. </summary>
  1049. </member>
  1050. <member name="F:DevExpress.XtraLayout.ControlMaxSizeCalcMode.UseControlMaximumSize">
  1051. <summary>
  1052. <para>The default maximum width and height are specified by the Control.MaximumSize.Width and Control.MaximumSize.Height values, respectively.</para>
  1053. </summary>
  1054. </member>
  1055. <member name="F:DevExpress.XtraLayout.ControlMaxSizeCalcMode.UseControlMaximumSizeIfNotZero">
  1056. <summary>
  1057. <para>The default maximum width is specified by the Control.MaximumSize.Width property if it is not set to 0; otherwise, the default maximum width is specified by the IXtraResizableControl.MaxSize.Width property.</para>
  1058. <para>The default maximum height is specified by the Control.MaximumSize.Height property if it is not set to 0; otherwise, the default maximum height is specified by the IXtraResizableControl.MaxSize.Height property.</para>
  1059. </summary>
  1060. </member>
  1061. <member name="T:DevExpress.XtraLayout.ControlMinSizeCalcMode">
  1062. <summary>
  1063. <para>Contains values that specify how default minimum size constraints are calculated for controls that implement the <see cref="T:DevExpress.Utils.Controls.IXtraResizableControl"/> interface.</para>
  1064. </summary>
  1065. </member>
  1066. <member name="F:DevExpress.XtraLayout.ControlMinSizeCalcMode.CombineControlMinimumSizeAndIXtraResizableMinSize">
  1067. <summary>
  1068. <para>The default minimum width is calculated for a control as the minimum of two values: Control.MinimumSize.Width and IXtraResizableControl.MinSize.Width.</para>
  1069. <para>The default minimum height is calculated for a control as the minimum of two values: Control.MinimumSize.Height and IXtraResizableControl.MinSize.Height.</para>
  1070. </summary>
  1071. </member>
  1072. <member name="F:DevExpress.XtraLayout.ControlMinSizeCalcMode.UseControlMinimumSize">
  1073. <summary>
  1074. <para>The default minimum width and height are specified by the Control.MinimumSize.Width and Control.MinimumSize.Height values, respectively.</para>
  1075. </summary>
  1076. </member>
  1077. <member name="F:DevExpress.XtraLayout.ControlMinSizeCalcMode.UseControlMinimumSizeIfNotZero">
  1078. <summary>
  1079. <para>The default minimum width is specified by the Control.MinimumSize.Width property if it is not set to 0; otherwise, the default minimum width is specified by the IXtraResizableControl.MinSize.Width property.</para>
  1080. <para>The default minimum height is specified by the Control.MinimumSize.Height property if it is not set to 0; otherwise, the default minimum height is specified by the IXtraResizableControl.MinSize.Height property.</para>
  1081. </summary>
  1082. </member>
  1083. <member name="N:DevExpress.XtraLayout.Converter">
  1084. <summary>
  1085. <para>Contains classes used to convert layouts of controls.</para>
  1086. </summary>
  1087. </member>
  1088. <member name="T:DevExpress.XtraLayout.Converter.LayoutConverter">
  1089. <summary>
  1090. <para>Converts a regular layout of controls to the <see cref="T:DevExpress.XtraLayout.LayoutControl"/>, and vice versa.</para>
  1091. </summary>
  1092. </member>
  1093. <member name="N:DevExpress.XtraLayout.Customization">
  1094. <summary>
  1095. <para>Contains classes that are used to customize the layout of the XtraLayout control.</para>
  1096. </summary>
  1097. </member>
  1098. <member name="T:DevExpress.XtraLayout.Customization.LayoutItemDragController">
  1099. <summary>
  1100. <para>Contains methods to move a layout item to a position next to another layout item.</para>
  1101. </summary>
  1102. </member>
  1103. <member name="M:DevExpress.XtraLayout.Customization.LayoutItemDragController.#ctor(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.BaseLayoutItem)">
  1104. <summary>
  1105. <para>Initializes a new <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> instance with settings specifying that the_dragItem_ should be inserted horizontally after the baseItem, occupying its largest part (typically, half the region).</para>
  1106. </summary>
  1107. <param name="dragItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object to be moved. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> property.</param>
  1108. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object relative to which the dragItem will be positioned. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Item"/> property.</param>
  1109. </member>
  1110. <member name="M:DevExpress.XtraLayout.Customization.LayoutItemDragController.#ctor(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertLocation,DevExpress.XtraLayout.Utils.LayoutType)">
  1111. <summary>
  1112. <para>Initializes a new <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> instance with settings specifying that the dragItem should be inserted next to the baseItem, occupying its largest part (typically, half the region).</para>
  1113. </summary>
  1114. <param name="dragItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object to be moved. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> property.</param>
  1115. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object relative to which the dragItem will be positioned. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Item"/> property.</param>
  1116. <param name="insertLocation">A <see cref="T:DevExpress.XtraLayout.Utils.InsertLocation"/> value that specifies whether the dragItem is inserted before or after the baseItem. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.InsertLocation"/> property.</param>
  1117. <param name="layoutType">A <see cref="T:DevExpress.XtraLayout.Utils.LayoutType"/> value that specifies whether the dragItem is inserted horizontally or vertically next to the baseItem. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.LayoutType"/> property.</param>
  1118. </member>
  1119. <member name="M:DevExpress.XtraLayout.Customization.LayoutItemDragController.#ctor(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.MoveType,DevExpress.XtraLayout.Utils.InsertLocation,DevExpress.XtraLayout.Utils.LayoutType)">
  1120. <summary>
  1121. <para>Initializes a new <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> instance with settings specifying that the dragItem should be inserted next to the baseItem.</para>
  1122. </summary>
  1123. <param name="dragItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object to be moved. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> property.</param>
  1124. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object relative to which the dragItem will be positioned. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Item"/> property.</param>
  1125. <param name="moveType">A <see cref="T:DevExpress.XtraLayout.Utils.MoveType"/> value that specifies whether the dragItem is inserted inside or outside the baseItem. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.MoveType"/> property.</param>
  1126. <param name="insertLocation">A <see cref="T:DevExpress.XtraLayout.Utils.InsertLocation"/> value that specifies whether the dragItem is inserted before or after the baseItem. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.InsertLocation"/> property.</param>
  1127. <param name="layoutType">A <see cref="T:DevExpress.XtraLayout.Utils.LayoutType"/> value that specifies whether the dragItem is inserted horizontally or vertically next to the baseItem. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.LayoutType"/> property.</param>
  1128. </member>
  1129. <member name="M:DevExpress.XtraLayout.Customization.LayoutItemDragController.#ctor(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.MoveType,DevExpress.XtraLayout.Utils.InsertLocation,DevExpress.XtraLayout.Utils.LayoutType,System.Drawing.Size)">
  1130. <summary>
  1131. <para>This member supports the internal infrastructure and is not intended to be used directly from your code.</para>
  1132. </summary>
  1133. <param name="dragItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object to be moved. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> property.</param>
  1134. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object relative to which the dragItem will be positioned. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Item"/> property.</param>
  1135. <param name="moveType">A <see cref="T:DevExpress.XtraLayout.Utils.MoveType"/> value that specifies whether the dragItem is inserted inside or outside the baseItem. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.MoveType"/> property.</param>
  1136. <param name="insertLocation">A <see cref="T:DevExpress.XtraLayout.Utils.InsertLocation"/> value that specifies whether the dragItem is inserted before or after the baseItem. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.InsertLocation"/> property.</param>
  1137. <param name="layoutType">A <see cref="T:DevExpress.XtraLayout.Utils.LayoutType"/> value that specifies whether the draItem is inserted horizontally or vertically next to the baseItem. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.LayoutType"/> property.</param>
  1138. <param name="rating"></param>
  1139. </member>
  1140. <member name="M:DevExpress.XtraLayout.Customization.LayoutItemDragController.#ctor(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Customization.LayoutItemDragController)">
  1141. <summary>
  1142. <para>Initializes a new <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> instance with settings specifying that the dragItem should be inserted next to another item, as specified by the settings of the controller parameter.</para>
  1143. </summary>
  1144. <param name="dragItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object to be moved. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> property.</param>
  1145. <param name="controller">A <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object, whose settings determine how a dragItem is inserted next to another item.</param>
  1146. </member>
  1147. <member name="M:DevExpress.XtraLayout.Customization.LayoutItemDragController.#ctor(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.LayoutGroup,System.Drawing.Point)">
  1148. <summary>
  1149. <para>Initializes a new <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> instance with settings specifying that the dragItem should be inserted at a certain position within a specific group.</para>
  1150. </summary>
  1151. <param name="dragItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object to be moved. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> property.</param>
  1152. <param name="group">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object into which the dragItem will be inserted.</param>
  1153. <param name="pt">A Point where the dragItem will be inserted into the group.</param>
  1154. </member>
  1155. <member name="M:DevExpress.XtraLayout.Customization.LayoutItemDragController.Drag">
  1156. <summary>
  1157. <para>Inserts the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> to a position, specified by the settings of the current <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object. This method cannot be used to move items that do not belong to a <see cref="T:DevExpress.XtraLayout.LayoutControl"/>.</para>
  1158. </summary>
  1159. </member>
  1160. <member name="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragBounds">
  1161. <summary>
  1162. <para>This member supports the internal infrastructure and is not intended to be used directly from your code.</para>
  1163. </summary>
  1164. <value></value>
  1165. </member>
  1166. <member name="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem">
  1167. <summary>
  1168. <para>Gets the item to be inserted to a position, specified by the settings of the <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object.</para>
  1169. </summary>
  1170. <value>A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object that represents the item to be inserted.</value>
  1171. </member>
  1172. <member name="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragOutsideSize">
  1173. <summary>
  1174. <para>This member supports the internal infrastructure and is not intended to be used directly from your code.</para>
  1175. </summary>
  1176. <value></value>
  1177. </member>
  1178. <member name="M:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragWildItem">
  1179. <summary>
  1180. <para>Inserts the orphan <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> to a position specified by the settings of the current <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object. This method cannot be used to move items that belong to a <see cref="T:DevExpress.XtraLayout.LayoutControl"/>.</para>
  1181. </summary>
  1182. <returns>true if the item has been successfully inserted; otherwise, false.</returns>
  1183. </member>
  1184. <member name="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.HitInfo">
  1185. <summary>
  1186. <para>Gets an object that identifies an element located at the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.HitPoint"/> point. This member is in effect if the current <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object has been initiailized using a constructor with a Point parameter.</para>
  1187. </summary>
  1188. <value>A <see cref="T:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo"/> object that provides information on the element located at the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.HitPoint"/> point.</value>
  1189. </member>
  1190. <member name="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.HitPoint">
  1191. <summary>
  1192. <para>Gets the point at which the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> will be inserted. This member is in effect if the current <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object has been initialized using a constructor with a Point parameter.</para>
  1193. </summary>
  1194. <value>A Point at which the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> will be inserted.</value>
  1195. </member>
  1196. <member name="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.InsertLocation">
  1197. <summary>
  1198. <para>Gets whether the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> is inserted before or after the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Item"/>.</para>
  1199. </summary>
  1200. <value>A <see cref="T:DevExpress.XtraLayout.Utils.InsertLocation"/> value that specifies whether the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> is inserted before or after the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Item"/>.</value>
  1201. </member>
  1202. <member name="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Item">
  1203. <summary>
  1204. <para>Gets the item next to which the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> is inserted.</para>
  1205. </summary>
  1206. <value>A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object that identifies the item next to which the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> is inserted.</value>
  1207. </member>
  1208. <member name="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.LayoutType">
  1209. <summary>
  1210. <para>Gets whether the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> is inserted horizontally or vertically next to the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Item"/>.</para>
  1211. </summary>
  1212. <value>A <see cref="T:DevExpress.XtraLayout.Utils.LayoutType"/> value that specifies whether the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> is inserted horizontally or vertically next to the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Item"/>.</value>
  1213. </member>
  1214. <member name="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.MoveType">
  1215. <summary>
  1216. <para>Gets whether the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> is inserted inside or outside the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Item"/>.</para>
  1217. </summary>
  1218. <value>A <see cref="T:DevExpress.XtraLayout.Utils.MoveType"/> value that specifies whether the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.DragItem"/> is inserted inside or outside the <see cref="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Item"/>.</value>
  1219. </member>
  1220. <member name="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.Rating">
  1221. <summary>
  1222. <para>This member supports the internal infrastructure and is not intended to be used directly from your code.</para>
  1223. </summary>
  1224. <value></value>
  1225. </member>
  1226. <member name="P:DevExpress.XtraLayout.Customization.LayoutItemDragController.ShouldRestoreOriginalSize">
  1227. <summary>
  1228. <para>For internal use.</para>
  1229. </summary>
  1230. <value></value>
  1231. </member>
  1232. <member name="T:DevExpress.XtraLayout.CustomizationModes">
  1233. <summary>
  1234. <para>Enumerates the runtime customization modes for a <see cref="T:DevExpress.XtraLayout.LayoutControl"/>.</para>
  1235. </summary>
  1236. </member>
  1237. <member name="F:DevExpress.XtraLayout.CustomizationModes.Default">
  1238. <summary>
  1239. <para>Default customization mode. Customization commands are provided using context menus.</para>
  1240. </summary>
  1241. </member>
  1242. <member name="F:DevExpress.XtraLayout.CustomizationModes.Quick">
  1243. <summary>
  1244. <para>Quick customization mode. Customization commands are available in the touch-friendly Customization Form.</para>
  1245. </summary>
  1246. </member>
  1247. <member name="T:DevExpress.XtraLayout.DefinitionBase">
  1248. <summary>
  1249. <para>The base class for Layout Control columns and rows in table layout mode.</para>
  1250. </summary>
  1251. </member>
  1252. <member name="P:DevExpress.XtraLayout.DefinitionBase.Visible">
  1253. <summary>
  1254. <para>Gets or sets whether the current row/column is visible.</para>
  1255. </summary>
  1256. <value>true if the row/column is visible; otherwise, false.</value>
  1257. </member>
  1258. <member name="T:DevExpress.XtraLayout.EmptySpaceItem">
  1259. <summary>
  1260. <para>Used to insert empty regions in the Layout Control.</para>
  1261. </summary>
  1262. </member>
  1263. <member name="M:DevExpress.XtraLayout.EmptySpaceItem.#ctor">
  1264. <summary>
  1265. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.EmptySpaceItem"/> class.</para>
  1266. </summary>
  1267. </member>
  1268. <member name="M:DevExpress.XtraLayout.EmptySpaceItem.#ctor(DevExpress.XtraLayout.LayoutControlGroup)">
  1269. <summary>
  1270. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.EmptySpaceItem"/> class with the specified parent group.</para>
  1271. </summary>
  1272. <param name="parent">A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object that owns the created item.</param>
  1273. </member>
  1274. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.AllowHotTrack">
  1275. <summary>
  1276. <para>This property is not supported by the <see cref="T:DevExpress.XtraLayout.EmptySpaceItem"/> class.</para>
  1277. </summary>
  1278. <value>false.</value>
  1279. </member>
  1280. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.ContentHorzAlignment">
  1281. <summary />
  1282. <value></value>
  1283. </member>
  1284. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.ContentVertAlignment">
  1285. <summary />
  1286. <value></value>
  1287. </member>
  1288. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.ContentVisible">
  1289. <summary>
  1290. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  1291. </summary>
  1292. <value></value>
  1293. </member>
  1294. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.Control">
  1295. <summary>
  1296. <para>Not supported.</para>
  1297. </summary>
  1298. <value>null.</value>
  1299. </member>
  1300. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.ControlAlignment">
  1301. <summary>
  1302. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  1303. </summary>
  1304. <value></value>
  1305. </member>
  1306. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.ControlMaxSize">
  1307. <summary>
  1308. <para>Not supported.</para>
  1309. </summary>
  1310. <value>A <see cref="F:System.Drawing.Size.Empty"/> structure.</value>
  1311. </member>
  1312. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.ControlMinSize">
  1313. <summary>
  1314. <para>Not supported.</para>
  1315. </summary>
  1316. <value>A <see cref="F:System.Drawing.Size.Empty"/> structure.</value>
  1317. </member>
  1318. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.FillControlToClientArea">
  1319. <summary>
  1320. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  1321. </summary>
  1322. <value></value>
  1323. </member>
  1324. <member name="M:DevExpress.XtraLayout.EmptySpaceItem.GetDefaultText">
  1325. <summary>
  1326. <para>Returns the default value of the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</para>
  1327. </summary>
  1328. <returns>A <see cref="T:System.String"/> value that specifies the default value of the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</returns>
  1329. </member>
  1330. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.HighlightFocusedItem">
  1331. <summary>
  1332. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  1333. </summary>
  1334. <value></value>
  1335. </member>
  1336. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.Image">
  1337. <summary>
  1338. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  1339. </summary>
  1340. <value></value>
  1341. </member>
  1342. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.ImageAlignment">
  1343. <summary>
  1344. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  1345. </summary>
  1346. <value></value>
  1347. </member>
  1348. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.ImageIndex">
  1349. <summary>
  1350. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  1351. </summary>
  1352. <value></value>
  1353. </member>
  1354. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.ImageOptions">
  1355. <summary>
  1356. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  1357. </summary>
  1358. <value></value>
  1359. </member>
  1360. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.ImageToTextDistance">
  1361. <summary>
  1362. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  1363. </summary>
  1364. <value></value>
  1365. </member>
  1366. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.MaxSize">
  1367. <summary>
  1368. <para>Gets or sets the maximum size of the <see cref="T:DevExpress.XtraLayout.EmptySpaceItem"/>.</para>
  1369. </summary>
  1370. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the item’s maximum width and height.</value>
  1371. </member>
  1372. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.MinSize">
  1373. <summary>
  1374. <para>Gets or sets the minimum size of the <see cref="T:DevExpress.XtraLayout.EmptySpaceItem"/>.</para>
  1375. </summary>
  1376. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the item’s minimum width and height.</value>
  1377. </member>
  1378. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.TextLocation">
  1379. <summary>
  1380. <para>Not supported.</para>
  1381. </summary>
  1382. <value>The <see cref="F:DevExpress.Utils.Locations.Default"/> value.</value>
  1383. </member>
  1384. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.TextToControlDistance">
  1385. <summary>
  1386. <para>Not supported.</para>
  1387. </summary>
  1388. <value>Zero.</value>
  1389. </member>
  1390. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.TextVisible">
  1391. <summary>
  1392. <para>Gets or sets whether the text region is visible.</para>
  1393. </summary>
  1394. <value>true if the text region is visible; otherwise, false.</value>
  1395. </member>
  1396. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.TrimClientAreaToControl">
  1397. <summary>
  1398. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  1399. </summary>
  1400. <value></value>
  1401. </member>
  1402. <member name="P:DevExpress.XtraLayout.EmptySpaceItem.TypeName">
  1403. <summary>
  1404. <para>Gets the name of the item’s type.</para>
  1405. </summary>
  1406. <value>The EmptySpaceItem value.</value>
  1407. </member>
  1408. <member name="N:DevExpress.XtraLayout.HitInfo">
  1409. <summary>
  1410. <para>Contains the classes which provide the functionality used to determine the hit information in the XtraLayout control.</para>
  1411. </summary>
  1412. </member>
  1413. <member name="T:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo">
  1414. <summary>
  1415. <para>Contains information on a specific point within a Layout Control.</para>
  1416. </summary>
  1417. </member>
  1418. <member name="M:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.#ctor">
  1419. <summary>
  1420. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo"/> class.</para>
  1421. </summary>
  1422. </member>
  1423. <member name="M:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.#ctor(DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo)">
  1424. <summary>
  1425. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo"/> class by copying the settings from the specified hitInfo object.</para>
  1426. </summary>
  1427. <param name="hitInfo">A <see cref="T:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo"/> object whose settings are copied to the object being created.</param>
  1428. </member>
  1429. <member name="M:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.#ctor(System.Drawing.Point,DevExpress.XtraLayout.HitInfo.LayoutItemHitTest,DevExpress.XtraLayout.BaseLayoutItem)">
  1430. <summary>
  1431. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo"/> class with the specified settings.</para>
  1432. </summary>
  1433. <param name="point">A <see cref="T:System.Drawing.Point"/> structure that represents the test point. This value is assigned to the <see cref="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.HitPoint"/> property.</param>
  1434. <param name="hitType">A <see cref="T:DevExpress.XtraLayout.HitInfo.LayoutItemHitTest"/> value that specifies the type of a layout item’s element located under the test point. This value is assigned to the <see cref="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.HitType"/> property.</param>
  1435. <param name="item">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object that represents the layout item located under the test point. This value is assigned to the <see cref="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.Item"/> property.</param>
  1436. </member>
  1437. <member name="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.HitPoint">
  1438. <summary>
  1439. <para>Gets the test point.</para>
  1440. </summary>
  1441. <value>A <see cref="T:System.Drawing.Point"/> structure that specifies the current test point.</value>
  1442. </member>
  1443. <member name="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.HitType">
  1444. <summary>
  1445. <para>Gets the type of the layout item’s element located under the test point.</para>
  1446. </summary>
  1447. <value>A <see cref="T:DevExpress.XtraLayout.HitInfo.LayoutItemHitTest"/> value that specifies the type of the element located under the test point.</value>
  1448. </member>
  1449. <member name="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.IsExpandButton">
  1450. <summary>
  1451. <para>Gets whether the test point belongs to a group’s expand button.</para>
  1452. </summary>
  1453. <value>true if the test point belongs to a group’s expand button; otherwise, false.</value>
  1454. </member>
  1455. <member name="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.IsGroup">
  1456. <summary>
  1457. <para>Gets whether the current test point belongs to a Layout Group.</para>
  1458. </summary>
  1459. <value>true if the current test point belongs to a Layout Group; otherwise, false.</value>
  1460. </member>
  1461. <member name="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.IsLastRow">
  1462. <summary>
  1463. <para>Gets whether the test point belongs to a tab of a <see cref="T:DevExpress.XtraLayout.TabbedControlGroup"/> and this tab resides within the last tab row. This property is in effect if tabs are allowed to be arranged in multiple rows (see <see cref="P:DevExpress.XtraLayout.TabbedGroup.MultiLine"/>).</para>
  1464. </summary>
  1465. <value>true if a tab resides within the last tab row; otherwise, false.</value>
  1466. </member>
  1467. <member name="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.IsSizing">
  1468. <summary>
  1469. <para>Gets whether the current layout item is being or about to be resized by dragging the item’s border with the mouse.</para>
  1470. </summary>
  1471. <value>true if the current layout item is being or about to be resized; otherwise false.</value>
  1472. </member>
  1473. <member name="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.IsTabbedGroup">
  1474. <summary>
  1475. <para>Gets whether the current test point belongs to a Tabbed Group.</para>
  1476. </summary>
  1477. <value>true if the current test point belongs to a Tabbed Group; otherwise, false.</value>
  1478. </member>
  1479. <member name="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.Item">
  1480. <summary>
  1481. <para>Gets the layout item (regular group or tabbed group) positioned under the test point.</para>
  1482. </summary>
  1483. <value>A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant that specifies the layout item positioned under the test point.</value>
  1484. </member>
  1485. <member name="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.TabPageIndex">
  1486. <summary>
  1487. <para>If the test point belongs to a tab page header, gets the index of the corresponding tab page.</para>
  1488. </summary>
  1489. <value>An integer which specifies the index of a tab page. -1 if the test point doesn’t belong to a tab page header.</value>
  1490. </member>
  1491. <member name="T:DevExpress.XtraLayout.HitInfo.LayoutItemHitTest">
  1492. <summary>
  1493. <para>Lists the values that identify the Layout Control’s visual elements.</para>
  1494. </summary>
  1495. </member>
  1496. <member name="F:DevExpress.XtraLayout.HitInfo.LayoutItemHitTest.ControlsArea">
  1497. <summary>
  1498. <para>The test point belongs to a control which is located within a layout item.</para>
  1499. </summary>
  1500. </member>
  1501. <member name="F:DevExpress.XtraLayout.HitInfo.LayoutItemHitTest.HSizing">
  1502. <summary>
  1503. <para>A layout item is being or about to be resized horizontally. See the <see cref="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.IsSizing"/> topic.</para>
  1504. </summary>
  1505. </member>
  1506. <member name="F:DevExpress.XtraLayout.HitInfo.LayoutItemHitTest.Item">
  1507. <summary>
  1508. <para>The test point belongs to a layout item, group or tabbed group.</para>
  1509. </summary>
  1510. </member>
  1511. <member name="F:DevExpress.XtraLayout.HitInfo.LayoutItemHitTest.None">
  1512. <summary>
  1513. <para>The test point does not belong to any visual element or is outside the LayoutControl.</para>
  1514. </summary>
  1515. </member>
  1516. <member name="F:DevExpress.XtraLayout.HitInfo.LayoutItemHitTest.TextArea">
  1517. <summary>
  1518. <para>The test point belongs to a layout item’s text area.</para>
  1519. </summary>
  1520. </member>
  1521. <member name="F:DevExpress.XtraLayout.HitInfo.LayoutItemHitTest.VSizing">
  1522. <summary>
  1523. <para>A layout item is being or about to be resized vertically. See the <see cref="P:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo.IsSizing"/> topic.</para>
  1524. </summary>
  1525. </member>
  1526. <member name="T:DevExpress.XtraLayout.LayoutAppearanceCollection">
  1527. <summary>
  1528. <para>Provides the appearance settings used to paint a LayoutControl.</para>
  1529. </summary>
  1530. </member>
  1531. <member name="M:DevExpress.XtraLayout.LayoutAppearanceCollection.#ctor">
  1532. <summary>
  1533. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutAppearanceCollection"/> class.</para>
  1534. </summary>
  1535. </member>
  1536. <member name="P:DevExpress.XtraLayout.LayoutAppearanceCollection.Control">
  1537. <summary>
  1538. <para>Gets the appearance settings used to paint the contents of all the editors owned by the LayoutControl.</para>
  1539. </summary>
  1540. <value>A <see cref="T:DevExpress.Utils.AppearanceObject"/> object which provides the appearance settings used to paint the editor’s contents.</value>
  1541. </member>
  1542. <member name="P:DevExpress.XtraLayout.LayoutAppearanceCollection.ControlDisabled">
  1543. <summary>
  1544. <para>Gets the appearance settings used to paint the contents of the editors owned by the LayoutControl when they are disabled. This option is only in effect for DevExpress controls that support the <see cref="T:DevExpress.XtraEditors.StyleController"/>.</para>
  1545. </summary>
  1546. <value>A <see cref="T:DevExpress.Utils.AppearanceObject"/> object which provides the appearance settings used to paint the contents of the editors when they are disabled.</value>
  1547. </member>
  1548. <member name="P:DevExpress.XtraLayout.LayoutAppearanceCollection.ControlDropDown">
  1549. <summary>
  1550. <para>Gets the appearance settings used to paint the popup window of all the editors owned by the LayoutControl.</para>
  1551. </summary>
  1552. <value>A <see cref="T:DevExpress.Utils.AppearanceObject"/> object which provides the appearance settings used to paint the editor’s popup window.</value>
  1553. </member>
  1554. <member name="P:DevExpress.XtraLayout.LayoutAppearanceCollection.ControlDropDownHeader">
  1555. <summary>
  1556. <para>Gets the appearance settings used to paint the header panel within the popup windows of all the editors owned by the LayoutControl.</para>
  1557. </summary>
  1558. <value>A <see cref="T:DevExpress.Utils.AppearanceObject"/> object which provides the appearance settings used to paint the header panel within the popup window.</value>
  1559. </member>
  1560. <member name="P:DevExpress.XtraLayout.LayoutAppearanceCollection.ControlFocused">
  1561. <summary>
  1562. <para>Gets the appearance settings used to paint the currently focused editor within the LayoutControl.</para>
  1563. </summary>
  1564. <value>A <see cref="T:DevExpress.Utils.AppearanceObject"/> object which provides the appearance setting used to paint the currently focused editor within the LayoutControl.</value>
  1565. </member>
  1566. <member name="P:DevExpress.XtraLayout.LayoutAppearanceCollection.ControlReadOnly">
  1567. <summary>
  1568. <para>Gets the appearance settings used to paint the contents of the editors owned by the LayoutControl when they are in the read-only state. This option is only in effect for DevExpress controls that support the <see cref="T:DevExpress.XtraEditors.StyleController"/> mechanism.</para>
  1569. </summary>
  1570. <value>A <see cref="T:DevExpress.Utils.AppearanceObject"/> object which provides the corresponding appearance settings.</value>
  1571. </member>
  1572. <member name="P:DevExpress.XtraLayout.LayoutAppearanceCollection.DisabledLayoutGroupCaption">
  1573. <summary>
  1574. <para>Gets the appearance settings used to paint captions of disabled layout groups.</para>
  1575. </summary>
  1576. <value>An <see cref="T:DevExpress.Utils.AppearanceObject"/> object that contains corresponding appearance settings.</value>
  1577. </member>
  1578. <member name="P:DevExpress.XtraLayout.LayoutAppearanceCollection.DisabledLayoutItem">
  1579. <summary>
  1580. <para>Gets the appearance settings used to paint captions of disabled layout items or items that display disabled controls.</para>
  1581. </summary>
  1582. <value>An <see cref="T:DevExpress.Utils.AppearanceObject"/> object that contains corresponding appearance settings.</value>
  1583. </member>
  1584. <member name="T:DevExpress.XtraLayout.LayoutControl">
  1585. <summary>
  1586. <para>Creates and maintains a consistent layout of controls. See Layout and Data Layout Controls.</para>
  1587. </summary>
  1588. </member>
  1589. <member name="M:DevExpress.XtraLayout.LayoutControl.#ctor">
  1590. <summary>
  1591. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> class.</para>
  1592. </summary>
  1593. </member>
  1594. <member name="M:DevExpress.XtraLayout.LayoutControl.#ctor(System.Boolean)">
  1595. <summary>
  1596. <para>This constructor supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  1597. </summary>
  1598. <param name="createFast">A Boolean value.</param>
  1599. </member>
  1600. <member name="M:DevExpress.XtraLayout.LayoutControl.#ctor(System.Boolean,System.Boolean)">
  1601. <summary>
  1602. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> class with the specified settings.</para>
  1603. </summary>
  1604. <param name="fAllowUseSplitters">true to allow use splitters; otherwise, false.</param>
  1605. <param name="fAllowUseTabbedGroup">true to allow use tabbed groups; otherwise, false.</param>
  1606. </member>
  1607. <member name="M:DevExpress.XtraLayout.LayoutControl.About">
  1608. <summary>
  1609. <para>Activates the layout control’s About dialog box.</para>
  1610. </summary>
  1611. </member>
  1612. <member name="M:DevExpress.XtraLayout.LayoutControl.AddGroup">
  1613. <summary>
  1614. <para>Creates a new layout group with the default layout type and adds it to the root group.</para>
  1615. </summary>
  1616. <returns>The newly created group.</returns>
  1617. </member>
  1618. <member name="M:DevExpress.XtraLayout.LayoutControl.AddGroup(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  1619. <summary>
  1620. <para>Creates a new layout group at a position relative to an item within the root group.</para>
  1621. </summary>
  1622. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the root group) next to which a new group is inserted.</param>
  1623. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified item.</param>
  1624. <returns>The newly created group.</returns>
  1625. </member>
  1626. <member name="M:DevExpress.XtraLayout.LayoutControl.AddGroup(DevExpress.XtraLayout.LayoutGroup)">
  1627. <summary>
  1628. <para>Inserts the specified layout group to the root group.</para>
  1629. </summary>
  1630. <param name="newGroup">The group to add to the root group.</param>
  1631. <returns>The added group.</returns>
  1632. </member>
  1633. <member name="M:DevExpress.XtraLayout.LayoutControl.AddGroup(DevExpress.XtraLayout.LayoutGroup,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  1634. <summary>
  1635. <para>Inserts the specified layout group at a position relative to an item within the root group.</para>
  1636. </summary>
  1637. <param name="newGroup">The group to add to the root group.</param>
  1638. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the root group) next to which the ‘newGroup’ is inserted.</param>
  1639. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified item.</param>
  1640. <returns>The added group.</returns>
  1641. </member>
  1642. <member name="M:DevExpress.XtraLayout.LayoutControl.AddGroup(System.String)">
  1643. <summary>
  1644. <para>Creates a new layout group with the default layout type and the specified caption, and adds it to the root group.</para>
  1645. </summary>
  1646. <param name="text">A <see cref="T:System.String"/> value that specifies the group’s caption. This value is assigned to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  1647. <returns>The newly created group.</returns>
  1648. </member>
  1649. <member name="M:DevExpress.XtraLayout.LayoutControl.AddGroup(System.String,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  1650. <summary>
  1651. <para>Creates a new layout group with the specified caption at a position relative to an item within the root group.</para>
  1652. </summary>
  1653. <param name="text">A <see cref="T:System.String"/> value that specifies the group’s caption. This value is assigned to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  1654. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the root group) next to which a new group is inserted.</param>
  1655. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified item.</param>
  1656. <returns>The newly created group.</returns>
  1657. </member>
  1658. <member name="M:DevExpress.XtraLayout.LayoutControl.AddItem">
  1659. <summary>
  1660. <para>Creates a new layout item with the default layout type and adds it to the root group.</para>
  1661. </summary>
  1662. <returns>The newly created layout item.</returns>
  1663. </member>
  1664. <member name="M:DevExpress.XtraLayout.LayoutControl.AddItem(DevExpress.XtraLayout.BaseLayoutItem)">
  1665. <summary>
  1666. <para>Inserts the specified layout item to the root group.</para>
  1667. </summary>
  1668. <param name="newItem">The item to add to the root group.</param>
  1669. <returns>The added item.</returns>
  1670. </member>
  1671. <member name="M:DevExpress.XtraLayout.LayoutControl.AddItem(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  1672. <summary>
  1673. <para>Inserts the specified layout item at a position relative to an item within the root group.</para>
  1674. </summary>
  1675. <param name="newItem">The item to add to the root group.</param>
  1676. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the root group) next to which the ‘newItem’ is inserted.</param>
  1677. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new item relative to the specified item.</param>
  1678. <returns>The added item.</returns>
  1679. </member>
  1680. <member name="M:DevExpress.XtraLayout.LayoutControl.AddItem(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  1681. <summary>
  1682. <para>Creates a new layout item at a position relative to another item within the root group.</para>
  1683. </summary>
  1684. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the root group) next to which a new item is inserted.</param>
  1685. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new item relative to the specified baseItem.</param>
  1686. <returns>The newly created layout item.</returns>
  1687. </member>
  1688. <member name="M:DevExpress.XtraLayout.LayoutControl.AddItem(System.String)">
  1689. <summary>
  1690. <para>Creates a new layout item with the specified text and adds it to the root group.</para>
  1691. </summary>
  1692. <param name="text">A <see cref="T:System.String"/> value that specifies the layout item’s text.</param>
  1693. <returns>The newly created layout item.</returns>
  1694. </member>
  1695. <member name="M:DevExpress.XtraLayout.LayoutControl.AddItem(System.String,System.Windows.Forms.Control)">
  1696. <summary>
  1697. <para>Creates a new layout item with the specified text and control, and adds it to the root group.</para>
  1698. </summary>
  1699. <param name="text">A <see cref="T:System.String"/> value that specifies the layout item’s text.</param>
  1700. <param name="control">The control to display in the new layout item. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.LayoutControlItem.Control"/> property.</param>
  1701. <returns>The newly created layout item.</returns>
  1702. </member>
  1703. <member name="M:DevExpress.XtraLayout.LayoutControl.AddItem(System.String,System.Windows.Forms.Control,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  1704. <summary>
  1705. <para>Inserts the specified layout item at a position relative to another item within the root group. Allows a new text to be specified for the item.</para>
  1706. </summary>
  1707. <param name="text">A <see cref="T:System.String"/> value that specifies the new text to be assigned to the added item. The parameter is ignored if the value represents an empty string.</param>
  1708. <param name="control">This parameter is ignored.</param>
  1709. <param name="newItem">The item to add to the root group.</param>
  1710. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the root group) next to which the ‘newItem’ is inserted.</param>
  1711. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new item relative to the specified item.</param>
  1712. <returns>The newly created layout item.</returns>
  1713. </member>
  1714. <member name="M:DevExpress.XtraLayout.LayoutControl.AddItem(System.String,System.Windows.Forms.Control,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  1715. <summary>
  1716. <para>Creates a new layout item with the specified text and control, and adds it at a position relative to another item within the root group.</para>
  1717. </summary>
  1718. <param name="text">A <see cref="T:System.String"/> value that specifies the layout item’s text.</param>
  1719. <param name="control">The control to display in the new layout item. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.LayoutControlItem.Control"/> property.</param>
  1720. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the root group) next to which a new item is inserted.</param>
  1721. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new item relative to the specified baseItem.</param>
  1722. <returns>The newly created layout item.</returns>
  1723. </member>
  1724. <member name="M:DevExpress.XtraLayout.LayoutControl.AddTabbedGroup">
  1725. <summary>
  1726. <para>Creates a new tabbed group with the default layout type and adds it to the root group.</para>
  1727. </summary>
  1728. <returns>The newly created group.</returns>
  1729. </member>
  1730. <member name="M:DevExpress.XtraLayout.LayoutControl.AddTabbedGroup(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  1731. <summary>
  1732. <para>Creates a new tabbed group and adds it at a position relative to an item within the root group.</para>
  1733. </summary>
  1734. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the root group) next to which a new group is inserted.</param>
  1735. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new tabbed group relative to the baseItem.</param>
  1736. <returns>The newly created group.</returns>
  1737. </member>
  1738. <member name="M:DevExpress.XtraLayout.LayoutControl.AddTabbedGroup(DevExpress.XtraLayout.TabbedGroup)">
  1739. <summary>
  1740. <para>Inserts the specified tabbed group to the root group.</para>
  1741. </summary>
  1742. <param name="newTabbedGroup">The group to add to the root group.</param>
  1743. <returns>The added group.</returns>
  1744. </member>
  1745. <member name="M:DevExpress.XtraLayout.LayoutControl.AddTabbedGroup(DevExpress.XtraLayout.TabbedGroup,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  1746. <summary>
  1747. <para>Inserts the specified tabbed group at a position relative to an item within the root group.</para>
  1748. </summary>
  1749. <param name="newTabbedGroup">The group to add to the root group.</param>
  1750. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the root group) next to which the ‘newTabbedGroup’ is inserted.</param>
  1751. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new tabbed group relative to the specified item.</param>
  1752. <returns>The added group.</returns>
  1753. </member>
  1754. <member name="P:DevExpress.XtraLayout.LayoutControl.AllowCustomization">
  1755. <summary>
  1756. <para>Gets or sets whether users can change the layout.</para>
  1757. </summary>
  1758. <value>true if users can activate customization mode at runtime; otherwise, false.</value>
  1759. </member>
  1760. <member name="P:DevExpress.XtraLayout.LayoutControl.AllowCustomizationDefaultValue">
  1761. <summary>
  1762. <para>Gets or sets a default value for the <see cref="P:DevExpress.XtraLayout.LayoutControl.AllowCustomization"/> property. The default value is true.</para>
  1763. </summary>
  1764. <value>true if users can customize the layout; otherwise, false.</value>
  1765. </member>
  1766. <member name="P:DevExpress.XtraLayout.LayoutControl.AllowCustomizationMenu">
  1767. <summary>
  1768. <para>Gets or sets whether the customization menu can be invoked by end-users.</para>
  1769. </summary>
  1770. <value>true, to allow end-users to invoke the customization menu; otherwise, false.</value>
  1771. </member>
  1772. <member name="P:DevExpress.XtraLayout.LayoutControl.AllowTouchGestures">
  1773. <summary>
  1774. <para>Gets or sets whether the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> allows touch gestures.</para>
  1775. </summary>
  1776. <value>true, to enable touch gestures; otherwise, false.</value>
  1777. </member>
  1778. <member name="P:DevExpress.XtraLayout.LayoutControl.Appearance">
  1779. <summary>
  1780. <para>Provides access to the properties that control the appearance of the controls located within the layout control.</para>
  1781. </summary>
  1782. <value>A <see cref="T:DevExpress.XtraLayout.LayoutAppearanceCollection"/> object which provides the appearance settings for the layout controls.</value>
  1783. </member>
  1784. <member name="P:DevExpress.XtraLayout.LayoutControl.AppearanceController">
  1785. <summary>
  1786. <para>Gets an object that calculates appearances for layout items based on the appearance settings of items and their parent layout groups.</para>
  1787. </summary>
  1788. <value>An DevExpress.XtraLayout.Helpers.AppearanceController object.</value>
  1789. </member>
  1790. <member name="M:DevExpress.XtraLayout.LayoutControl.AssignNames">
  1791. <summary>
  1792. <para>Assigns the unique names to the items contained within the <see cref="P:DevExpress.XtraLayout.LayoutControl.Items"/> collection.</para>
  1793. </summary>
  1794. </member>
  1795. <member name="P:DevExpress.XtraLayout.LayoutControl.AutoScroll">
  1796. <summary>
  1797. <para>Gets or sets whether the layout control will allow an end-user to scroll to any controls placed outside of its visible boundaries.</para>
  1798. </summary>
  1799. <value>true to enable the auto-scrolling feature; otherwise, false.</value>
  1800. </member>
  1801. <member name="P:DevExpress.XtraLayout.LayoutControl.AutoScrollMargin">
  1802. <summary>
  1803. <para>Not supported.</para>
  1804. </summary>
  1805. <value>A <see cref="F:System.Drawing.Size.Empty"/> structure.</value>
  1806. </member>
  1807. <member name="P:DevExpress.XtraLayout.LayoutControl.AutoScrollMinSize">
  1808. <summary>
  1809. <para>Not supported.</para>
  1810. </summary>
  1811. <value>A <see cref="F:System.Drawing.Size.Empty"/> structure.</value>
  1812. </member>
  1813. <member name="P:DevExpress.XtraLayout.LayoutControl.AutoScrollPosition">
  1814. <summary>
  1815. <para>This property is not supported by the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> class.</para>
  1816. </summary>
  1817. <value></value>
  1818. </member>
  1819. <member name="P:DevExpress.XtraLayout.LayoutControl.AutoSize">
  1820. <summary>
  1821. <para>Gets or sets whether the control’s size is automatically calculated based on its content.</para>
  1822. </summary>
  1823. <value>true if the control’s size is automatically calculated; otherwise, false.</value>
  1824. </member>
  1825. <member name="P:DevExpress.XtraLayout.LayoutControl.AutoSizeMode">
  1826. <summary>
  1827. <para>Gets or sets how the control is resized when automatic resizing is enabled.</para>
  1828. </summary>
  1829. <value>A value that specifies how the control is automatically resized.</value>
  1830. </member>
  1831. <member name="P:DevExpress.XtraLayout.LayoutControl.BackColor">
  1832. <summary>
  1833. <para>Gets or sets the control’s background color.</para>
  1834. </summary>
  1835. <value>A <see cref="T:System.Drawing.Color"/> that represents the control’s background color.</value>
  1836. </member>
  1837. <member name="P:DevExpress.XtraLayout.LayoutControl.BackgroundImage">
  1838. <summary>
  1839. <para>Gets or sets the layout control’s background image.</para>
  1840. </summary>
  1841. <value>A <see cref="T:System.Drawing.Image"/> descendant that represents the layout control’s background image.</value>
  1842. </member>
  1843. <member name="P:DevExpress.XtraLayout.LayoutControl.BackgroundImageLayout">
  1844. <summary>
  1845. <para>Gets or sets the background image layout as defined in the ImageLayout enumeration.</para>
  1846. </summary>
  1847. <value>A <see cref="T:System.Windows.Forms.ImageLayout"/> value.</value>
  1848. </member>
  1849. <member name="E:DevExpress.XtraLayout.LayoutControl.BeforeLoadLayout">
  1850. <summary>
  1851. <para>Occurs before a layout is restored from storage (a stream, xml file or the system registry).</para>
  1852. </summary>
  1853. </member>
  1854. <member name="M:DevExpress.XtraLayout.LayoutControl.BeginInit">
  1855. <summary>
  1856. <para>Starts the layout control’s runtime initialization.</para>
  1857. </summary>
  1858. </member>
  1859. <member name="M:DevExpress.XtraLayout.LayoutControl.BeginUpdate">
  1860. <summary>
  1861. <para>Locks the <see cref="T:DevExpress.XtraLayout.LayoutControl"></see> object by preventing visual updates of the object and its elements until the EndUpdate method is called.</para>
  1862. </summary>
  1863. </member>
  1864. <member name="M:DevExpress.XtraLayout.LayoutControl.BestFit">
  1865. <summary>
  1866. <para>Proportionally resizes layout items that are displayed in a single row.</para>
  1867. </summary>
  1868. </member>
  1869. <member name="P:DevExpress.XtraLayout.LayoutControl.BindingContext">
  1870. <summary>
  1871. <para>Gets or sets the <see cref="T:System.Windows.Forms.BindingContext"/> for the control.</para>
  1872. </summary>
  1873. <value>A <see cref="T:System.Windows.Forms.BindingContext"/> for the control.</value>
  1874. </member>
  1875. <member name="M:DevExpress.XtraLayout.LayoutControl.CalcHitInfo(System.Drawing.Point)">
  1876. <summary>
  1877. <para>Returns information on the layout elements located at the specified point.</para>
  1878. </summary>
  1879. <param name="hitPoint">A <see cref="T:System.Drawing.Point"/> structure which specifies the test point coordinates relative to the layout controls top-left corner.</param>
  1880. <returns>A <see cref="T:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo"/> object which contains information about the layout elements located at the test point.</returns>
  1881. </member>
  1882. <member name="P:DevExpress.XtraLayout.LayoutControl.CaptionImages">
  1883. <summary>
  1884. <para>Gets or sets a collection of images that can be displayed within layout group captions.</para>
  1885. </summary>
  1886. <value>An object which represents the image source.</value>
  1887. </member>
  1888. <member name="E:DevExpress.XtraLayout.LayoutControl.Changed">
  1889. <summary>
  1890. <para>Fires when a property of the layout control is changed.</para>
  1891. </summary>
  1892. </member>
  1893. <member name="E:DevExpress.XtraLayout.LayoutControl.Changing">
  1894. <summary>
  1895. <para>Fires when a property of the layout control is about to be changed.</para>
  1896. </summary>
  1897. </member>
  1898. <member name="M:DevExpress.XtraLayout.LayoutControl.Clear">
  1899. <summary>
  1900. <para>Disposes all the layout items and their controls owned by the Layout Control. Hidden items are not removed.</para>
  1901. </summary>
  1902. </member>
  1903. <member name="M:DevExpress.XtraLayout.LayoutControl.Clear(System.Boolean,System.Boolean)">
  1904. <summary>
  1905. <para>Clears items, allowing hidden items to be removed.</para>
  1906. </summary>
  1907. <param name="clearHiddenItems">true to clear the <see cref="P:DevExpress.XtraLayout.LayoutControl.HiddenItems"/> collection; otherwise, false.</param>
  1908. <param name="disposeControls">true to dispose of controls associated with layout items; otherwise, false.</param>
  1909. </member>
  1910. <member name="P:DevExpress.XtraLayout.LayoutControl.ClientHeight">
  1911. <summary>
  1912. <para>Gets the layout control’s client height.</para>
  1913. </summary>
  1914. <value>An integer value that specifies the layout control’s client height.</value>
  1915. </member>
  1916. <member name="P:DevExpress.XtraLayout.LayoutControl.ClientWidth">
  1917. <summary>
  1918. <para>Gets the layout control’s client width.</para>
  1919. </summary>
  1920. <value>An integer value that specifies the layout control’s client width.</value>
  1921. </member>
  1922. <member name="P:DevExpress.XtraLayout.LayoutControl.ConstraintsManager">
  1923. <summary>
  1924. <para>Gets the constraints manager.</para>
  1925. </summary>
  1926. <value>A DevExpress.XtraLayout.ConstraintsManager object.</value>
  1927. </member>
  1928. <member name="M:DevExpress.XtraLayout.LayoutControl.CreateCustomizationForm">
  1929. <summary>
  1930. <para>Creates and returns a new Customization Form.</para>
  1931. </summary>
  1932. <returns>A DevExpress.XtraLayout.Customization.UserCustomizationForm object which represents the created Customization Form.</returns>
  1933. </member>
  1934. <member name="M:DevExpress.XtraLayout.LayoutControl.CreateEmptySpaceItem(DevExpress.XtraLayout.LayoutGroup)">
  1935. <summary>
  1936. <para>Creates an Empty Space Items within the specified group.</para>
  1937. </summary>
  1938. <param name="parent">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object which specifies the parent group for the created item.</param>
  1939. <returns>An <see cref="T:DevExpress.XtraLayout.EmptySpaceItem"/> object that has been created.</returns>
  1940. </member>
  1941. <member name="M:DevExpress.XtraLayout.LayoutControl.CreateLayoutGroup(DevExpress.XtraLayout.LayoutGroup)">
  1942. <summary>
  1943. <para>Creates a new Layout Groups within the specified group.</para>
  1944. </summary>
  1945. <param name="parent">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object which specifies the parent group for the created group.</param>
  1946. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object which represents the newly created group.</returns>
  1947. </member>
  1948. <member name="M:DevExpress.XtraLayout.LayoutControl.CreateLayoutItem(DevExpress.XtraLayout.LayoutGroup)">
  1949. <summary>
  1950. <para>Creates a new Layout Item within the specified group.</para>
  1951. </summary>
  1952. <param name="parent">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object which specifies the parent group for the created item.</param>
  1953. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/> object which represents the newly created item.</returns>
  1954. </member>
  1955. <member name="M:DevExpress.XtraLayout.LayoutControl.CreateSplitterItem(DevExpress.XtraLayout.LayoutGroup)">
  1956. <summary>
  1957. <para>Creates a <see cref="T:DevExpress.XtraLayout.SplitterItem"/> within the specified group.</para>
  1958. </summary>
  1959. <param name="parent">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object which represents the parent group for the created item.</param>
  1960. <returns>A <see cref="T:DevExpress.XtraLayout.SplitterItem"/> object that has been created.</returns>
  1961. </member>
  1962. <member name="M:DevExpress.XtraLayout.LayoutControl.CreateTabbedGroup(DevExpress.XtraLayout.LayoutGroup)">
  1963. <summary>
  1964. <para>Creates a new Tabbed Group within the specified group.</para>
  1965. </summary>
  1966. <param name="parent">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object which specifies the parent group for the created group.</param>
  1967. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object which represents the newly created tabbed group.</returns>
  1968. </member>
  1969. <member name="P:DevExpress.XtraLayout.LayoutControl.Cursor">
  1970. <summary>
  1971. <para>Gets or sets the cursor that is displayed when the mouse pointer is over the control.</para>
  1972. </summary>
  1973. <value>A <see cref="T:System.Windows.Forms.Cursor"/> object.</value>
  1974. </member>
  1975. <member name="E:DevExpress.XtraLayout.LayoutControl.CustomDraw">
  1976. <summary>
  1977. <para>Allows you to custom paint individual items in the LayoutControl.</para>
  1978. </summary>
  1979. </member>
  1980. <member name="P:DevExpress.XtraLayout.LayoutControl.CustomizationForm">
  1981. <summary>
  1982. <para>Provides access to the Customization Form.</para>
  1983. </summary>
  1984. <value>A DevExpress.XtraLayout.Customization.UserCustomizationForm object which represents the Customization Form.</value>
  1985. </member>
  1986. <member name="P:DevExpress.XtraLayout.LayoutControl.CustomizationFormBounds">
  1987. <summary>
  1988. <para>Gets or sets the boundaries of the Customization Form.</para>
  1989. </summary>
  1990. <value>A <see cref="T:System.Drawing.Rectangle"/> structure which represents the Customization Form’s boundaries.</value>
  1991. </member>
  1992. <member name="P:DevExpress.XtraLayout.LayoutControl.CustomizationMenuManager">
  1993. <summary>
  1994. <para>An object which provides the Context Menu.</para>
  1995. </summary>
  1996. <value>A DevExpress.XtraLayout.Customization.RightButtonMenuManager object.</value>
  1997. </member>
  1998. <member name="P:DevExpress.XtraLayout.LayoutControl.CustomizationMode">
  1999. <summary>
  2000. <para>Gets or sets whether users customize the layout in default mode via context menus or in quick mode via the customization form.</para>
  2001. </summary>
  2002. <value>The customization mode used to adjust the layout by end-users.</value>
  2003. </member>
  2004. <member name="E:DevExpress.XtraLayout.LayoutControl.DefaultLayoutLoaded">
  2005. <summary>
  2006. <para>Fires after the default layout (the layout saved by the <see cref="M:DevExpress.XtraLayout.LayoutControl.SetDefaultLayout"/> method) has been loaded.</para>
  2007. </summary>
  2008. </member>
  2009. <member name="E:DevExpress.XtraLayout.LayoutControl.DefaultLayoutLoading">
  2010. <summary>
  2011. <para>Fires before loading the default layout (the layout saved by the <see cref="M:DevExpress.XtraLayout.LayoutControl.SetDefaultLayout"/> method).</para>
  2012. </summary>
  2013. </member>
  2014. <member name="P:DevExpress.XtraLayout.LayoutControl.EnabledStateController">
  2015. <summary>
  2016. <para>Gets an object that calculates the enabled states for layout items based on the enabled states of layout groups and controls.</para>
  2017. </summary>
  2018. <value>An DevExpress.XtraLayout.Helpers.EnabledStateController object.</value>
  2019. </member>
  2020. <member name="M:DevExpress.XtraLayout.LayoutControl.EndInit">
  2021. <summary>
  2022. <para>Ends the layout control’s runtime initialization.</para>
  2023. </summary>
  2024. </member>
  2025. <member name="M:DevExpress.XtraLayout.LayoutControl.EndUpdate">
  2026. <summary>
  2027. <para>Unlocks the <see cref="T:DevExpress.XtraLayout.LayoutControl"></see> object after a call to the BeginUpdate method and causes an immediate visual update.</para>
  2028. </summary>
  2029. </member>
  2030. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportLayout(System.IO.Stream)">
  2031. <summary>
  2032. <para>Exports the contents of the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> to the specified stream in XML format.</para>
  2033. </summary>
  2034. <param name="stream">A <see cref="T:System.IO.Stream"/> object which specifies the stream to which the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> is exported in XML format.</param>
  2035. </member>
  2036. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToCsv(System.IO.Stream)">
  2037. <summary />
  2038. <param name="stream"></param>
  2039. </member>
  2040. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToCsv(System.IO.Stream,DevExpress.XtraPrinting.CsvExportOptions)">
  2041. <summary />
  2042. <param name="stream"></param>
  2043. <param name="options"></param>
  2044. </member>
  2045. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToCsv(System.String)">
  2046. <summary />
  2047. <param name="filePath"></param>
  2048. </member>
  2049. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToCsv(System.String,DevExpress.XtraPrinting.CsvExportOptions)">
  2050. <summary />
  2051. <param name="filePath"></param>
  2052. <param name="options"></param>
  2053. </member>
  2054. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToDocx(System.IO.Stream)">
  2055. <summary>
  2056. <para>Exports the control’s data in the Office Open XML file format (DOCX file) and sends it to the specified stream.</para>
  2057. </summary>
  2058. <param name="stream">A System.IO.Stream object to which the created document should be exported.</param>
  2059. </member>
  2060. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToDocx(System.String)">
  2061. <summary>
  2062. <para>Exports the control’s data in the Office Open XML file format and saves it to the specified DOCX file.</para>
  2063. </summary>
  2064. <param name="filePath">A System.String value which specifies the full path (including the file name and extension) where the DOCX file should be created.</param>
  2065. </member>
  2066. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToHtml(System.IO.Stream)">
  2067. <summary>
  2068. <para>Exports the controls displayed within the LayoutControl to a stream in HTML format</para>
  2069. </summary>
  2070. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2071. </member>
  2072. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToHtml(System.IO.Stream,DevExpress.XtraPrinting.HtmlExportOptions)">
  2073. <summary>
  2074. <para>Exports the control’s data to the specified stream in HTML format using the specified options.</para>
  2075. </summary>
  2076. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2077. <param name="options">A <see cref="T:DevExpress.XtraPrinting.HtmlExportOptions"/> object which specifies the export options to be applied when the control is exported.</param>
  2078. </member>
  2079. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToHtml(System.IO.Stream,System.String,System.String,System.Boolean)">
  2080. <summary>
  2081. <para>Exports the controls displayed within the LayoutControl to a stream in HTML format using the specified character encoding, with the specified title. The output file can be compressed (secondary characters e.g. spaces are removed) if required.</para>
  2082. </summary>
  2083. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2084. <param name="htmlCharSet">A <see cref="T:System.String"/> representing the encoding name set in the output document (e.g. “UTF-8”).</param>
  2085. <param name="title">A <see cref="T:System.String"/> containing the name shown as the title of the created document.</param>
  2086. <param name="compressed">true if the HTML code is compressed (secondary characters e.g. spaces are removed); otherwise, false.</param>
  2087. </member>
  2088. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToHtml(System.String)">
  2089. <summary>
  2090. <para>Exports the controls displayed within the LayoutControl to a file in HTML format</para>
  2091. </summary>
  2092. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2093. </member>
  2094. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToHtml(System.String,DevExpress.XtraPrinting.HtmlExportOptions)">
  2095. <summary>
  2096. <para>Exports the control’s data to the specified file in HTML format using the specified options.</para>
  2097. </summary>
  2098. <param name="filePath">A <see cref="T:System.String"/> which specifies the name (including the full path) of the file to which the control is exported.</param>
  2099. <param name="options">A <see cref="T:DevExpress.XtraPrinting.HtmlExportOptions"/> object which specifies the export options to be applied when the control is exported.</param>
  2100. </member>
  2101. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToHtml(System.String,System.String)">
  2102. <summary>
  2103. <para>Exports the controls displayed within the LayoutControl to a file in HTML format using the specified character encoding.</para>
  2104. </summary>
  2105. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2106. <param name="htmlCharSet">A <see cref="T:System.String"/> representing the encoding name set in the output document (e.g. “UTF-8”).</param>
  2107. </member>
  2108. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToHtml(System.String,System.String,System.String,System.Boolean)">
  2109. <summary>
  2110. <para>Exports the controls displayed within the LayoutControl to a file in HTML format using the specified character encoding, with the specified title. The output file can be compressed (secondary characters e.g. spaces are removed) if required.</para>
  2111. </summary>
  2112. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2113. <param name="htmlCharSet">A <see cref="T:System.String"/> representing the encoding name set in the output document (e.g. “UTF-8”).</param>
  2114. <param name="title">A <see cref="T:System.String"/> containing the name shown as the title of the created document.</param>
  2115. <param name="compressed">true if the HTML code is compressed (secondary characters e.g. spaces are removed); otherwise, false.</param>
  2116. </member>
  2117. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToMht(System.IO.Stream,DevExpress.XtraPrinting.MhtExportOptions)">
  2118. <summary>
  2119. <para>Exports the control’s data to the specified stream in MHT format using the specified options.</para>
  2120. </summary>
  2121. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2122. <param name="options">A <see cref="T:DevExpress.XtraPrinting.MhtExportOptions"/> object which specifies the export options to be applied when the control is exported.</param>
  2123. </member>
  2124. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToMht(System.IO.Stream,System.String,System.String,System.Boolean)">
  2125. <summary>
  2126. <para>Exports the controls displayed within the LayoutControl to a stream in MHT format using the specified character encoding, with the specified title. The output file can be compressed (secondary characters e.g. spaces are removed) if required.</para>
  2127. </summary>
  2128. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2129. <param name="htmlCharSet">A <see cref="T:System.String"/> representing the encoding name set in the output document (e.g. “UTF-8”).</param>
  2130. <param name="title">A <see cref="T:System.String"/> containing the name shown as the title of the created document.</param>
  2131. <param name="compressed">true if the MHT code is compressed (secondary characters e.g. spaces are removed); otherwise, false.</param>
  2132. </member>
  2133. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToMht(System.String)">
  2134. <summary>
  2135. <para>Exports the controls displayed within the LayoutControl to a file in MHT format.</para>
  2136. </summary>
  2137. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2138. </member>
  2139. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToMht(System.String,DevExpress.XtraPrinting.MhtExportOptions)">
  2140. <summary>
  2141. <para>Exports the control’s data to the specified file in MHT format using the specified options.</para>
  2142. </summary>
  2143. <param name="filePath">A <see cref="T:System.String"/> which specifies the name (including the full path) of the file to which the control is exported.</param>
  2144. <param name="options">A <see cref="T:DevExpress.XtraPrinting.MhtExportOptions"/> object which specifies the export options to be applied when the control is exported.</param>
  2145. </member>
  2146. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToMht(System.String,System.String)">
  2147. <summary>
  2148. <para>Exports the controls displayed within the LayoutControl to a file in MHT format using the specified character encoding.</para>
  2149. </summary>
  2150. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2151. <param name="htmlCharSet">A <see cref="T:System.String"/> representing the encoding name set in the output document (e.g. “UTF-8”).</param>
  2152. </member>
  2153. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToMht(System.String,System.String,System.String,System.Boolean)">
  2154. <summary>
  2155. <para>Exports the controls displayed within the LayoutControl to a file in MHT format using the specified character encoding, with the specified title. The output file can be compressed (secondary characters e.g. spaces are removed) if required.</para>
  2156. </summary>
  2157. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2158. <param name="htmlCharSet">A <see cref="T:System.String"/> representing the encoding name set in the output document (e.g. “UTF-8”).</param>
  2159. <param name="title">A <see cref="T:System.String"/> containing the name shown as the title of the created document.</param>
  2160. <param name="compressed">true if the MHT code is compressed (secondary characters e.g. spaces are removed); otherwise, false.</param>
  2161. </member>
  2162. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToPdf(System.IO.Stream)">
  2163. <summary>
  2164. <para>Exports the controls displayed within the LayoutControl to a stream in PDF format.</para>
  2165. </summary>
  2166. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2167. </member>
  2168. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToPdf(System.String)">
  2169. <summary>
  2170. <para>Exports the controls displayed within the LayoutControl to a file in PDF format.</para>
  2171. </summary>
  2172. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2173. </member>
  2174. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToRtf(System.IO.Stream)">
  2175. <summary>
  2176. <para>Exports the controls displayed within the LayoutControl to a stream in RTF format.</para>
  2177. </summary>
  2178. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2179. </member>
  2180. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToRtf(System.String)">
  2181. <summary>
  2182. <para>Exports the controls displayed within the LayoutControl to a file in RTF format.</para>
  2183. </summary>
  2184. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2185. </member>
  2186. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToText(System.IO.Stream)">
  2187. <summary>
  2188. <para>Exports the controls displayed within the LayoutControl to a stream in TXT format.</para>
  2189. </summary>
  2190. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2191. </member>
  2192. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToText(System.IO.Stream,DevExpress.XtraPrinting.TextExportOptions)">
  2193. <summary>
  2194. <para>Exports the control’s data to the specified stream in Text format using the specified options.</para>
  2195. </summary>
  2196. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2197. <param name="options">A <see cref="T:DevExpress.XtraPrinting.TextExportOptions"/> object which specifies the export options to be applied when the control is exported.</param>
  2198. </member>
  2199. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToText(System.IO.Stream,System.String)">
  2200. <summary>
  2201. <para>Exports the controls displayed within the LayoutControl to a stream in TXT format using the specified separator string.</para>
  2202. </summary>
  2203. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2204. <param name="separator">A <see cref="T:System.String"/> containing symbols which will be used to separate the document’s text elements in the created text file.</param>
  2205. </member>
  2206. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToText(System.IO.Stream,System.String,System.Boolean)">
  2207. <summary>
  2208. <para>Exports the controls displayed within the LayoutControl to a stream in TXT format using the specified separator string and quotation settings.</para>
  2209. </summary>
  2210. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2211. <param name="separator">A <see cref="T:System.String"/> containing symbols which will be used to separate the document’s text elements in the created text file.</param>
  2212. <param name="quoteStringsWithSeparators">true to quote (place quotation marks around) text elements that contain symbols which coincide with the specified separator string; otherwise, false.</param>
  2213. </member>
  2214. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToText(System.IO.Stream,System.String,System.Boolean,System.Text.Encoding)">
  2215. <summary>
  2216. <para>Exports the controls displayed within the LayoutControl to a stream in TXT format using the specified separator string, quotation and text encoding settings.</para>
  2217. </summary>
  2218. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2219. <param name="separator">A <see cref="T:System.String"/> containing symbols which will be used to separate the document’s text elements in the created text file.</param>
  2220. <param name="quoteStringsWithSeparators">true to quote (place quotation marks around) text elements that contain symbols which coincide with the specified separator string; otherwise, false.</param>
  2221. <param name="encoding">A <see cref="T:System.Text.Encoding"/> class descendant specifying the encoding of the created text document.</param>
  2222. </member>
  2223. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToText(System.String)">
  2224. <summary>
  2225. <para>Exports the controls displayed within the LayoutControl to a file in TXT format.</para>
  2226. </summary>
  2227. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2228. </member>
  2229. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToText(System.String,DevExpress.XtraPrinting.TextExportOptions)">
  2230. <summary>
  2231. <para>Exports the control’s data to the specified file in Text format using the specified options.</para>
  2232. </summary>
  2233. <param name="filePath">A <see cref="T:System.String"/> which specifies the name (including the full path) of the file to which the control is exported.</param>
  2234. <param name="options">A <see cref="T:DevExpress.XtraPrinting.TextExportOptions"/> object which specifies the export options to be applied when the control is exported.</param>
  2235. </member>
  2236. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToText(System.String,System.String)">
  2237. <summary>
  2238. <para>Exports the controls displayed within the LayoutControl to a file in TXT format using the specified separator string.</para>
  2239. </summary>
  2240. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2241. <param name="separator">A <see cref="T:System.String"/> containing symbols which will be used to separate the document’s text elements in the created text file.</param>
  2242. </member>
  2243. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToText(System.String,System.String,System.Boolean)">
  2244. <summary>
  2245. <para>Exports the controls displayed within the LayoutControl to a file in TXT format using the specified separator string and quotation settings.</para>
  2246. </summary>
  2247. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2248. <param name="separator">A <see cref="T:System.String"/> containing symbols which will be used to separate the document’s text elements in the created text file.</param>
  2249. <param name="quoteStringsWithSeparators">true to quote (place quotation marks around) text elements that contain symbols which coincide with the specified separator string; otherwise, false.</param>
  2250. </member>
  2251. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToText(System.String,System.String,System.Boolean,System.Text.Encoding)">
  2252. <summary>
  2253. <para>Exports the controls displayed within the LayoutControl to a file in TXT format using the specified separator string, quotation and text encoding settings.</para>
  2254. </summary>
  2255. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2256. <param name="separator">A <see cref="T:System.String"/> containing symbols which will be used to separate the document’s text elements in the created text file.</param>
  2257. <param name="quoteStringsWithSeparators">true to quote (place quotation marks around) text elements that contain symbols which coincide with the specified separator string; otherwise, false.</param>
  2258. <param name="encoding">A <see cref="T:System.Text.Encoding"/> class descendant specifying the encoding of the created text document.</param>
  2259. </member>
  2260. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToXls(System.IO.Stream)">
  2261. <summary>
  2262. <para>Exports the controls displayed within the LayoutControl to a stream in XLS format.</para>
  2263. </summary>
  2264. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2265. </member>
  2266. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToXls(System.IO.Stream,DevExpress.XtraPrinting.XlsExportOptions)">
  2267. <summary>
  2268. <para>Exports the control’s data to the specified stream in XLS format using the specified options.</para>
  2269. </summary>
  2270. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2271. <param name="options">A <see cref="T:DevExpress.XtraPrinting.XlsExportOptions"/> object which specifies the XLS export options to be applied when the control is exported.</param>
  2272. </member>
  2273. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToXls(System.IO.Stream,System.Boolean)">
  2274. <summary>
  2275. <para>Exports the controls displayed within the LayoutControl to a stream in XLS format using the specified formatting settings.</para>
  2276. </summary>
  2277. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2278. <param name="useNativeFormat">true to use the data format of the exported controls for the cells in the XLS document; otherwise, false.</param>
  2279. </member>
  2280. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToXls(System.String)">
  2281. <summary>
  2282. <para>Exports the controls displayed within the LayoutControl to a file in XLS format.</para>
  2283. </summary>
  2284. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2285. </member>
  2286. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToXls(System.String,DevExpress.XtraPrinting.XlsExportOptions)">
  2287. <summary>
  2288. <para>Exports the control’s data to the specified file in XLS format using the specified options.</para>
  2289. </summary>
  2290. <param name="filePath">A <see cref="T:System.String"/> which specifies the name (including the full path) of the file to which the control is exported.</param>
  2291. <param name="options">A <see cref="T:DevExpress.XtraPrinting.XlsExportOptions"/> object which specifies the XLS export options to be applied when the control is exported.</param>
  2292. </member>
  2293. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToXls(System.String,System.Boolean)">
  2294. <summary>
  2295. <para>Exports the controls displayed within the LayoutControl to a file in XLS format using the specified formatting settings.</para>
  2296. </summary>
  2297. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2298. <param name="useNativeFormat">true to use the data format of the exported controls for the cells in the XLS document; otherwise, false.</param>
  2299. </member>
  2300. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToXlsx(System.IO.Stream)">
  2301. <summary>
  2302. <para>Exports the controls displayed within the LayoutControl to a stream in XLSX (MS Excel 2007) format.</para>
  2303. </summary>
  2304. <param name="stream">A <see cref="T:System.IO.Stream"/> object, to which the created document is exported.</param>
  2305. </member>
  2306. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToXlsx(System.IO.Stream,DevExpress.XtraPrinting.XlsxExportOptions)">
  2307. <summary>
  2308. <para>Exports data to the specified stream in XLSX (MS Excel 2007) format using the specified options.</para>
  2309. </summary>
  2310. <param name="stream">A <see cref="T:System.IO.Stream"/> object to which data is exported.</param>
  2311. <param name="options">An <see cref="T:DevExpress.XtraPrinting.XlsxExportOptions"/> object that contains export options.</param>
  2312. </member>
  2313. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToXlsx(System.String)">
  2314. <summary>
  2315. <para>Exports the controls displayed within the LayoutControl to a file in XLSX (MS Excel 2007) format.</para>
  2316. </summary>
  2317. <param name="filePath">A <see cref="T:System.String"/> that specifies the full path to the file, to which the created document is exported.</param>
  2318. </member>
  2319. <member name="M:DevExpress.XtraLayout.LayoutControl.ExportToXlsx(System.String,DevExpress.XtraPrinting.XlsxExportOptions)">
  2320. <summary>
  2321. <para>Exports the control’s data to the specified file in XLSX (MS Excel 2007) format using the specified options.</para>
  2322. </summary>
  2323. <param name="filePath">A <see cref="T:System.String"/> which specifies the name (including the full path) of the file to which the data is exported.</param>
  2324. <param name="options">An <see cref="T:DevExpress.XtraPrinting.XlsxExportOptions"/> object which specifies the XLS export options to be applied when the control is exported.</param>
  2325. </member>
  2326. <member name="P:DevExpress.XtraLayout.LayoutControl.FocusHelper">
  2327. <summary>
  2328. <para>For internal use.</para>
  2329. </summary>
  2330. <value></value>
  2331. </member>
  2332. <member name="M:DevExpress.XtraLayout.LayoutControl.GetControlByName(System.String)">
  2333. <summary>
  2334. <para>Returns the control with the specified name, contained within the Layout Control.</para>
  2335. </summary>
  2336. <param name="name">A <see cref="T:System.String"/> value that specifies the control’s name.</param>
  2337. <returns>A <see cref="T:System.Windows.Forms.Control"/> descendant that represents the control with the specified name, contained within the Layout Control. null (Nothing in Visual Basic) if the control isn’t found.</returns>
  2338. </member>
  2339. <member name="M:DevExpress.XtraLayout.LayoutControl.GetControlName(System.Windows.Forms.Control)">
  2340. <summary>
  2341. <para>Gets the specified control’s name.</para>
  2342. </summary>
  2343. <param name="control">A Control object whose name is to be retrieved.</param>
  2344. <returns>A string that specifies the control’s name.</returns>
  2345. </member>
  2346. <member name="M:DevExpress.XtraLayout.LayoutControl.GetGroupAtPoint(System.Drawing.Point)">
  2347. <summary>
  2348. <para>Returns the group which is located at the specified point.</para>
  2349. </summary>
  2350. <param name="p">A <see cref="T:System.Drawing.Point"/> structure which specifies the test point coordinates relative to the layout control’s top-left corner.</param>
  2351. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object which represents the group located at the specified point. null (Nothing in Visual Basic) if there is no group at the specified point.</returns>
  2352. </member>
  2353. <member name="M:DevExpress.XtraLayout.LayoutControl.GetItemByControl(System.Windows.Forms.Control)">
  2354. <summary>
  2355. <para>Returns the layout item contained within the root group which holds the specified control.</para>
  2356. </summary>
  2357. <param name="control">A <see cref="T:System.Windows.Forms.Control"/> object which represents the control whose parent layout item is to be returned.</param>
  2358. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/> object which contains the specified control. null (Nothing in Visual Basic) if there is no layout item within the root group which holds the specified control.</returns>
  2359. </member>
  2360. <member name="M:DevExpress.XtraLayout.LayoutControl.GetItemByControl(System.Windows.Forms.Control,DevExpress.XtraLayout.LayoutControlGroup)">
  2361. <summary>
  2362. <para>Returns the layout item which is contained within the specified group and holds the specified control.</para>
  2363. </summary>
  2364. <param name="control">A <see cref="T:System.Windows.Forms.Control"/> object which represents the control whose parent layout item is to be returned.</param>
  2365. <param name="group">A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object representing the group within which the search is performed.</param>
  2366. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/> object which contains the specified control. null (Nothing in Visual Basic) if there is no layout item within the specified group which holds the specified control.</returns>
  2367. </member>
  2368. <member name="M:DevExpress.XtraLayout.LayoutControl.GetItemByRepositoryItem(DevExpress.XtraEditors.Repository.RepositoryItem,DevExpress.XtraLayout.LayoutControlGroup)">
  2369. <summary>
  2370. <para>Returns the layout item contained in the specified group and holds the control with the specified repository item.</para>
  2371. </summary>
  2372. <param name="repositoryItem">A <see cref="T:DevExpress.XtraEditors.Repository.RepositoryItem"/> object that represents the repository item of the control whose parent layout item is to be returned.</param>
  2373. <param name="group">A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object that represents the group in which the search is performed.</param>
  2374. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/> object that contains the control with the specified repository item. null (Nothing in Visual Basic) if there is no layout item in the specified group which holds the control with the specified repository item.</returns>
  2375. </member>
  2376. <member name="M:DevExpress.XtraLayout.LayoutControl.GetPreferredSize(System.Drawing.Size)">
  2377. <summary>
  2378. <para>Retrieves the size of a rectangular area into which the control can be fit.</para>
  2379. </summary>
  2380. <param name="proposedSize">The custom-sized area for the control.</param>
  2381. <returns>A System.Drawing.Size value.</returns>
  2382. </member>
  2383. <member name="E:DevExpress.XtraLayout.LayoutControl.GroupExpandChanged">
  2384. <summary>
  2385. <para>Fires after a layout group has been expanded/collapsed.</para>
  2386. </summary>
  2387. </member>
  2388. <member name="E:DevExpress.XtraLayout.LayoutControl.GroupExpandChanging">
  2389. <summary>
  2390. <para>Fires when a layout group is about to be expanded or collapsed.</para>
  2391. </summary>
  2392. </member>
  2393. <member name="M:DevExpress.XtraLayout.LayoutControl.HardUpdate">
  2394. <summary>
  2395. <para>Recalculates the view information and immediately updates the LayoutControl.</para>
  2396. </summary>
  2397. </member>
  2398. <member name="P:DevExpress.XtraLayout.LayoutControl.HiddenItems">
  2399. <summary>
  2400. <para>Provides access to a collection of hidden layout items.</para>
  2401. </summary>
  2402. <value>A DevExpress.XtraLayout.HiddenItemsCollection object which represents a collection of hidden layout items.</value>
  2403. </member>
  2404. <member name="P:DevExpress.XtraLayout.LayoutControl.HiddenItemsSortComparer">
  2405. <summary>
  2406. <para>Allows you to specify a comparer object for sorting hidden items within the Customization Form.</para>
  2407. </summary>
  2408. <value>An object implementing the <see cref="T:System.Collections.IComparer"/> interface, which is used to sort hidden items; null if no object has been assigned.</value>
  2409. </member>
  2410. <member name="E:DevExpress.XtraLayout.LayoutControl.HideCustomization">
  2411. <summary>
  2412. <para>Fires before the Customization Form is closed.</para>
  2413. </summary>
  2414. </member>
  2415. <member name="M:DevExpress.XtraLayout.LayoutControl.HideCustomizationForm">
  2416. <summary>
  2417. <para>Closes the Customization Form.</para>
  2418. </summary>
  2419. </member>
  2420. <member name="M:DevExpress.XtraLayout.LayoutControl.HideItem(DevExpress.XtraLayout.BaseLayoutItem)">
  2421. <summary>
  2422. <para>Hides the specified layout item.</para>
  2423. </summary>
  2424. <param name="item">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant which represents the layout item to hide.</param>
  2425. </member>
  2426. <member name="M:DevExpress.XtraLayout.LayoutControl.HideSelectedItems">
  2427. <summary>
  2428. <para>Hides the currently selected items to the Customization Form.</para>
  2429. </summary>
  2430. </member>
  2431. <member name="P:DevExpress.XtraLayout.LayoutControl.HtmlImages">
  2432. <summary>
  2433. <para>Gets or sets a collection of images that you can embed into captions/messages/tooltips in the control using the image HTML-inspired tag.</para>
  2434. </summary>
  2435. <value>An <see cref="T:DevExpress.Utils.ImageCollection"></see> or <see cref="T:DevExpress.Utils.SvgImageCollection"></see> that contains images.</value>
  2436. </member>
  2437. <member name="E:DevExpress.XtraLayout.LayoutControl.HyperlinkClick">
  2438. <summary>
  2439. <para>Occurs each time a user clicks hyperlinks within captions of layout items and layout groups.</para>
  2440. </summary>
  2441. </member>
  2442. <member name="P:DevExpress.XtraLayout.LayoutControl.Images">
  2443. <summary>
  2444. <para>Gets or sets a collection of icons that can be displayed in a layout item, group, or tab’s label.</para>
  2445. </summary>
  2446. <value>A collection of icons that can be displayed in a layout item, group, or tab’s label.</value>
  2447. </member>
  2448. <member name="P:DevExpress.XtraLayout.LayoutControl.IsInitialized">
  2449. <summary>
  2450. <para>Indicates whether the LayoutControl has been initialized.</para>
  2451. </summary>
  2452. <value>true if the LayoutControl has been initialized; otherwise, false.</value>
  2453. </member>
  2454. <member name="P:DevExpress.XtraLayout.LayoutControl.IsLayoutModified">
  2455. <summary>
  2456. <para>Gets whether the layout has been modified. This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</para>
  2457. </summary>
  2458. <value>true if the layout has been modified; otherwise, false.</value>
  2459. </member>
  2460. <member name="P:DevExpress.XtraLayout.LayoutControl.IsModified">
  2461. <summary>
  2462. <para>Gets whether the layout has been changed.</para>
  2463. </summary>
  2464. <value>true if the layout has been changed; otherwise, false.</value>
  2465. </member>
  2466. <member name="P:DevExpress.XtraLayout.LayoutControl.IsPrintingAvailable">
  2467. <summary>
  2468. <para>Indicates whether the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> can be printed.</para>
  2469. </summary>
  2470. <value>true if the LayoutControl can be printed; otherwise, false.</value>
  2471. </member>
  2472. <member name="P:DevExpress.XtraLayout.LayoutControl.IsUpdateLocked">
  2473. <summary>
  2474. <para>Gets whether the layout control has been locked for updating.</para>
  2475. </summary>
  2476. <value>true if the layout control is locked; otherwise, false;</value>
  2477. </member>
  2478. <member name="E:DevExpress.XtraLayout.LayoutControl.ItemAdded">
  2479. <summary>
  2480. <para>Fires after a layout item has been added to the Items collection of its parent.</para>
  2481. </summary>
  2482. </member>
  2483. <member name="E:DevExpress.XtraLayout.LayoutControl.ItemDragging">
  2484. <summary>
  2485. <para>Fires repeatedly when a layout item is being dragged and allows you to prevent the item from being dropped at a specific position.</para>
  2486. </summary>
  2487. </member>
  2488. <member name="E:DevExpress.XtraLayout.LayoutControl.ItemRemoved">
  2489. <summary>
  2490. <para>Fires after a layout item has been removed from the Items collection of its parent.</para>
  2491. </summary>
  2492. </member>
  2493. <member name="P:DevExpress.XtraLayout.LayoutControl.Items">
  2494. <summary>
  2495. <para>Provides access to all the layout items owned by the LayoutControl.</para>
  2496. </summary>
  2497. <value>A DevExpress.XtraLayout.Utils.ReadOnlyItemCollection object which represents the collection of layout items.</value>
  2498. </member>
  2499. <member name="E:DevExpress.XtraLayout.LayoutControl.ItemSelectionChanged">
  2500. <summary>
  2501. <para>Fires after the selected layout item has been changed.</para>
  2502. </summary>
  2503. </member>
  2504. <member name="M:DevExpress.XtraLayout.LayoutControl.LayoutChanged">
  2505. <summary>
  2506. <para>Updates the Layout Control.</para>
  2507. </summary>
  2508. </member>
  2509. <member name="E:DevExpress.XtraLayout.LayoutControl.LayoutTreeViewPopupMenuShowing">
  2510. <summary>
  2511. <para>Occurs when the Layout Tree View Context Menu is about to be displayed.</para>
  2512. </summary>
  2513. </member>
  2514. <member name="E:DevExpress.XtraLayout.LayoutControl.LayoutUpdate">
  2515. <summary>
  2516. <para>Occurs after the size of any layout item has been changed.</para>
  2517. </summary>
  2518. </member>
  2519. <member name="E:DevExpress.XtraLayout.LayoutControl.LayoutUpgrade">
  2520. <summary>
  2521. <para>Occurs when a layout is restored from a data store (a stream, xml file or system registry), and its version differs from the version of the current layout.</para>
  2522. </summary>
  2523. </member>
  2524. <member name="P:DevExpress.XtraLayout.LayoutControl.LayoutVersion">
  2525. <summary>
  2526. <para>Gets or sets the version of the layout.</para>
  2527. </summary>
  2528. <value>A string representing the version of the layout.</value>
  2529. </member>
  2530. <member name="P:DevExpress.XtraLayout.LayoutControl.LookAndFeel">
  2531. <summary>
  2532. <para>Provides access to the settings that control the layout control’s look and feel.</para>
  2533. </summary>
  2534. <value>A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object whose properties specify the layout control’s look and feel.</value>
  2535. </member>
  2536. <member name="P:DevExpress.XtraLayout.LayoutControl.MenuManager">
  2537. <summary>
  2538. <para>Gets or sets an object that controls the look and feel of the popup menus.</para>
  2539. </summary>
  2540. <value>An object that controls the look and feel of the popup menus.</value>
  2541. </member>
  2542. <member name="P:DevExpress.XtraLayout.LayoutControl.OptionsCustomizationForm">
  2543. <summary>
  2544. <para>Provides access to the options which control the appearance and behavior of the Customization Form.</para>
  2545. </summary>
  2546. <value>A <see cref="T:DevExpress.XtraLayout.OptionsCustomizationForm"/> object which provides options related to the Customization Form.</value>
  2547. </member>
  2548. <member name="P:DevExpress.XtraLayout.LayoutControl.OptionsFocus">
  2549. <summary>
  2550. <para>Provides access to the layout control’s focus options.</para>
  2551. </summary>
  2552. <value>A <see cref="T:DevExpress.XtraLayout.OptionsFocus"/> object that contains the layout control’s focus options.</value>
  2553. </member>
  2554. <member name="P:DevExpress.XtraLayout.LayoutControl.OptionsItemText">
  2555. <summary>
  2556. <para>Provides access to the default alignment settings of the controls displayed in the LayoutControl.</para>
  2557. </summary>
  2558. <value>An <see cref="T:DevExpress.XtraLayout.OptionsItemText"/> object that provides the alignment options.</value>
  2559. </member>
  2560. <member name="P:DevExpress.XtraLayout.LayoutControl.OptionsPrint">
  2561. <summary>
  2562. <para>The Layout Control’s print/export options. This object’s settings affect all layout items and groups.</para>
  2563. </summary>
  2564. <value>The LayoutControl’s print and export options.</value>
  2565. </member>
  2566. <member name="P:DevExpress.XtraLayout.LayoutControl.OptionsSerialization">
  2567. <summary>
  2568. <para>Contains options that specify how the LayoutControl’s layout is saved to and restored from a data store (an XML file, a stream or the system registry).</para>
  2569. </summary>
  2570. <value>A <see cref="T:DevExpress.XtraLayout.LayoutSerializationOptions"/> object.</value>
  2571. </member>
  2572. <member name="P:DevExpress.XtraLayout.LayoutControl.OptionsView">
  2573. <summary>
  2574. <para>Provides access to the display options of the <see cref="T:DevExpress.XtraLayout.LayoutControl"/>.</para>
  2575. </summary>
  2576. <value>A <see cref="T:DevExpress.XtraLayout.OptionsView"/> object which specify the control’s display options.</value>
  2577. </member>
  2578. <member name="P:DevExpress.XtraLayout.LayoutControl.PaintStyles">
  2579. <summary>
  2580. <para>Provides access to the paint style collection.</para>
  2581. </summary>
  2582. <value>A DevExpress.XtraLayout.Registrator.LayoutPaintStyleCollection object which represents the paint style collection.</value>
  2583. </member>
  2584. <member name="E:DevExpress.XtraLayout.LayoutControl.PopupMenuShowing">
  2585. <summary>
  2586. <para>Occurs when the Context Menu is about to be displayed.</para>
  2587. </summary>
  2588. </member>
  2589. <member name="M:DevExpress.XtraLayout.LayoutControl.Print">
  2590. <summary>
  2591. <para>Prints the <see cref="T:DevExpress.XtraLayout.LayoutControl"/>.</para>
  2592. </summary>
  2593. </member>
  2594. <member name="E:DevExpress.XtraLayout.LayoutControl.QueryControl">
  2595. <summary />
  2596. </member>
  2597. <member name="M:DevExpress.XtraLayout.LayoutControl.Refresh">
  2598. <summary>
  2599. <para>Updates the layout control.</para>
  2600. </summary>
  2601. </member>
  2602. <member name="M:DevExpress.XtraLayout.LayoutControl.RegisterCustomPropertyGridWrapper(System.Type,System.Type)">
  2603. <summary>
  2604. <para>Registers the specified wrapper object that identifies which properties to display for specific layout items in the Customization Form‘s Property Grid.</para>
  2605. </summary>
  2606. <param name="itemType">The type of layout item with which the current wrapper object is associated.</param>
  2607. <param name="customWrapperType">The type of the wrapper object to be registered.</param>
  2608. </member>
  2609. <member name="M:DevExpress.XtraLayout.LayoutControl.RegisterFixedItemType(System.Type)">
  2610. <summary>
  2611. <para>Registers the specified ‘fixed’ item for runtime use in the LayoutControl.</para>
  2612. </summary>
  2613. <param name="itemType">The type of the ‘fixed’ item to be registered.</param>
  2614. </member>
  2615. <member name="M:DevExpress.XtraLayout.LayoutControl.RegisterUserCustomizationForm(System.Type)">
  2616. <summary>
  2617. <para>Registers the specified custom Customization Form.</para>
  2618. </summary>
  2619. <param name="customizationFormType">The type of the custom Customization Form.</param>
  2620. </member>
  2621. <member name="M:DevExpress.XtraLayout.LayoutControl.Remove(DevExpress.XtraLayout.BaseLayoutItem)">
  2622. <summary>
  2623. <para>Removes the specified item from the control.</para>
  2624. </summary>
  2625. <param name="item">The <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object that should be removed.</param>
  2626. </member>
  2627. <member name="M:DevExpress.XtraLayout.LayoutControl.Remove(DevExpress.XtraLayout.BaseLayoutItem,System.Boolean)">
  2628. <summary>
  2629. <para>Removes the specified item from the control.</para>
  2630. </summary>
  2631. <param name="item">The <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object that should be removed.</param>
  2632. <param name="disposeItemAndControls">true, to release all resources; otherwise false.</param>
  2633. </member>
  2634. <member name="M:DevExpress.XtraLayout.LayoutControl.RenameSelectedItem">
  2635. <summary>
  2636. <para>Activates an edit box that allows an end-user to rename the currently selected layout item.</para>
  2637. </summary>
  2638. </member>
  2639. <member name="P:DevExpress.XtraLayout.LayoutControl.RepositoryItems">
  2640. <summary />
  2641. <value></value>
  2642. </member>
  2643. <member name="E:DevExpress.XtraLayout.LayoutControl.RequestUniqueName">
  2644. <summary>
  2645. <para>Allows you to provide unique names for layout items created in code, whose names conflict with existing names.</para>
  2646. </summary>
  2647. </member>
  2648. <member name="M:DevExpress.XtraLayout.LayoutControl.RestoreDefaultLayout">
  2649. <summary>
  2650. <para>Restores the layout that has been saved using the <see cref="M:DevExpress.XtraLayout.LayoutControl.SetDefaultLayout"/> method.</para>
  2651. </summary>
  2652. </member>
  2653. <member name="M:DevExpress.XtraLayout.LayoutControl.RestoreLayoutFromRegistry(System.String)">
  2654. <summary>
  2655. <para>Restores the layout that is stored at the specified system registry path.</para>
  2656. </summary>
  2657. <param name="path">A <see cref="T:System.String"/> value that specifies the system registry path. If the specified path doesn’t exist, this method does nothing.</param>
  2658. </member>
  2659. <member name="M:DevExpress.XtraLayout.LayoutControl.RestoreLayoutFromStream(System.IO.Stream)">
  2660. <summary>
  2661. <para>Restores the layout from the specified stream.</para>
  2662. </summary>
  2663. <param name="stream">A <see cref="T:System.IO.Stream"/> descendant from which the layout is read. If null (Nothing in Visual Basic), an exception is raised.</param>
  2664. </member>
  2665. <member name="M:DevExpress.XtraLayout.LayoutControl.RestoreLayoutFromXml(System.String)">
  2666. <summary>
  2667. <para>Restores the layout from the specified XML file.</para>
  2668. </summary>
  2669. <param name="xmlFile">A <see cref="T:System.String"/> value which specifies the path to the XML file that contains the layout to be loaded. If the specified file doesn’t exist, an exception is raised.</param>
  2670. </member>
  2671. <member name="P:DevExpress.XtraLayout.LayoutControl.Root">
  2672. <summary>
  2673. <para>Gets or sets the LayoutControl’s root group.</para>
  2674. </summary>
  2675. <value>A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object which represents the root group.</value>
  2676. </member>
  2677. <member name="M:DevExpress.XtraLayout.LayoutControl.SaveLayoutToRegistry(System.String)">
  2678. <summary>
  2679. <para>Saves the current layout to the specified system registry path.</para>
  2680. </summary>
  2681. <param name="path">A <see cref="T:System.String"/> value that specifies the system registry path to which to save the layout.</param>
  2682. </member>
  2683. <member name="M:DevExpress.XtraLayout.LayoutControl.SaveLayoutToStream(System.IO.Stream)">
  2684. <summary>
  2685. <para>Saves the current layout to the specified stream.</para>
  2686. </summary>
  2687. <param name="stream">A <see cref="T:System.IO.Stream"/> descendant to which the current layout is written.</param>
  2688. </member>
  2689. <member name="M:DevExpress.XtraLayout.LayoutControl.SaveLayoutToXml(System.String)">
  2690. <summary>
  2691. <para>Saves the layout to an XML file.</para>
  2692. </summary>
  2693. <param name="xmlFile">A <see cref="T:System.String"/> value that specifies the path to the file where the layout should be stored. If an empty string is specified, an exception is raised.</param>
  2694. </member>
  2695. <member name="M:DevExpress.XtraLayout.LayoutControl.SelectParentGroup">
  2696. <summary>
  2697. <para>Selects the currently selected item’s parent.</para>
  2698. </summary>
  2699. </member>
  2700. <member name="M:DevExpress.XtraLayout.LayoutControl.SetCursor(System.Windows.Forms.Cursor)">
  2701. <summary>
  2702. <para>Sets the current cursor.</para>
  2703. </summary>
  2704. <param name="cursor">A <see cref="T:System.Windows.Forms.Cursor"/> object which represents the mouse cursor.</param>
  2705. </member>
  2706. <member name="M:DevExpress.XtraLayout.LayoutControl.SetDefaultLayout">
  2707. <summary>
  2708. <para>Saves the current layout to an internal memory buffer.</para>
  2709. </summary>
  2710. </member>
  2711. <member name="E:DevExpress.XtraLayout.LayoutControl.ShowContextMenu">
  2712. <summary>
  2713. <para>Occurs when the Context Menu is about to be displayed.</para>
  2714. </summary>
  2715. </member>
  2716. <member name="E:DevExpress.XtraLayout.LayoutControl.ShowCustomization">
  2717. <summary>
  2718. <para>Fires immediately after the Customization Form has been invoked.</para>
  2719. </summary>
  2720. </member>
  2721. <member name="M:DevExpress.XtraLayout.LayoutControl.ShowCustomizationForm">
  2722. <summary>
  2723. <para>Invokes the Customization Form.</para>
  2724. </summary>
  2725. </member>
  2726. <member name="E:DevExpress.XtraLayout.LayoutControl.ShowLayoutTreeViewContextMenu">
  2727. <summary>
  2728. <para>Occurs when the Layout Tree View Context Menu is about to be displayed.</para>
  2729. </summary>
  2730. </member>
  2731. <member name="M:DevExpress.XtraLayout.LayoutControl.ShowPrintPreview">
  2732. <summary>
  2733. <para>Opens the Print Preview window for the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> with a Bars UI.</para>
  2734. </summary>
  2735. </member>
  2736. <member name="M:DevExpress.XtraLayout.LayoutControl.ShowRibbonPrintPreview">
  2737. <summary>
  2738. <para>Displays the Print Preview window with a Ribbon UI.</para>
  2739. </summary>
  2740. </member>
  2741. <member name="P:DevExpress.XtraLayout.LayoutControl.StyleController">
  2742. <summary>
  2743. <para>Gets or sets the style controller component that provides appearance settings for the control.</para>
  2744. </summary>
  2745. <value>An object which implements the DevExpress.XtraEditors.IStyleController interface and provides appearance settings for the control.</value>
  2746. </member>
  2747. <member name="E:DevExpress.XtraLayout.LayoutControl.TabPageCloseButtonClick">
  2748. <summary>
  2749. <para>Fires when a Close button within a tab page is clicked.</para>
  2750. </summary>
  2751. </member>
  2752. <member name="P:DevExpress.XtraLayout.LayoutControl.ToolTipController">
  2753. <summary>
  2754. <para>Gets or sets the tooltip controller component that controls the appearance, position and content of hints displayed for layout items.</para>
  2755. </summary>
  2756. <value>The <see cref="T:DevExpress.Utils.ToolTipController"/> component controlling the appearance and behavior of hints displayed for layout items.</value>
  2757. </member>
  2758. <member name="P:DevExpress.XtraLayout.LayoutControl.UndoManager">
  2759. <summary>
  2760. <para>Gets the manager that handles undo/redo operations via the Customization Form.</para>
  2761. </summary>
  2762. <value>A DevExpress.XtraLayout.Customization.UndoManager object.</value>
  2763. </member>
  2764. <member name="E:DevExpress.XtraLayout.LayoutControl.UniqueNameRequest">
  2765. <summary>
  2766. <para>Allows you to provide unique names for layout items created in code, whose names conflict with existing names.</para>
  2767. </summary>
  2768. </member>
  2769. <member name="M:DevExpress.XtraLayout.LayoutControl.UnRegisterCustomPropertyGridWrapper(System.Type)">
  2770. <summary>
  2771. <para>Unregisters the specified wrapper object that has been registered via the <see cref="M:DevExpress.XtraLayout.LayoutControl.RegisterCustomPropertyGridWrapper(System.Type,System.Type)"/> method.</para>
  2772. </summary>
  2773. <param name="itemType">The type of the wrapper object to be unregistered.</param>
  2774. </member>
  2775. <member name="M:DevExpress.XtraLayout.LayoutControl.UnRegisterFixedItemType(System.Type)">
  2776. <summary>
  2777. <para>Unregisters the specified ‘fixed’ item in the current LayoutControl.</para>
  2778. </summary>
  2779. <param name="itemType">The type of the ‘fixed’ item to be unregistered.</param>
  2780. </member>
  2781. <member name="P:DevExpress.XtraLayout.LayoutControl.UseLocalBindingContext">
  2782. <summary>
  2783. <para>Gets or sets whether controls within the current LayoutControl use the local BindingContext, or the form’s BindingContext.</para>
  2784. </summary>
  2785. <value>true if controls use the LayoutControl’s BindingContext; false if controls use the form’s BindingContext.</value>
  2786. </member>
  2787. <member name="T:DevExpress.XtraLayout.LayoutControlGroup">
  2788. <summary>
  2789. <para>A regular group with or without a header and borders.</para>
  2790. </summary>
  2791. </member>
  2792. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.#ctor">
  2793. <summary>
  2794. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> class with default settings.</para>
  2795. </summary>
  2796. </member>
  2797. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.#ctor(DevExpress.XtraLayout.LayoutGroup)">
  2798. <summary>
  2799. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> class with the specified parent layout group.</para>
  2800. </summary>
  2801. <param name="lg">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> descendant which represents the parent layout group.</param>
  2802. </member>
  2803. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddGroup">
  2804. <summary>
  2805. <para>Creates a new group and adds it to the current group.</para>
  2806. </summary>
  2807. <returns>The newly created group.</returns>
  2808. </member>
  2809. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddGroup(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  2810. <summary>
  2811. <para>Creates a new layout group at a position relative to an item within the current group.</para>
  2812. </summary>
  2813. <param name="baseItem">The item (owned by the current group) next to which the new group is inserted.</param>
  2814. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified item.</param>
  2815. <returns>The new layout group.</returns>
  2816. </member>
  2817. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddGroup(DevExpress.XtraLayout.LayoutGroup)">
  2818. <summary>
  2819. <para>Inserts the specified group to the current group.</para>
  2820. </summary>
  2821. <param name="newGroup">The group to add to the current group.</param>
  2822. <returns>The added group.</returns>
  2823. </member>
  2824. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddGroup(DevExpress.XtraLayout.LayoutGroup,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  2825. <summary>
  2826. <para>Inserts the specified layout group at a position relative to an item within the current group.</para>
  2827. </summary>
  2828. <param name="newGroup">The layout group to add to the current group.</param>
  2829. <param name="baseItem">The item (owned by the current group) next to which the ‘newGroup’ is inserted.</param>
  2830. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified item.</param>
  2831. <returns>The added layout group.</returns>
  2832. </member>
  2833. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddGroup(System.String)">
  2834. <summary>
  2835. <para>Creates a new group with a specified caption and adds it to the current group.</para>
  2836. </summary>
  2837. <param name="text">The group’s caption. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  2838. <returns>The newly created layout group.</returns>
  2839. </member>
  2840. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddGroup(System.String,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  2841. <summary>
  2842. <para>Creates a new group with the specified caption at a position relative to an item within the current group.</para>
  2843. </summary>
  2844. <param name="text">A <see cref="T:System.String"/> value that specifies the group’s caption. This value is assigned to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  2845. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which a new group is inserted.</param>
  2846. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified item.</param>
  2847. <returns>The newly created layout group.</returns>
  2848. </member>
  2849. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddItem">
  2850. <summary>
  2851. <para>Creates a new layout item with the default layout type and adds it to the current group.</para>
  2852. </summary>
  2853. <returns>The newly created item.</returns>
  2854. </member>
  2855. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddItem(DevExpress.XtraLayout.BaseLayoutItem)">
  2856. <summary>
  2857. <para>Inserts the specified layout item to the current group.</para>
  2858. </summary>
  2859. <param name="newItem">The layout item to add to the current group.</param>
  2860. <returns>The added layout item.</returns>
  2861. </member>
  2862. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddItem(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  2863. <summary>
  2864. <para>Inserts the specified item at a position relative to another item within the current group.</para>
  2865. </summary>
  2866. <param name="newItem">The item to be moved to a new position.</param>
  2867. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which the ‘newItem’ is inserted.</param>
  2868. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the ‘newItem’ relative to the specified item.</param>
  2869. <returns>The added layout item.</returns>
  2870. </member>
  2871. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddItem(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  2872. <summary>
  2873. <para>Creates a new layout item at a position relative to an item within the current group.</para>
  2874. </summary>
  2875. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which a new item is inserted.</param>
  2876. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new item relative to the specified item.</param>
  2877. <returns>The newly created layout item.</returns>
  2878. </member>
  2879. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddItem(System.String)">
  2880. <summary>
  2881. <para>Creates a new layout item with the specified text and adds it to the current group.</para>
  2882. </summary>
  2883. <param name="text">A <see cref="T:System.String"/> value that specifies the layout item’s text.</param>
  2884. <returns>The newly created item.</returns>
  2885. </member>
  2886. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddItem(System.String,System.Windows.Forms.Control)">
  2887. <summary>
  2888. <para>Creates a new layout item with the specified text and control, and adds it to the current group.</para>
  2889. </summary>
  2890. <param name="text">A <see cref="T:System.String"/> value that specifies the layout item’s text.</param>
  2891. <param name="control">The control to display in the layout item. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.LayoutControlItem.Control"/> property.</param>
  2892. <returns>The newly created item.</returns>
  2893. </member>
  2894. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddItem(System.String,System.Windows.Forms.Control,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  2895. <summary>
  2896. <para>Creates a new layout item with the specified text and control at a position relative to another item within the current group.</para>
  2897. </summary>
  2898. <param name="text">A <see cref="T:System.String"/> value that specifies the new layout item’s text.</param>
  2899. <param name="control">The control to display in the new layout item. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.LayoutControlItem.Control"/> property.</param>
  2900. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which a new item is inserted.</param>
  2901. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new item relative to the specified item.</param>
  2902. <returns>The newly created layout item.</returns>
  2903. </member>
  2904. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddRange(DevExpress.XtraLayout.BaseLayoutItem[])">
  2905. <summary>
  2906. <para>Adds an array of layout items to the current group.</para>
  2907. </summary>
  2908. <param name="items">An array of <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> objects.</param>
  2909. </member>
  2910. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddTabbedGroup">
  2911. <summary>
  2912. <para>Creates a new tabbed group and adds it to the current group.</para>
  2913. </summary>
  2914. <returns>The newly created group.</returns>
  2915. </member>
  2916. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddTabbedGroup(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  2917. <summary>
  2918. <para>Creates a new tabbed group at a position relative to an item within the current group.</para>
  2919. </summary>
  2920. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which a new group is inserted.</param>
  2921. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new tabbed group relative to the specified item.</param>
  2922. <returns>The newly created group.</returns>
  2923. </member>
  2924. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddTabbedGroup(DevExpress.XtraLayout.TabbedGroup)">
  2925. <summary>
  2926. <para>Inserts the specified tabbed group to the current group.</para>
  2927. </summary>
  2928. <param name="newTabbedGroup">The tabbed group to add to the current group.</param>
  2929. <returns>The added tabbed group.</returns>
  2930. </member>
  2931. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.AddTabbedGroup(DevExpress.XtraLayout.TabbedGroup,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  2932. <summary>
  2933. <para>Inserts the specified tabbed group at a position relative to an item within the current group.</para>
  2934. </summary>
  2935. <param name="newTabbedGroup">The group that is to be moved to a new position.</param>
  2936. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which the ‘newTabbedGroup’ is inserted.</param>
  2937. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new tabbed group relative to the specified item.</param>
  2938. <returns>The added tabbed group.</returns>
  2939. </member>
  2940. <member name="M:DevExpress.XtraLayout.LayoutControlGroup.HideToCustomization">
  2941. <summary>
  2942. <para>Hides the group.</para>
  2943. </summary>
  2944. </member>
  2945. <member name="P:DevExpress.XtraLayout.LayoutControlGroup.Items">
  2946. <summary>
  2947. <para>Provides access to the visible layout items owned by the current group.</para>
  2948. </summary>
  2949. <value>A <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection"/> object which represents the collection of visible layout items.</value>
  2950. </member>
  2951. <member name="P:DevExpress.XtraLayout.LayoutControlGroup.Owner">
  2952. <summary>
  2953. <para>Gets or set the LayoutControl that owns the current layout group.</para>
  2954. </summary>
  2955. <value>A <see cref="T:DevExpress.XtraLayout.LayoutControl"/> control.</value>
  2956. </member>
  2957. <member name="P:DevExpress.XtraLayout.LayoutControlGroup.ViewInfo">
  2958. <summary>
  2959. <para>Gets the object which contains information used to render the layout group.</para>
  2960. </summary>
  2961. <value>A DevExpress.XtraLayout.ViewInfo.LayoutControlGroupViewInfo object.</value>
  2962. </member>
  2963. <member name="T:DevExpress.XtraLayout.LayoutControlItem">
  2964. <summary>
  2965. <para>Displays an embedded control and an optional label.</para>
  2966. </summary>
  2967. </member>
  2968. <member name="M:DevExpress.XtraLayout.LayoutControlItem.#ctor">
  2969. <summary>
  2970. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/> class with default settings.</para>
  2971. </summary>
  2972. </member>
  2973. <member name="M:DevExpress.XtraLayout.LayoutControlItem.#ctor(DevExpress.XtraLayout.LayoutControl,System.Windows.Forms.Control)">
  2974. <summary>
  2975. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/> class.</para>
  2976. </summary>
  2977. <param name="layoutControl">A <see cref="T:DevExpress.XtraLayout.LayoutControl"/> object which owns the created layout item. This value is assigned to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Owner"/> property.</param>
  2978. <param name="control">A <see cref="T:System.Windows.Forms.Control"/> descendant which is owned by the created layout item. This value is assigned to the <see cref="P:DevExpress.XtraLayout.LayoutControlItem.Control"/> property.</param>
  2979. </member>
  2980. <member name="M:DevExpress.XtraLayout.LayoutControlItem.#ctor(DevExpress.XtraLayout.LayoutControlGroup,System.Boolean)">
  2981. <summary>
  2982. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/> class with specified settings.</para>
  2983. </summary>
  2984. <param name="parent"></param>
  2985. <param name="addToLayout"></param>
  2986. </member>
  2987. <member name="P:DevExpress.XtraLayout.LayoutControlItem.AllowAutoAlignment">
  2988. <summary>
  2989. <para>Gets or sets whether the auto-alignment feature is enabled for the item.</para>
  2990. </summary>
  2991. <value>A Boolean value.</value>
  2992. </member>
  2993. <member name="P:DevExpress.XtraLayout.LayoutControlItem.AllowGlyphSkinning">
  2994. <summary>
  2995. <para>Gets or sets whether a label’s icon is filled with the label’s foreground color.</para>
  2996. </summary>
  2997. <value><see cref="F:DevExpress.Utils.DefaultBoolean.Default"/> to use the parent group’s <see cref="P:DevExpress.XtraLayout.LayoutGroupCaptionImageOptions.AllowGlyphSkinning"/> option; <see cref="F:DevExpress.Utils.DefaultBoolean.True"/> to fill the icon with the label’s foreground color; <see cref="F:DevExpress.Utils.DefaultBoolean.False"/> to display the icon as it is.</value>
  2998. </member>
  2999. <member name="P:DevExpress.XtraLayout.LayoutControlItem.AllowHotTrack">
  3000. <summary>
  3001. <para>Gets or sets whether the layout item’s borders are highlighted when the mouse cursor hovers over it.</para>
  3002. </summary>
  3003. <value>true if the layout item can be hot-tracked; otherwise, false.</value>
  3004. </member>
  3005. <member name="P:DevExpress.XtraLayout.LayoutControlItem.AllowHtmlStringInCaption">
  3006. <summary>
  3007. <para>Gets or sets whether HTML formatting is allowed in the text that is associated with the layout item.</para>
  3008. </summary>
  3009. <value>true if HTML formatting is allowed; otherwise, false.</value>
  3010. </member>
  3011. <member name="P:DevExpress.XtraLayout.LayoutControlItem.AppearanceItemCaptionDisabled">
  3012. <summary />
  3013. <value></value>
  3014. </member>
  3015. <member name="M:DevExpress.XtraLayout.LayoutControlItem.Assign(DevExpress.XtraLayout.BaseLayoutItem)">
  3016. <summary>
  3017. <para>Assigns the specified object’s property values to the current object’s corresponding properties.</para>
  3018. </summary>
  3019. <param name="item">The object whose property values to assign to the current object’s corresponding properties.</param>
  3020. </member>
  3021. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ContentHorzAlignment">
  3022. <summary>
  3023. <para>Gets or sets the horizontal alignment of a control inside this layout item. This property is in effect when the control’s maximum width is limited, and is less than the layout item currently provides.</para>
  3024. </summary>
  3025. <value>The horizontal control alignment.</value>
  3026. </member>
  3027. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ContentVertAlignment">
  3028. <summary>
  3029. <para>Gets or sets the vertical alignment of a control inside this layout item. This property is in effect when the control’s maximum height is limited, and is less than the layout item currently provides.</para>
  3030. </summary>
  3031. <value>The horizontal control alignment.</value>
  3032. </member>
  3033. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ContentVisible">
  3034. <summary>
  3035. <para>Gets or sets whether the layout item’s contents are visible.</para>
  3036. </summary>
  3037. <value>true if the layout item’s contents are visible; otherwise, false.</value>
  3038. </member>
  3039. <member name="P:DevExpress.XtraLayout.LayoutControlItem.Control">
  3040. <summary>
  3041. <para>Gets or sets the control which is owned by the layout item.</para>
  3042. </summary>
  3043. <value>A <see cref="T:System.Windows.Forms.Control"/> descendant which is owned by the layout item.</value>
  3044. </member>
  3045. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ControlAlignment">
  3046. <summary>
  3047. <para>Gets or sets the alignment of the <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/>‘s control within the layout item. This setting is not intended to be used for version 19.2 and newer.</para>
  3048. </summary>
  3049. <value>A <see cref="T:System.Drawing.ContentAlignment"/> value that specifies the control’s alignment within the layout item.</value>
  3050. </member>
  3051. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ControlMaxSize">
  3052. <summary>
  3053. <para>Gets or sets the client area’s maximum size.</para>
  3054. </summary>
  3055. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the client area’s maximum width and height.</value>
  3056. </member>
  3057. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ControlMinSize">
  3058. <summary>
  3059. <para>Gets or sets the control’s minimum size.</para>
  3060. </summary>
  3061. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the control’s minimum width and height.</value>
  3062. </member>
  3063. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ControlName">
  3064. <summary>
  3065. <para>This property is for internal use only. It is used in serialization. Do not change it.</para>
  3066. </summary>
  3067. <value>A <see cref="T:System.String"/> value that specifies the name of the control which is owned by the current layout item.</value>
  3068. </member>
  3069. <member name="P:DevExpress.XtraLayout.LayoutControlItem.Enabled">
  3070. <summary>
  3071. <para>Gets or sets whether the layout item and its control are enabled.</para>
  3072. </summary>
  3073. <value>true if the layout item and its control are enabled; otherwise, false.</value>
  3074. </member>
  3075. <member name="M:DevExpress.XtraLayout.LayoutControlItem.EndInit">
  3076. <summary>
  3077. <para>Finishes the component’s initialization.</para>
  3078. </summary>
  3079. </member>
  3080. <member name="P:DevExpress.XtraLayout.LayoutControlItem.Expanded">
  3081. <summary>
  3082. <para>Not supported.</para>
  3083. </summary>
  3084. <value>Always True.</value>
  3085. </member>
  3086. <member name="P:DevExpress.XtraLayout.LayoutControlItem.FillControlToClientArea">
  3087. <summary>
  3088. <para>Gets or sets whether the control occupies the layout item’s maximum allowed client area. This setting is not intended to be used for version 19.2 and newer.</para>
  3089. </summary>
  3090. <value>true, if the control occupies the layout item’s maximum allowed client area; otheriwse, false.</value>
  3091. </member>
  3092. <member name="P:DevExpress.XtraLayout.LayoutControlItem.HighlightFocusedItem">
  3093. <summary>
  3094. <para>Gets or sets whether the current layout item is highlighted according to the current skin when focused.</para>
  3095. </summary>
  3096. <value>True if the current layout item is highlighted according to the current skin when focused; False if not; Default use the <see cref="P:DevExpress.XtraLayout.OptionsView.HighlightFocusedItem"/> global setting.</value>
  3097. </member>
  3098. <member name="P:DevExpress.XtraLayout.LayoutControlItem.Image">
  3099. <summary>
  3100. <para>Gets or sets the icon displayed in the item’s label.</para>
  3101. </summary>
  3102. <value>An object that specifies an image.</value>
  3103. </member>
  3104. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ImageAlignment">
  3105. <summary>
  3106. <para>Gets or sets the alignment of the icon in the label.</para>
  3107. </summary>
  3108. <value>A <see cref="T:System.Drawing.ContentAlignment"/> enumeration value that specifies the alignment of the icon in the label.</value>
  3109. </member>
  3110. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ImageIndex">
  3111. <summary>
  3112. <para>Gets or sets the index of the icon displayed in the item’s label.</para>
  3113. </summary>
  3114. <value>An integer value that specifies the index of an icon in an image collection.</value>
  3115. </member>
  3116. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ImageOptions">
  3117. <summary>
  3118. <para>Gets options that allow you to display an icon in the item’s label.</para>
  3119. </summary>
  3120. <value>A <see cref="T:DevExpress.XtraLayout.LayoutControlItemImageOptions"/> object that specifies an icon displayed in the item’s label.</value>
  3121. </member>
  3122. <member name="P:DevExpress.XtraLayout.LayoutControlItem.Images">
  3123. <summary>
  3124. <para>Gets a collection of icons that can be displayed in the item’s label.</para>
  3125. </summary>
  3126. <value>An object that specifies an image collection.</value>
  3127. </member>
  3128. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ImageToTextDistance">
  3129. <summary>
  3130. <para>Gets or sets the distance between the label’s text and icon.</para>
  3131. </summary>
  3132. <value>An integer value that specifies the distance between the label’s text and icon, in pixels.</value>
  3133. </member>
  3134. <member name="P:DevExpress.XtraLayout.LayoutControlItem.IsAccessible">
  3135. <summary />
  3136. <value></value>
  3137. </member>
  3138. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ItemImages">
  3139. <summary>
  3140. <para>Gets a collection of icons that can be displayed in the item’s label.</para>
  3141. </summary>
  3142. <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object that contains images.</value>
  3143. </member>
  3144. <member name="P:DevExpress.XtraLayout.LayoutControlItem.MaxSize">
  3145. <summary>
  3146. <para>Gets or sets the layout item’s maximum size.</para>
  3147. </summary>
  3148. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the item’s maximum width and height.</value>
  3149. </member>
  3150. <member name="P:DevExpress.XtraLayout.LayoutControlItem.MinSize">
  3151. <summary>
  3152. <para>Gets or sets the item’s minimum size.</para>
  3153. </summary>
  3154. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the item’s minimum width and height.</value>
  3155. </member>
  3156. <member name="P:DevExpress.XtraLayout.LayoutControlItem.OptionsPrint">
  3157. <summary>
  3158. <para>The item’s print/export options.</para>
  3159. </summary>
  3160. <value>The layout item’s print and export options.</value>
  3161. </member>
  3162. <member name="P:DevExpress.XtraLayout.LayoutControlItem.Owner">
  3163. <summary>
  3164. <para>Gets or set the LayoutControl that owns the current layout item.</para>
  3165. </summary>
  3166. <value>A LayoutControl control.</value>
  3167. </member>
  3168. <member name="P:DevExpress.XtraLayout.LayoutControlItem.SizeConstraintsType">
  3169. <summary>
  3170. <para>Gets or sets the size constraints type.</para>
  3171. </summary>
  3172. <value>A <see cref="T:DevExpress.XtraLayout.SizeConstraintsType"/> enumeration value which specifies the manner in which the current layout item can be resized.</value>
  3173. </member>
  3174. <member name="P:DevExpress.XtraLayout.LayoutControlItem.SvgImage">
  3175. <summary>
  3176. <para>Gets or sets the vector image for this item’s label.</para>
  3177. </summary>
  3178. <value>An object that specifies a vector image.</value>
  3179. </member>
  3180. <member name="P:DevExpress.XtraLayout.LayoutControlItem.SvgImageSize">
  3181. <summary>
  3182. <para>Gets or sets the size of vector image for this item’s label.</para>
  3183. </summary>
  3184. <value>A structure that specifies an image size.</value>
  3185. </member>
  3186. <member name="P:DevExpress.XtraLayout.LayoutControlItem.TextAlignMode">
  3187. <summary>
  3188. <para>Gets or sets the alignment settings of the item’s control.</para>
  3189. </summary>
  3190. <value>A <see cref="T:DevExpress.XtraLayout.TextAlignModeItem"/> value.</value>
  3191. </member>
  3192. <member name="P:DevExpress.XtraLayout.LayoutControlItem.TrimClientAreaToControl">
  3193. <summary>
  3194. <para>Gets or sets whether the client region’s height is trimmed to match the control’s height. This setting is not intended to be used for version 19.2 and newer.</para>
  3195. </summary>
  3196. <value>true if the client region’s height is trimmed to match the control’s height; otherwise, false.</value>
  3197. </member>
  3198. <member name="P:DevExpress.XtraLayout.LayoutControlItem.TypeName">
  3199. <summary>
  3200. <para>Gets the name of the item’s type.</para>
  3201. </summary>
  3202. <value>The “LayoutControlItem” string.</value>
  3203. </member>
  3204. <member name="P:DevExpress.XtraLayout.LayoutControlItem.ViewInfo">
  3205. <summary>
  3206. <para>Gets the object which contains information used to render the layout item.</para>
  3207. </summary>
  3208. <value>A DevExpress.XtraLayout.ViewInfo.LayoutControlItemViewInfo object.</value>
  3209. </member>
  3210. <member name="T:DevExpress.XtraLayout.LayoutControlItemImageOptions">
  3211. <summary>
  3212. <para>Contains options that specify the icon in a layout item’s label.</para>
  3213. </summary>
  3214. </member>
  3215. <member name="M:DevExpress.XtraLayout.LayoutControlItemImageOptions.#ctor(DevExpress.XtraLayout.LayoutControlItem)">
  3216. <summary>
  3217. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutControlItemImageOptions"/> class with specified settings.</para>
  3218. </summary>
  3219. <param name="owner"></param>
  3220. </member>
  3221. <member name="P:DevExpress.XtraLayout.LayoutControlItemImageOptions.Alignment">
  3222. <summary>
  3223. <para>Gets or sets how the alignment of the icon in the item’s label.</para>
  3224. </summary>
  3225. <value>A value that specifies the alignment of the icon in the item’s label.</value>
  3226. </member>
  3227. <member name="P:DevExpress.XtraLayout.LayoutControlItemImageOptions.AllowGlyphSkinning">
  3228. <summary>
  3229. <para>Gets or sets whether the icon is filled with the control’s foreground color.</para>
  3230. </summary>
  3231. <value><see cref="F:DevExpress.Utils.DefaultBoolean.Default"/> to use the parent group’s <see cref="P:DevExpress.XtraLayout.LayoutGroupCaptionImageOptions.AllowGlyphSkinning"/> option; <see cref="F:DevExpress.Utils.DefaultBoolean.True"/> to fill the icon with the control’s foreground color; <see cref="F:DevExpress.Utils.DefaultBoolean.False"/> to display the icon as it is.</value>
  3232. </member>
  3233. <member name="P:DevExpress.XtraLayout.LayoutControlItemImageOptions.ImageToTextDistance">
  3234. <summary>
  3235. <para>Gets or sets the amount of space between the icon and the text in the label.</para>
  3236. </summary>
  3237. <value>An integer value that specifies the amount of space between the icon and the text in the label.</value>
  3238. </member>
  3239. <member name="T:DevExpress.XtraLayout.LayoutGroup">
  3240. <summary>
  3241. <para>A base class for regular layout groups.</para>
  3242. </summary>
  3243. </member>
  3244. <member name="M:DevExpress.XtraLayout.LayoutGroup.Accept(DevExpress.XtraLayout.Utils.BaseVisitor)">
  3245. <summary>
  3246. <para>Invokes the Visit method of the specified visitor for each layout item that belongs to the current layout item group.</para>
  3247. </summary>
  3248. <param name="visitor">A DevExpress.XtraLayout.Utils.BaseVisitor class descendant.</param>
  3249. </member>
  3250. <member name="M:DevExpress.XtraLayout.LayoutGroup.Add(DevExpress.XtraLayout.BaseLayoutItem)">
  3251. <summary>
  3252. <para>Adds the specified item along the bottom or right edge of the current group.</para>
  3253. </summary>
  3254. <param name="item">The item to be added to the current group.</param>
  3255. </member>
  3256. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddGroup">
  3257. <summary>
  3258. <para>Creates a new group and adds it to the current group.</para>
  3259. </summary>
  3260. <returns>The newly added group.</returns>
  3261. </member>
  3262. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddGroup(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  3263. <summary>
  3264. <para>Creates a new group at a position relative to an item within the current group.</para>
  3265. </summary>
  3266. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which a new group is inserted.</param>
  3267. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified item.</param>
  3268. <returns>The newly created layout group.</returns>
  3269. </member>
  3270. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddGroup(DevExpress.XtraLayout.LayoutGroup)">
  3271. <summary>
  3272. <para>Inserts the specified group to the current group.</para>
  3273. </summary>
  3274. <param name="newGroup">The group to add to the current group.</param>
  3275. <returns>The added layout group.</returns>
  3276. </member>
  3277. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddGroup(DevExpress.XtraLayout.LayoutGroup,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  3278. <summary>
  3279. <para>Inserts the specified group at a position relative to an item within the current group.</para>
  3280. </summary>
  3281. <param name="newGroup">The group to be moved to a new position.</param>
  3282. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which the ‘newGroup’ is inserted.</param>
  3283. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified item.</param>
  3284. <returns>The added group.</returns>
  3285. </member>
  3286. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddGroup(System.String)">
  3287. <summary>
  3288. <para>Creates a new group with the default layout type and the specified caption, and adds it to the current group.</para>
  3289. </summary>
  3290. <param name="text">The group’s caption. This value is used to initialize to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  3291. <returns>The newly added group.</returns>
  3292. </member>
  3293. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddGroup(System.String,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  3294. <summary>
  3295. <para>Creates a new group with the specified caption at a position relative to an item within the current group.</para>
  3296. </summary>
  3297. <param name="text">A <see cref="T:System.String"/> value that specifies the group’s caption. This value is assigned to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  3298. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which a new group is inserted.</param>
  3299. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new group relative to the specified item.</param>
  3300. <returns>The newly created layout group.</returns>
  3301. </member>
  3302. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddItem">
  3303. <summary>
  3304. <para>Creates a new layout item and adds it to the current group.</para>
  3305. </summary>
  3306. <returns>The newly added item.</returns>
  3307. </member>
  3308. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddItem(DevExpress.XtraLayout.BaseLayoutItem)">
  3309. <summary>
  3310. <para>Inserts the specified item to the current group.</para>
  3311. </summary>
  3312. <param name="newItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant which represents the layout item to add to the collection.</param>
  3313. <returns>The added layout item.</returns>
  3314. </member>
  3315. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddItem(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  3316. <summary>
  3317. <para>Inserts the specified item at a position relative to another item within the current group.</para>
  3318. </summary>
  3319. <param name="newItem">The item to be moved to a new position.</param>
  3320. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which a new item is inserted.</param>
  3321. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new item relative to the baseItem.</param>
  3322. <returns>The added layout item.</returns>
  3323. </member>
  3324. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddItem(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  3325. <summary>
  3326. <para>Creates a new layout item at a position relative to an item within the current group.</para>
  3327. </summary>
  3328. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which a new item is inserted.</param>
  3329. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new item relative to the baseItem.</param>
  3330. <returns>The newly created layout item.</returns>
  3331. </member>
  3332. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddItem(System.String)">
  3333. <summary>
  3334. <para>Creates a new layout item with the specified text and adds it to the current group.</para>
  3335. </summary>
  3336. <param name="text">A <see cref="T:System.String"/> value that specifies the layout item’s text.</param>
  3337. <returns>The created layout item.</returns>
  3338. </member>
  3339. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddItem(System.String,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  3340. <summary>
  3341. <para>Inserts the specified item at a position relative to another item within the current group. Allows the new text to be specified for the item.</para>
  3342. </summary>
  3343. <param name="text">A <see cref="T:System.String"/> value that specifies the new text to be assigned to the added item. The parameter is ignored if the value represents an empty string.</param>
  3344. <param name="newItem">The item to be moved to a new position.</param>
  3345. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which the ‘newItem’ is inserted.</param>
  3346. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new item relative to the baseItem.</param>
  3347. <returns>The added layout item.</returns>
  3348. </member>
  3349. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddItem(System.String,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  3350. <summary>
  3351. <para>Creates a new layout item with the specified text at a position relative to an item within the current group.</para>
  3352. </summary>
  3353. <param name="text">A <see cref="T:System.String"/> value that specifies the new layout item’s text.</param>
  3354. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which a new item is inserted.</param>
  3355. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new item relative to the specified item.</param>
  3356. <returns>The newly created layout item.</returns>
  3357. </member>
  3358. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddTabbedGroup">
  3359. <summary>
  3360. <para>Creates a new tabbed group and adds it to the current group.</para>
  3361. </summary>
  3362. <returns>The created group.</returns>
  3363. </member>
  3364. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddTabbedGroup(DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  3365. <summary>
  3366. <para>Creates a new tabbed group at a position relative to an item within the current group.</para>
  3367. </summary>
  3368. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which a new group is inserted.</param>
  3369. <param name="insertType">The position of the new tabbed group relative to the specified item.</param>
  3370. <returns>The newly added tabbed group.</returns>
  3371. </member>
  3372. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddTabbedGroup(DevExpress.XtraLayout.TabbedGroup)">
  3373. <summary>
  3374. <para>Inserts the specified tabbed group to the current group.</para>
  3375. </summary>
  3376. <param name="newTabbedGroup">The tabbed group to add to the collection.</param>
  3377. <returns>The added group.</returns>
  3378. </member>
  3379. <member name="M:DevExpress.XtraLayout.LayoutGroup.AddTabbedGroup(DevExpress.XtraLayout.TabbedGroup,DevExpress.XtraLayout.BaseLayoutItem,DevExpress.XtraLayout.Utils.InsertType)">
  3380. <summary>
  3381. <para>Inserts the specified tabbed group at a position relative to an item within the current group.</para>
  3382. </summary>
  3383. <param name="newTabbedGroup">The tabbed group to add to the collection.</param>
  3384. <param name="baseItem">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> descendant (owned by the current group) next to which the ‘newTabbedGroup’ is inserted.</param>
  3385. <param name="insertType">A DevExpress.XtraLayout.Utils.InsertType enumeration value that specifies the position of the new tabbed group relative to the specified item.</param>
  3386. <returns>The added tabbed group.</returns>
  3387. </member>
  3388. <member name="P:DevExpress.XtraLayout.LayoutGroup.AllowBorderColorBlending">
  3389. <summary>
  3390. <para>Gets or sets whether to colorize the layout group border and caption using the LayoutGroup.AppearanceGroup.BorderColor setting in skinning paint schemes. This property is ignored by default starting from v18.2.</para>
  3391. </summary>
  3392. <value>true if the layout group border should be colorized according to its border color in skinning paint schemes; otherwise, false.</value>
  3393. </member>
  3394. <member name="P:DevExpress.XtraLayout.LayoutGroup.AllowDrawBackground">
  3395. <summary>
  3396. <para>Gets or sets whether to paint the group’s background when the <see cref="P:DevExpress.XtraLayout.LayoutGroup.GroupBordersVisible"/> property is set to false.</para>
  3397. </summary>
  3398. <value>true if the group’s background is painted; otherwise, false.</value>
  3399. </member>
  3400. <member name="P:DevExpress.XtraLayout.LayoutGroup.AllowGlyphSkinning">
  3401. <summary>
  3402. <para>Gets or sets whether the group or tab’s icon is filled with the control’s foreground color.</para>
  3403. </summary>
  3404. <value><see cref="F:DevExpress.Utils.DefaultBoolean.Default"/> to use the control’s <see cref="P:DevExpress.XtraLayout.OptionsView.AllowGlyphSkinning"/> option; <see cref="F:DevExpress.Utils.DefaultBoolean.True"/> to fill the icon with the control’s foreground color; <see cref="F:DevExpress.Utils.DefaultBoolean.False"/> to display the icon as it is.</value>
  3405. </member>
  3406. <member name="P:DevExpress.XtraLayout.LayoutGroup.AllowHtmlStringInCaption">
  3407. <summary>
  3408. <para>Gets or sets whether HTML formatting is allowed within the layout group caption.</para>
  3409. </summary>
  3410. <value>true if the HTML formatting is allowed; otherwise, false.</value>
  3411. </member>
  3412. <member name="P:DevExpress.XtraLayout.LayoutGroup.BackgroundImage">
  3413. <summary>
  3414. <para>Gets or sets the group’s background image that can be stretched across the group, tiled, centered, etc.</para>
  3415. </summary>
  3416. <value>An <see cref="T:System.Drawing.Image"/> object.</value>
  3417. </member>
  3418. <member name="P:DevExpress.XtraLayout.LayoutGroup.BackgroundImageLayout">
  3419. <summary>
  3420. <para>Gets or sets the position and behavior of the background image assigned to the <see cref="P:DevExpress.XtraLayout.LayoutGroup.BackgroundImage"/> property.</para>
  3421. </summary>
  3422. <value>An <see cref="T:System.Windows.Forms.ImageLayout"/> value.</value>
  3423. </member>
  3424. <member name="P:DevExpress.XtraLayout.LayoutGroup.BackgroundImageOptions">
  3425. <summary>
  3426. <para>Provides access to all properties that allow you to assign and customize this group’s background image at the bottom layer.</para>
  3427. </summary>
  3428. <value>A DevExpress.XtraLayout.LayoutGroupBackgroundImageOptions object that comprises properties that allow you to assign and customize this group’s background image at the bottom layer.</value>
  3429. </member>
  3430. <member name="F:DevExpress.XtraLayout.LayoutGroup.backgroundImageOptionsCore">
  3431. <summary>
  3432. <para>The <see cref="P:DevExpress.XtraLayout.LayoutGroup.BackgroundImageOptions"/> property backing field.</para>
  3433. </summary>
  3434. <value></value>
  3435. </member>
  3436. <member name="P:DevExpress.XtraLayout.LayoutGroup.BackgroundImageVisible">
  3437. <summary>
  3438. <para>Gets or sets whether the background image, specified by the <see cref="P:DevExpress.XtraLayout.LayoutGroup.BackgroundImage"/> property, is in effect.</para>
  3439. </summary>
  3440. <value>true if the background image, specified by the <see cref="P:DevExpress.XtraLayout.LayoutGroup.BackgroundImage"/> property, is in effect; otherwise, false.</value>
  3441. </member>
  3442. <member name="M:DevExpress.XtraLayout.LayoutGroup.BestFit">
  3443. <summary>
  3444. <para>Resizes the group’s elements so that they are displayed in the optimal way.</para>
  3445. </summary>
  3446. </member>
  3447. <member name="P:DevExpress.XtraLayout.LayoutGroup.CanChangeLayoutModeForChildSelectedGroup">
  3448. <summary>
  3449. <para>Returns whether the layout mode can be changed for a <see cref="T:DevExpress.XtraLayout.LayoutGroup"/>.</para>
  3450. </summary>
  3451. <value>true if the layout mode can be changed; otherwise, false.</value>
  3452. </member>
  3453. <member name="P:DevExpress.XtraLayout.LayoutGroup.CanCreateTabbedGroupForSelectedGroup">
  3454. <summary>
  3455. <para>Returns whether a new tabbed group can be created within the current group which will display a selected child group.</para>
  3456. </summary>
  3457. <value>true if a tabbed group can be created; otherwise, false.</value>
  3458. </member>
  3459. <member name="P:DevExpress.XtraLayout.LayoutGroup.CanGroupSelectedItems">
  3460. <summary>
  3461. <para>Returns whether a new group can be created within the current group which will display selected child items.</para>
  3462. </summary>
  3463. <value>true if a new group can be created; otherwise, false.</value>
  3464. </member>
  3465. <member name="M:DevExpress.XtraLayout.LayoutGroup.CanMoveItem(DevExpress.XtraLayout.Customization.LayoutItemDragController)">
  3466. <summary>
  3467. <para>Returns whether the specified item can be moved to the specified new position.</para>
  3468. </summary>
  3469. <param name="controller">A <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object that contains information on the item that would be moved and the position that the item would be moved to.</param>
  3470. <returns>true if the specified item can be moved to the specified new position; otherwise, false.</returns>
  3471. </member>
  3472. <member name="P:DevExpress.XtraLayout.LayoutGroup.CaptionImage">
  3473. <summary>
  3474. <para>Specifies the image to display within the group’s caption area.</para>
  3475. </summary>
  3476. <value>A <see cref="T:System.Drawing.Image"/> object that specifies the group’s caption image.</value>
  3477. </member>
  3478. <member name="P:DevExpress.XtraLayout.LayoutGroup.CaptionImageIndex">
  3479. <summary>
  3480. <para>Gets or sets the index of an image in the <see cref="P:DevExpress.XtraLayout.LayoutControl.Images"/> or <see cref="P:DevExpress.XtraGrid.Views.Base.ColumnView.Images"/> collection that is displayed in the group or tab’s label.</para>
  3481. </summary>
  3482. <value>An integer value that specifies the zero-based index of an image in the <see cref="P:DevExpress.XtraLayout.LayoutControl.Images"/> or <see cref="P:DevExpress.XtraGrid.Views.Base.ColumnView.Images"/> collection.</value>
  3483. </member>
  3484. <member name="P:DevExpress.XtraLayout.LayoutGroup.CaptionImageLocation">
  3485. <summary>
  3486. <para>Gets or sets the icon’s alignment relative to the text.</para>
  3487. </summary>
  3488. <value>A <see cref="T:DevExpress.Utils.GroupElementLocation"/> enumeration value that specifies the icon’s alignment relative to the text.</value>
  3489. </member>
  3490. <member name="P:DevExpress.XtraLayout.LayoutGroup.CaptionImageOptions">
  3491. <summary>
  3492. <para>Gets options that specify the label’s icon.</para>
  3493. </summary>
  3494. <value>A <see cref="T:DevExpress.XtraLayout.LayoutGroupCaptionImageOptions"/> object that contains image options.</value>
  3495. </member>
  3496. <member name="F:DevExpress.XtraLayout.LayoutGroup.captionImageOptionsCore">
  3497. <summary>
  3498. <para>The <see cref="P:DevExpress.XtraLayout.LayoutGroup.CaptionImageOptions"/> property backing field.</para>
  3499. </summary>
  3500. <value></value>
  3501. </member>
  3502. <member name="P:DevExpress.XtraLayout.LayoutGroup.CaptionImagePadding">
  3503. <summary>
  3504. <para>Gets or sets the amount of space between the icon and the label’s bounds.</para>
  3505. </summary>
  3506. <value>A structure that specifies the amount of space between the icon and the label’s bounds.</value>
  3507. </member>
  3508. <member name="P:DevExpress.XtraLayout.LayoutGroup.CaptionImageVisible">
  3509. <summary>
  3510. <para>Gets or sets whether the label’s icon is visible.</para>
  3511. </summary>
  3512. <value>true if the label’s icon is visible; otherwise, false.</value>
  3513. </member>
  3514. <member name="P:DevExpress.XtraLayout.LayoutGroup.CellSize">
  3515. <summary>
  3516. <para>Not supported.</para>
  3517. </summary>
  3518. <value></value>
  3519. </member>
  3520. <member name="M:DevExpress.XtraLayout.LayoutGroup.Clear">
  3521. <summary>
  3522. <para>Removes the items from the current group.</para>
  3523. </summary>
  3524. </member>
  3525. <member name="M:DevExpress.XtraLayout.LayoutGroup.Clear(System.Boolean)">
  3526. <summary>
  3527. <para>Removes all items from the current group.</para>
  3528. </summary>
  3529. <param name="disposeItemAndControls">true, to release all resources; otherwise false.</param>
  3530. </member>
  3531. <member name="M:DevExpress.XtraLayout.LayoutGroup.ClearSelection">
  3532. <summary>
  3533. <para>Clears selected items specified by the <see cref="P:DevExpress.XtraLayout.LayoutGroup.SelectedItems"/> property.</para>
  3534. </summary>
  3535. <returns>true if the selection was modified; otherwise, false.</returns>
  3536. </member>
  3537. <member name="P:DevExpress.XtraLayout.LayoutGroup.ContentImage">
  3538. <summary>
  3539. <para>Gets or sets the group’s background image that is displayed “as is”, and can be aligned to any group’s edge.</para>
  3540. </summary>
  3541. <value>An <see cref="T:System.Drawing.Image"/> object.</value>
  3542. </member>
  3543. <member name="P:DevExpress.XtraLayout.LayoutGroup.ContentImageAlignment">
  3544. <summary>
  3545. <para>Gets or sets the content image’s alignment within the group.</para>
  3546. </summary>
  3547. <value>A <see cref="T:System.Drawing.ContentAlignment"/> value that specifies the content image’s alignment.</value>
  3548. </member>
  3549. <member name="P:DevExpress.XtraLayout.LayoutGroup.ContentImageOptions">
  3550. <summary>
  3551. <para>Provides access to all properties that allow you to assign and customize this group’s background image at the top layer.</para>
  3552. </summary>
  3553. <value>A DevExpress.XtraLayout.LayoutGroupContentImageOptions object that comprises properties that allow you to assign and customize this group’s background image at the top layer.</value>
  3554. </member>
  3555. <member name="F:DevExpress.XtraLayout.LayoutGroup.contentImageOptionsCore">
  3556. <summary>
  3557. <para>The <see cref="P:DevExpress.XtraLayout.LayoutGroup.ContentImageOptions"/> property backing field.</para>
  3558. </summary>
  3559. <value></value>
  3560. </member>
  3561. <member name="P:DevExpress.XtraLayout.LayoutGroup.Count">
  3562. <summary>
  3563. <para>Gets the number of items that the current group owns.</para>
  3564. </summary>
  3565. <value>An integer that specifies the number of items that the current group own.</value>
  3566. </member>
  3567. <member name="M:DevExpress.XtraLayout.LayoutGroup.CreateGroupForSelectedItems">
  3568. <summary>
  3569. <para>Creates a new group that will contain the currently selected child items.</para>
  3570. </summary>
  3571. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> descendant that specifies the group that has been created.</returns>
  3572. </member>
  3573. <member name="M:DevExpress.XtraLayout.LayoutGroup.CreateTabbedGroupForSelectedGroup">
  3574. <summary>
  3575. <para>Creates a new tabbed group that will display the selected child group within the current group.</para>
  3576. </summary>
  3577. <returns>A <see cref="T:DevExpress.XtraLayout.TabbedGroup"/> descendant that specifies the group that has been created.</returns>
  3578. </member>
  3579. <member name="E:DevExpress.XtraLayout.LayoutGroup.CustomButtonChecked">
  3580. <summary>
  3581. <para>Fires when a custom header button is checked.</para>
  3582. </summary>
  3583. </member>
  3584. <member name="E:DevExpress.XtraLayout.LayoutGroup.CustomButtonClick">
  3585. <summary>
  3586. <para>Fires on a regular (push) custom header button click.</para>
  3587. </summary>
  3588. </member>
  3589. <member name="E:DevExpress.XtraLayout.LayoutGroup.CustomButtonUnchecked">
  3590. <summary>
  3591. <para>Fires when a custom header button is unchecked.</para>
  3592. </summary>
  3593. </member>
  3594. <member name="E:DevExpress.XtraLayout.LayoutGroup.CustomDrawBackground">
  3595. <summary>
  3596. <para>Allows you to custom paint the group’s client area background.</para>
  3597. </summary>
  3598. </member>
  3599. <member name="E:DevExpress.XtraLayout.LayoutGroup.CustomDrawCaption">
  3600. <summary>
  3601. <para>Allows you to custom paint the caption region.</para>
  3602. </summary>
  3603. </member>
  3604. <member name="E:DevExpress.XtraLayout.LayoutGroup.CustomDrawHeaderButton">
  3605. <summary>
  3606. <para>Allows you to custom paint header buttons (<see cref="P:DevExpress.XtraLayout.LayoutGroup.CustomHeaderButtons"/>).</para>
  3607. </summary>
  3608. </member>
  3609. <member name="P:DevExpress.XtraLayout.LayoutGroup.CustomHeaderButtons">
  3610. <summary>
  3611. <para>Gets or sets the collection of custom buttons displayed in the group header.</para>
  3612. </summary>
  3613. <value>A collection of buttons displayed in the group header.</value>
  3614. </member>
  3615. <member name="P:DevExpress.XtraLayout.LayoutGroup.DefaultLayoutType">
  3616. <summary>
  3617. <para>Gets or sets the default layout type for newly created items within the current group.</para>
  3618. </summary>
  3619. <value>A <see cref="T:DevExpress.XtraLayout.Utils.LayoutType"/> object that specifies the default layout type.</value>
  3620. </member>
  3621. <member name="P:DevExpress.XtraLayout.LayoutGroup.Enabled">
  3622. <summary>
  3623. <para>Gets or sets whether layout items that belong to the current group are enabled.</para>
  3624. </summary>
  3625. <value>true if layout items that belong to the current group are enabled; otherwise, false.</value>
  3626. </member>
  3627. <member name="P:DevExpress.XtraLayout.LayoutGroup.EnableIndentsWithoutBorders">
  3628. <summary>
  3629. <para>Gets or sets whether a layout group’s indents, specified by its <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Spacing"/> and <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Padding"/> properties, are applied when the group’s borders are hidden.</para>
  3630. </summary>
  3631. <value>true if a layout group’s indents are applied when the group’s borders are hidden; otherwise, false.</value>
  3632. </member>
  3633. <member name="P:DevExpress.XtraLayout.LayoutGroup.ExpandButtonLocation">
  3634. <summary>
  3635. <para>Gets or sets the position of the expand button within the group header.</para>
  3636. </summary>
  3637. <value>A <see cref="T:DevExpress.Utils.GroupElementLocation"/> value that specifies the expand button’s position.</value>
  3638. </member>
  3639. <member name="P:DevExpress.XtraLayout.LayoutGroup.ExpandButtonMode">
  3640. <summary>
  3641. <para>Gets or sets the direction of the expand button’s arrow.</para>
  3642. </summary>
  3643. <value>A <see cref="T:DevExpress.Utils.Controls.ExpandButtonMode"/> value that specifies the direction of the expand button’s arrow.</value>
  3644. </member>
  3645. <member name="P:DevExpress.XtraLayout.LayoutGroup.ExpandButtonVisible">
  3646. <summary>
  3647. <para>Gets or sets whether the group’s expand button is visible.</para>
  3648. </summary>
  3649. <value>true if the group’s expand button is visible; otherwise, false.</value>
  3650. </member>
  3651. <member name="P:DevExpress.XtraLayout.LayoutGroup.Expanded">
  3652. <summary>
  3653. <para>Gets or sets whether the current group is expanded.</para>
  3654. </summary>
  3655. <value>true if the group is expanded; otherwise, false.</value>
  3656. </member>
  3657. <member name="P:DevExpress.XtraLayout.LayoutGroup.ExpandOnDoubleClick">
  3658. <summary>
  3659. <para>Gets or sets whether the group is expanded/collapsed on double-clicking its caption.</para>
  3660. </summary>
  3661. <value>true if the group is expanded/collapsed on double-clicking its caption; otherwise, false.</value>
  3662. </member>
  3663. <member name="M:DevExpress.XtraLayout.LayoutGroup.FlipLayout">
  3664. <summary>
  3665. <para>Flips the current group’s layout items around a vertical axis.</para>
  3666. </summary>
  3667. </member>
  3668. <member name="M:DevExpress.XtraLayout.LayoutGroup.FlipLayout(System.Boolean)">
  3669. <summary>
  3670. <para>Flips the current group’s layout items around a vertical axis, and optionally allows you to flip the items in nested groups, if any.</para>
  3671. </summary>
  3672. <param name="processChildGroups">true if nested layout groups must be processed as well; otherwise, false.</param>
  3673. </member>
  3674. <member name="P:DevExpress.XtraLayout.LayoutGroup.FlowDirection">
  3675. <summary>
  3676. <para>Gets or sets the direction according to which the <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> arranges its child elements.</para>
  3677. </summary>
  3678. <value>A <see cref="T:System.Windows.Forms.FlowDirection"/> enumeration value that specifies the direction according to which the <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> arranges its child elements.</value>
  3679. </member>
  3680. <member name="M:DevExpress.XtraLayout.LayoutGroup.GetDefaultText">
  3681. <summary>
  3682. <para>Gets the default value of the group’s <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</para>
  3683. </summary>
  3684. <returns>A string that specifies the default value of the group’s <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</returns>
  3685. </member>
  3686. <member name="P:DevExpress.XtraLayout.LayoutGroup.GroupBordersVisible">
  3687. <summary>
  3688. <para>Gets whether the group’s borders are visible.</para>
  3689. </summary>
  3690. <value>true if the group’s borders are visible; otherwise false.</value>
  3691. </member>
  3692. <member name="P:DevExpress.XtraLayout.LayoutGroup.GroupStyle">
  3693. <summary>
  3694. <para>Gets or sets the border and the header style of this <see cref="T:DevExpress.XtraLayout.LayoutGroup"/>.</para>
  3695. </summary>
  3696. <value>A DevExpress.Utils.GroupStyle enumeration value that specifies the border and the header style of this <see cref="T:DevExpress.XtraLayout.LayoutGroup"/>.</value>
  3697. </member>
  3698. <member name="P:DevExpress.XtraLayout.LayoutGroup.HeaderButtonsLocation">
  3699. <summary>
  3700. <para>Gets or sets whether the group header buttons are displayed before or after text.</para>
  3701. </summary>
  3702. <value>The position of the group header button relative to the header text.</value>
  3703. </member>
  3704. <member name="P:DevExpress.XtraLayout.LayoutGroup.ImageList">
  3705. <summary>
  3706. <para>Gets a collection of images that can be displayed in the group’s label.</para>
  3707. </summary>
  3708. <value>An object that specifies an image collection.</value>
  3709. </member>
  3710. <member name="M:DevExpress.XtraLayout.LayoutGroup.Invalidate">
  3711. <summary>
  3712. <para>Invalidates the region which is occupied by the Layout Group.</para>
  3713. </summary>
  3714. </member>
  3715. <member name="P:DevExpress.XtraLayout.LayoutGroup.IsInTabbedGroup">
  3716. <summary>
  3717. <para>Gets whether the current group is displayed as a tab within a tabbed group.</para>
  3718. </summary>
  3719. <value>true if the current group is displayed as a tab within a tabbed group; otherwise false.</value>
  3720. </member>
  3721. <member name="P:DevExpress.XtraLayout.LayoutGroup.Item(System.Int32)">
  3722. <summary>
  3723. <para>Provides indexed access to the items that belong to the current group.</para>
  3724. </summary>
  3725. <param name="Index">An integer that specifies the index of the required item.</param>
  3726. <value>A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object that represents the item at the specified index.</value>
  3727. </member>
  3728. <member name="P:DevExpress.XtraLayout.LayoutGroup.Items">
  3729. <summary>
  3730. <para>Provides access to the collection of items owned by the current group.</para>
  3731. </summary>
  3732. <value>A <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection"/> object that contains the group’s child items.</value>
  3733. </member>
  3734. <member name="P:DevExpress.XtraLayout.LayoutGroup.LayoutMode">
  3735. <summary>
  3736. <para>Gets or sets the layout mode for a <see cref="T:DevExpress.XtraLayout.LayoutGroup"/>.</para>
  3737. </summary>
  3738. <value>A <see cref="T:DevExpress.XtraLayout.Utils.LayoutMode"/> enumerator value that specifies the layout mode for the LayoutGroup.</value>
  3739. </member>
  3740. <member name="P:DevExpress.XtraLayout.LayoutGroup.MaxSize">
  3741. <summary>
  3742. <para>Gets the maximum size of the group.</para>
  3743. </summary>
  3744. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the group’s maximum width and height.</value>
  3745. </member>
  3746. <member name="P:DevExpress.XtraLayout.LayoutGroup.MinSize">
  3747. <summary>
  3748. <para>Gets the minimum size of the group.</para>
  3749. </summary>
  3750. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the group’s minimum width and height.</value>
  3751. </member>
  3752. <member name="M:DevExpress.XtraLayout.LayoutGroup.Move(DevExpress.XtraLayout.Customization.LayoutItemDragController)">
  3753. <summary>
  3754. <para>Moves the layout group to the specified position within the LayoutControl.</para>
  3755. </summary>
  3756. <param name="controller">A <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object whose settings determine the position to which the layout group should be moved.</param>
  3757. <returns>true if the layout group has been successfully moved to a new position; otherwise, false.</returns>
  3758. </member>
  3759. <member name="P:DevExpress.XtraLayout.LayoutGroup.MoveFocusDirection">
  3760. <summary>
  3761. <para>Gets or sets whether, in Automatic Tab Order mode when TAB is pressed, the focus moves across grouped controls and then down, or first down and then across.</para>
  3762. </summary>
  3763. <value>A DevExpress.XtraLayout.MoveFocusDirectionGroup enumeration value that specifies whether the focus moves across grouped controls and then down, or first down and then across. Default uses the <see cref="P:DevExpress.XtraLayout.OptionsFocus.MoveFocusDirection"/> setting.</value>
  3764. </member>
  3765. <member name="P:DevExpress.XtraLayout.LayoutGroup.MoveFocusRightToLeft">
  3766. <summary>
  3767. <para>Gets or sets whether, in Automatic Tab Order mode when TAB is pressed, the focus moves across grouped controls from right to left.</para>
  3768. </summary>
  3769. <value>true to move focus from right to left; false to move focus from left to right. Default uses the <see cref="P:DevExpress.XtraLayout.OptionsFocus.MoveFocusRightToLeft"/> setting.</value>
  3770. </member>
  3771. <member name="P:DevExpress.XtraLayout.LayoutGroup.OptionsItemText">
  3772. <summary>
  3773. <para>Gets the options that determine how the controls displayed within the current group are aligned.</para>
  3774. </summary>
  3775. <value>A <see cref="T:DevExpress.XtraLayout.OptionsItemTextGroup"/> object.</value>
  3776. </member>
  3777. <member name="P:DevExpress.XtraLayout.LayoutGroup.OptionsPrint">
  3778. <summary>
  3779. <para>The group’s print/export options. This object’s settings affect all layout items owned by the group.</para>
  3780. </summary>
  3781. <value>The layout group’s print and export options.</value>
  3782. </member>
  3783. <member name="P:DevExpress.XtraLayout.LayoutGroup.OptionsTableLayoutGroup">
  3784. <summary>
  3785. <para>Provides settings and events for table layout customization.</para>
  3786. </summary>
  3787. <value>An object that contains options and settings specific to table layout mode.</value>
  3788. </member>
  3789. <member name="P:DevExpress.XtraLayout.LayoutGroup.PageEnabled">
  3790. <summary>
  3791. <para>Gets or sets whether the tab that corresponds to the current group is enabled. This property is in effect when the group is represented as a tab page within a <see cref="T:DevExpress.XtraLayout.TabbedControlGroup"/>.</para>
  3792. </summary>
  3793. <value>true if the tab that corresponds to the current group is enabled; otherwise, false.</value>
  3794. </member>
  3795. <member name="P:DevExpress.XtraLayout.LayoutGroup.Parent">
  3796. <summary>
  3797. <para>Gets or sets the group that owns the current group.</para>
  3798. </summary>
  3799. <value>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> or its descendant that owns the current group.</value>
  3800. </member>
  3801. <member name="P:DevExpress.XtraLayout.LayoutGroup.ParentTabbedGroup">
  3802. <summary>
  3803. <para>Gets the parent tabbed group if the current group is displayed as a tab.</para>
  3804. </summary>
  3805. <value>A <see cref="T:DevExpress.XtraLayout.TabbedGroup"/> descendant that specifies the parent tabbed group; null if the current group is not displayed as a tab within a tabbed group.</value>
  3806. </member>
  3807. <member name="M:DevExpress.XtraLayout.LayoutGroup.Remove(DevExpress.XtraLayout.BaseLayoutItem)">
  3808. <summary>
  3809. <para>Removes the specified child item within the current group.</para>
  3810. </summary>
  3811. <param name="item">The <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object that should be removed.</param>
  3812. </member>
  3813. <member name="M:DevExpress.XtraLayout.LayoutGroup.RemoveAt(System.Int32)">
  3814. <summary>
  3815. <para>Removes the child item at the specified index.</para>
  3816. </summary>
  3817. <param name="index">An integer that specifies the index of the item to remove.</param>
  3818. </member>
  3819. <member name="M:DevExpress.XtraLayout.LayoutGroup.RotateLayout">
  3820. <summary>
  3821. <para>Interchanges the columns and rows of layout items, including columns and rows of nested groups.</para>
  3822. </summary>
  3823. </member>
  3824. <member name="M:DevExpress.XtraLayout.LayoutGroup.RotateLayout(System.Boolean)">
  3825. <summary>
  3826. <para>Interchanges the columns and rows of layout items, and optionally allows you to rotate nested groups.</para>
  3827. </summary>
  3828. <param name="processChildGroups">true if nested layout groups must be rotated as well; otherwise, false.</param>
  3829. </member>
  3830. <member name="P:DevExpress.XtraLayout.LayoutGroup.SelectedItems">
  3831. <summary>
  3832. <para>Provides access to the collection of selected items within the current group.</para>
  3833. </summary>
  3834. <value>A DevExpress.XtraLayout.Utils.BaseItemCollection collection that contains the group’s selected items.</value>
  3835. </member>
  3836. <member name="P:DevExpress.XtraLayout.LayoutGroup.ShowTabPageCloseButton">
  3837. <summary>
  3838. <para>Gets or sets whether a Close button is displayed within a group when it’s embedded into a <see cref="T:DevExpress.XtraLayout.TabbedGroup"/>.</para>
  3839. </summary>
  3840. <value>true if a Close button is visible when a group is embedded into a TabbedGroup; otherwise, false.</value>
  3841. </member>
  3842. <member name="P:DevExpress.XtraLayout.LayoutGroup.Size">
  3843. <summary>
  3844. <para>Gets or sets the group’s size.</para>
  3845. </summary>
  3846. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the group’s width and height.</value>
  3847. </member>
  3848. <member name="P:DevExpress.XtraLayout.LayoutGroup.TabbedGroupParentName">
  3849. <summary>
  3850. <para>Gets the name of the group’s parent if the current group is displayed as a tab.</para>
  3851. </summary>
  3852. <value>A string which specifies the parent’s name.</value>
  3853. </member>
  3854. <member name="P:DevExpress.XtraLayout.LayoutGroup.TypeName">
  3855. <summary>
  3856. <para>Gets the name of the item’s type.</para>
  3857. </summary>
  3858. <value>The LayoutGroup value.</value>
  3859. </member>
  3860. <member name="M:DevExpress.XtraLayout.LayoutGroup.UngroupSelected">
  3861. <summary>
  3862. <para>Ungroups the selected child group.</para>
  3863. </summary>
  3864. </member>
  3865. <member name="P:DevExpress.XtraLayout.LayoutGroup.ViewInfo">
  3866. <summary>
  3867. <para>Gets the object which contains the information used to render the layout group.</para>
  3868. </summary>
  3869. <value>A DevExpress.XtraLayout.ViewInfo.LayoutGroupViewInfo object.</value>
  3870. </member>
  3871. <member name="T:DevExpress.XtraLayout.LayoutGroupCaptionImageOptions">
  3872. <summary>
  3873. <para>Contains options that specify the image in a layout group or tab’s label (header).</para>
  3874. </summary>
  3875. </member>
  3876. <member name="M:DevExpress.XtraLayout.LayoutGroupCaptionImageOptions.#ctor(DevExpress.XtraLayout.LayoutGroup)">
  3877. <summary>
  3878. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutGroupCaptionImageOptions"/> class with specified settings.</para>
  3879. </summary>
  3880. <param name="owner"></param>
  3881. </member>
  3882. <member name="P:DevExpress.XtraLayout.LayoutGroupCaptionImageOptions.AllowGlyphSkinning">
  3883. <summary>
  3884. <para>Gets or sets whether the icon is filled with the control’s foreground color.</para>
  3885. </summary>
  3886. <value><see cref="F:DevExpress.Utils.DefaultBoolean.Default"/> to use the owner control’s <see cref="P:DevExpress.XtraLayout.OptionsView.AllowGlyphSkinning"/> option; <see cref="F:DevExpress.Utils.DefaultBoolean.True"/> to fill the icon with the control’s foreground color; <see cref="F:DevExpress.Utils.DefaultBoolean.False"/> to display the icon as it is.</value>
  3887. </member>
  3888. <member name="P:DevExpress.XtraLayout.LayoutGroupCaptionImageOptions.HasDefaultPadding">
  3889. <summary />
  3890. <value></value>
  3891. </member>
  3892. <member name="P:DevExpress.XtraLayout.LayoutGroupCaptionImageOptions.Location">
  3893. <summary>
  3894. <para>Gets or sets the alignment of the icon relative to the text.</para>
  3895. </summary>
  3896. <value>A value that specifies the alignment of the icon relative to the text.</value>
  3897. </member>
  3898. <member name="P:DevExpress.XtraLayout.LayoutGroupCaptionImageOptions.Padding">
  3899. <summary>
  3900. <para>Gets or sets the amount of space between the icon and the label’s bounds.</para>
  3901. </summary>
  3902. <value>A structure that specifies the amount of space between the icon and the label’s bounds.</value>
  3903. </member>
  3904. <member name="P:DevExpress.XtraLayout.LayoutGroupCaptionImageOptions.Visible">
  3905. <summary>
  3906. <para>Gets or sets whether the icon is visible.</para>
  3907. </summary>
  3908. <value>true if the icon is visible; otherwise, false.</value>
  3909. </member>
  3910. <member name="T:DevExpress.XtraLayout.LayoutItem">
  3911. <summary>
  3912. <para>Represents the base class for layout items.</para>
  3913. </summary>
  3914. </member>
  3915. <member name="T:DevExpress.XtraLayout.LayoutItemContainer">
  3916. <summary>
  3917. <para>Represets a container of layout items.</para>
  3918. </summary>
  3919. </member>
  3920. <member name="P:DevExpress.XtraLayout.LayoutItemContainer.AllowCustomizeChildren">
  3921. <summary>
  3922. <para>Gets or sets whether the layout of the current container can be customized using drag and drop.</para>
  3923. </summary>
  3924. <value>true if the layout of the current container can be customized using drag and drop; otherwise, false.</value>
  3925. </member>
  3926. <member name="P:DevExpress.XtraLayout.LayoutItemContainer.AppearanceGroup">
  3927. <summary>
  3928. <para>Provides access to the properties that control the group’s appearance.</para>
  3929. </summary>
  3930. <value>A <see cref="T:DevExpress.XtraTab.PageAppearance"/> object that provides the appearance settings used to paint the group.</value>
  3931. </member>
  3932. <member name="P:DevExpress.XtraLayout.LayoutItemContainer.AppearanceTabPage">
  3933. <summary>
  3934. <para>Provides access to a tabbed group’s appearance settings.</para>
  3935. </summary>
  3936. <value>A DevExpress.XtraLayout.Helpers.LayoutPageAppearance object that provides the appearance settings for a tabbed group.</value>
  3937. </member>
  3938. <member name="M:DevExpress.XtraLayout.LayoutItemContainer.BeginUpdate">
  3939. <summary>
  3940. <para>Locks the <see cref="T:DevExpress.XtraLayout.LayoutItemContainer"></see> object by preventing visual updates of the object and its elements until the EndUpdate method is called.</para>
  3941. </summary>
  3942. </member>
  3943. <member name="M:DevExpress.XtraLayout.LayoutItemContainer.Contains(DevExpress.XtraLayout.BaseLayoutItem)">
  3944. <summary>
  3945. <para>Gets whether the specified item belongs to the current container.</para>
  3946. </summary>
  3947. <param name="item">A <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> object whose membership should be tested.</param>
  3948. <returns>true if the specified item belongs to the current container; otherwise, false.</returns>
  3949. </member>
  3950. <member name="M:DevExpress.XtraLayout.LayoutItemContainer.EndUpdate">
  3951. <summary>
  3952. <para>Unlocks the <see cref="T:DevExpress.XtraLayout.LayoutItemContainer"></see> object after a call to the BeginUpdate method and causes an immediate visual update.</para>
  3953. </summary>
  3954. </member>
  3955. <member name="P:DevExpress.XtraLayout.LayoutItemContainer.PaintAppearanceGroup">
  3956. <summary>
  3957. <para>Provides access to the appearance settings currently used to paint the layout group.</para>
  3958. </summary>
  3959. <value>An <see cref="T:DevExpress.Utils.AppearanceObject"/> object that contains the corresponding appearance settings.</value>
  3960. </member>
  3961. <member name="P:DevExpress.XtraLayout.LayoutItemContainer.PaintAppearanceItemCaption">
  3962. <summary>
  3963. <para>Provides access to the appearance settings currently used to paint layout items that belong to the current container.</para>
  3964. </summary>
  3965. <value>An <see cref="T:DevExpress.Utils.AppearanceObject"/> object that contains the corresponding appearance settings.</value>
  3966. </member>
  3967. <member name="P:DevExpress.XtraLayout.LayoutItemContainer.Parent">
  3968. <summary>
  3969. <para>Gets or sets the layout group that owns the <see cref="T:DevExpress.XtraLayout.LayoutItemContainer"/>.</para>
  3970. </summary>
  3971. <value>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object that owns the <see cref="T:DevExpress.XtraLayout.LayoutItemContainer"/>.</value>
  3972. </member>
  3973. <member name="P:DevExpress.XtraLayout.LayoutItemContainer.TabPageWidth">
  3974. <summary>
  3975. <para>Gets or sets the width, in pixels, of tab headers.</para>
  3976. </summary>
  3977. <value>An integer value that specifies the width, in pixels, of tab headers.</value>
  3978. </member>
  3979. <member name="P:DevExpress.XtraLayout.LayoutItemContainer.TextLocation">
  3980. <summary>
  3981. <para>Gets or sets the container’s side along which its caption is displayed.</para>
  3982. </summary>
  3983. <value>A <see cref="T:DevExpress.Utils.Locations"/> value which specifies the container’s side along which its caption is displayed.</value>
  3984. </member>
  3985. <member name="P:DevExpress.XtraLayout.LayoutItemContainer.TextSize">
  3986. <summary>
  3987. <para>Not supported.</para>
  3988. </summary>
  3989. <value>A <see cref="F:System.Drawing.Size.Empty"/> structure.</value>
  3990. </member>
  3991. <member name="P:DevExpress.XtraLayout.LayoutItemContainer.TextToControlDistance">
  3992. <summary>
  3993. <para>Not supported.</para>
  3994. </summary>
  3995. <value>Zero.</value>
  3996. </member>
  3997. <member name="T:DevExpress.XtraLayout.LayoutMenuEventArgs">
  3998. <summary>
  3999. <para>Provides data for the <see cref="E:DevExpress.XtraLayout.LayoutControl.PopupMenuShowing"/> event.</para>
  4000. </summary>
  4001. </member>
  4002. <member name="M:DevExpress.XtraLayout.LayoutMenuEventArgs.#ctor(DevExpress.Utils.Menu.DXPopupMenu,DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo)">
  4003. <summary>
  4004. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutMenuEventArgs"/> class with the specified settings.</para>
  4005. </summary>
  4006. <param name="menu">A <see cref="T:DevExpress.Utils.Menu.DXPopupMenu"/> object representing the menu to be displayed. This object is assigned to the Menu property.</param>
  4007. <param name="hitInfo">A <see cref="T:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo"/> object that identifies the clicked object. This object is assigned to the HitInfo property.</param>
  4008. </member>
  4009. <member name="M:DevExpress.XtraLayout.LayoutMenuEventArgs.#ctor(DevExpress.Utils.Menu.DXPopupMenu,DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo,System.Boolean)">
  4010. <summary>
  4011. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutMenuEventArgs"/> class with the specified settings.</para>
  4012. </summary>
  4013. <param name="menu">A <see cref="T:DevExpress.Utils.Menu.DXPopupMenu"/> object representing the menu to be displayed. This object is assigned to the Menu property.</param>
  4014. <param name="hitInfo">A <see cref="T:DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo"/> object that identifies the clicked object. This object is assigned to the HitInfo property.</param>
  4015. <param name="allow">A Boolean value that specifies whether the menu is allowed to be displayed. This value is assigned to the Allow property.</param>
  4016. </member>
  4017. <member name="T:DevExpress.XtraLayout.LayoutMenuEventHandler">
  4018. <summary>
  4019. <para>Represents a method for handling the <see cref="E:DevExpress.XtraLayout.LayoutControl.PopupMenuShowing"/> event.</para>
  4020. </summary>
  4021. <param name="sender">The event source. This identifies the LayoutControl control which fires the event.</param>
  4022. <param name="e">A <see cref="T:DevExpress.XtraLayout.LayoutMenuEventArgs"/> object that contains data for the event.</param>
  4023. </member>
  4024. <member name="T:DevExpress.XtraLayout.LayoutRepositoryItem">
  4025. <summary>
  4026. <para>Represents a layout item capable of displaying information provided by a repository item.</para>
  4027. </summary>
  4028. </member>
  4029. <member name="M:DevExpress.XtraLayout.LayoutRepositoryItem.#ctor">
  4030. <summary>
  4031. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutRepositoryItem"/> class with default settings.</para>
  4032. </summary>
  4033. </member>
  4034. <member name="M:DevExpress.XtraLayout.LayoutRepositoryItem.#ctor(DevExpress.XtraEditors.Repository.RepositoryItem)">
  4035. <summary>
  4036. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutRepositoryItem"/> class with the specified repository item.</para>
  4037. </summary>
  4038. <param name="editor">A <see cref="T:DevExpress.XtraEditors.Repository.RepositoryItem"/> object to be associated with the created layout item. This value is assigned to the <see cref="P:DevExpress.XtraLayout.LayoutRepositoryItem.RepositoryItem"/> property.</param>
  4039. </member>
  4040. <member name="P:DevExpress.XtraLayout.LayoutRepositoryItem.ControlName">
  4041. <summary>
  4042. <para>This property supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  4043. </summary>
  4044. <value>A string value.</value>
  4045. </member>
  4046. <member name="P:DevExpress.XtraLayout.LayoutRepositoryItem.EditorPreferredWidth">
  4047. <summary>
  4048. <para>Specifies the desired width of the layout item’s region displaying the editor (repository item).</para>
  4049. </summary>
  4050. <value>An integer value that specifies the width of the layout item’s edit portion.</value>
  4051. </member>
  4052. <member name="P:DevExpress.XtraLayout.LayoutRepositoryItem.EditValue">
  4053. <summary>
  4054. <para>Gets or sets a value to be displayed by a repository item. This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  4055. </summary>
  4056. <value>An object representing the value to be displayed.</value>
  4057. </member>
  4058. <member name="P:DevExpress.XtraLayout.LayoutRepositoryItem.RepositoryItem">
  4059. <summary>
  4060. <para>Gets or sets a repository item associated with the current layout item.</para>
  4061. </summary>
  4062. <value>A <see cref="T:DevExpress.XtraEditors.Repository.RepositoryItem"/> object to be associated with the current layout item.</value>
  4063. </member>
  4064. <member name="M:DevExpress.XtraLayout.LayoutRepositoryItem.ResetEditorPreferredWidth">
  4065. <summary>
  4066. <para>Resets the desired width of the layout item’s region displaying an editor.</para>
  4067. </summary>
  4068. </member>
  4069. <member name="P:DevExpress.XtraLayout.LayoutRepositoryItem.TypeName">
  4070. <summary>
  4071. <para>Gets the name of the item’s type.</para>
  4072. </summary>
  4073. <value>The “LayoutRepositoryItem” string.</value>
  4074. </member>
  4075. <member name="P:DevExpress.XtraLayout.LayoutRepositoryItem.ViewInfo">
  4076. <summary />
  4077. <value></value>
  4078. </member>
  4079. <member name="T:DevExpress.XtraLayout.LayoutSerializationOptions">
  4080. <summary>
  4081. <para>Contains options that specify how the LayoutControl’s layout is saved to and restored from a data store (an XML file, a stream or the system registry).</para>
  4082. </summary>
  4083. </member>
  4084. <member name="M:DevExpress.XtraLayout.LayoutSerializationOptions.#ctor">
  4085. <summary>
  4086. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.LayoutSerializationOptions"/> class with default settings.</para>
  4087. </summary>
  4088. </member>
  4089. <member name="M:DevExpress.XtraLayout.LayoutSerializationOptions.Assign(DevExpress.Utils.Controls.BaseOptions)">
  4090. <summary>
  4091. <para>Copies options from the specified object to the current object.</para>
  4092. </summary>
  4093. <param name="options">A <see cref="T:DevExpress.Utils.Controls.BaseOptions"/> descendant whose settings are assigned to the current object.</param>
  4094. </member>
  4095. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.DiscardOldItems">
  4096. <summary>
  4097. <para>Gets or sets whether the items that exist in a layout when it’s restored, but that don’t exist in the current layout control, should be discarded or added to the control.</para>
  4098. </summary>
  4099. <value>true to discard the items that exist in the layout being restored, but don’t exist in the current layout control; false to add these items to the layout control.</value>
  4100. </member>
  4101. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RecreateIFixedItems">
  4102. <summary>
  4103. <para>Gets or sets whether or not secondary layout items should be re-created when restoring the LayoutControl’s layout.</para>
  4104. </summary>
  4105. <value>true if secondary layout items should be re-created; otherwise, false.</value>
  4106. </member>
  4107. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreAppearanceItemCaption">
  4108. <summary>
  4109. <para>Gets or sets whether the appearance settings of item captions are loaded when a layout is loaded from a data store.</para>
  4110. </summary>
  4111. <value>A Boolean value that specifies whether the corresponding appearance options are restored when a layout is restored.</value>
  4112. </member>
  4113. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreAppearanceTabPage">
  4114. <summary>
  4115. <para>Gets or sets whether the appearance settings of tab pages are loaded when a layout is loaded from a data store.</para>
  4116. </summary>
  4117. <value>A Boolean value that specifies whether the corresponding appearance options are restored when a layout is restored.</value>
  4118. </member>
  4119. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreGroupEnabled">
  4120. <summary>
  4121. <para>Gets or sets whether layout items’ state settings (<see cref="P:DevExpress.XtraLayout.LayoutGroup.Enabled"/>) are restored when restoring the control’s layout from a data store.</para>
  4122. </summary>
  4123. <value>true, to restore the corresponding settings; otherwise, false.</value>
  4124. </member>
  4125. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreGroupPadding">
  4126. <summary>
  4127. <para>Gets or sets whether layout groups’ padding settings (<see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Padding"/>) are restored when restoring the control’s layout from a data store.</para>
  4128. </summary>
  4129. <value>true to restore the corresponding settings; otherwise, false.</value>
  4130. </member>
  4131. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreGroupSpacing">
  4132. <summary>
  4133. <para>Gets or sets whether layout groups’ spacing settings (<see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Spacing"/>) are restored when restoring the control’s layout from a data store.</para>
  4134. </summary>
  4135. <value>true to restore the corresponding settings; otherwise, false.</value>
  4136. </member>
  4137. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreLayoutGroupAppearanceGroup">
  4138. <summary>
  4139. <para>Gets or sets whether the appearance settings of groups are loaded when a layout is loaded from a data store.</para>
  4140. </summary>
  4141. <value>A Boolean value that specifies whether the corresponding appearance options are restored when a layout is restored.</value>
  4142. </member>
  4143. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreLayoutItemCustomizationFormText">
  4144. <summary>
  4145. <para>Gets or sets whether values of layout items’ <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.CustomizationFormText"/> properties are restored when restoring the control’s layout from a data store.</para>
  4146. </summary>
  4147. <value>true to restore the corresponding settings; otherwise, false.</value>
  4148. </member>
  4149. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreLayoutItemEnabled">
  4150. <summary>
  4151. <para>Gets or sets whether layout items’ state settings (<see cref="P:DevExpress.XtraLayout.LayoutControlItem.Enabled"/>) are restored when restoring the control’s layout from a data store.</para>
  4152. </summary>
  4153. <value>true, to restore the corresponding settings; otherwise, false.</value>
  4154. </member>
  4155. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreLayoutItemPadding">
  4156. <summary>
  4157. <para>Gets or sets whether layout items’ padding settings (<see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Padding"/>) are restored when restoring the control’s layout from a data store.</para>
  4158. </summary>
  4159. <value>true to restore the corresponding settings; otherwise, false.</value>
  4160. </member>
  4161. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreLayoutItemSpacing">
  4162. <summary>
  4163. <para>Gets or sets whether layout items’ spacing settings (<see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Spacing"/>) are restored when restoring the control’s layout from a data store.</para>
  4164. </summary>
  4165. <value>true to restore the corresponding settings; otherwise, false.</value>
  4166. </member>
  4167. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreLayoutItemText">
  4168. <summary>
  4169. <para>Gets or sets whether layout items’ captions are restored when restoring the control’s layout from a data store.</para>
  4170. </summary>
  4171. <value>true if layout items’ captions are restored when restoring the control’s layout from a data store; otherwise, false.</value>
  4172. </member>
  4173. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreRootGroupPadding">
  4174. <summary>
  4175. <para>Gets or sets whether the layout root group’s padding settings (<see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Padding"/>) are restored when restoring the control’s layout from a data store.</para>
  4176. </summary>
  4177. <value>true to restore the corresponding settings; otherwise, false.</value>
  4178. </member>
  4179. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreRootGroupSpacing">
  4180. <summary>
  4181. <para>Gets or sets whether the layout root group’s spacing settings (<see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Spacing"/>) are restored when restoring the control’s layout from a data store.</para>
  4182. </summary>
  4183. <value>true to restore the corresponding settings; otherwise, false.</value>
  4184. </member>
  4185. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreTabbedGroupPadding">
  4186. <summary>
  4187. <para>Gets or sets whether tabbed groups’ padding settings (<see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Padding"/>) are restored when restoring the control’s layout from a data store.</para>
  4188. </summary>
  4189. <value>true to restore the corresponding settings; otherwise, false.</value>
  4190. </member>
  4191. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreTabbedGroupSpacing">
  4192. <summary>
  4193. <para>Gets or sets whether tabbed groups’ spacing settings (<see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Spacing"/>) are restored when restoring the control’s layout from a data store.</para>
  4194. </summary>
  4195. <value>true to restore the corresponding settings; otherwise, false.</value>
  4196. </member>
  4197. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.RestoreTextToControlDistance">
  4198. <summary>
  4199. <para>Gets or sets whether values of the TextToControlDistance properties (<see cref="P:DevExpress.XtraLayout.BaseLayoutItem.TextToControlDistance"/> and LayoutGroup .OptionsItemText.TextToControlDistance) are restored when you load the control’s layout from a data store.</para>
  4200. </summary>
  4201. <value>true to restore the TextToControlDistance settings; otherwise, false.</value>
  4202. </member>
  4203. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.StoreAppearance">
  4204. <summary>
  4205. <para>Gets or sets whether the control’s appearance settings are stored (restored) when the layout is saved to (loaded from) storage.</para>
  4206. </summary>
  4207. <value>A value that specifies whether to store and restore the control’s appearance settings.</value>
  4208. </member>
  4209. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.StoreEnabledState">
  4210. <summary>
  4211. <para>Gets or sets whether “enabled” states of layout items are stored (restored) when the layout is saved to (loaded from) storage.</para>
  4212. </summary>
  4213. <value>A value that specifies whether to store and restore the “enabled” states of layout items.</value>
  4214. </member>
  4215. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.StorePrintOptions">
  4216. <summary>
  4217. <para>Gets or sets whether print settings are stored (restored) when the layout is saved to (loaded from) storage.</para>
  4218. </summary>
  4219. <value>A value that specifies whether to store and restore the print settings.</value>
  4220. </member>
  4221. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.StoreSpaceOptions">
  4222. <summary>
  4223. <para>Gets or sets whether padding, margin, and distance settings are stored (restored) when the layout is saved to (loaded from) storage.</para>
  4224. </summary>
  4225. <value>A value that specifies whether to store and restore the distance settings of layout items.</value>
  4226. </member>
  4227. <member name="P:DevExpress.XtraLayout.LayoutSerializationOptions.StoreText">
  4228. <summary>
  4229. <para>Gets or sets whether captions of layout items and groups are stored (restored) when the layout is saved to (loaded from) storage.</para>
  4230. </summary>
  4231. <value>A value that specifies whether to store and restore the text of layout items and groups.</value>
  4232. </member>
  4233. <member name="N:DevExpress.XtraLayout.Localization">
  4234. <summary>
  4235. <para>Contains classes and enumerations that are intended to localize the User Interface of the DevExpress WinForms Layout Manager.</para>
  4236. </summary>
  4237. </member>
  4238. <member name="T:DevExpress.XtraLayout.Localization.LayoutLocalizer">
  4239. <summary>
  4240. <para>A base class that provides necessary functionality for custom localizers of the Layout Manager.</para>
  4241. </summary>
  4242. </member>
  4243. <member name="M:DevExpress.XtraLayout.Localization.LayoutLocalizer.#ctor">
  4244. <summary>
  4245. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.Localization.LayoutLocalizer"/> class with default settings.</para>
  4246. </summary>
  4247. </member>
  4248. <member name="P:DevExpress.XtraLayout.Localization.LayoutLocalizer.Active">
  4249. <summary>
  4250. <para>Gets or sets a localizer object providing localization of the user interface at runtime.</para>
  4251. </summary>
  4252. <value>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> descendant, used to localize the user interface at runtime.</value>
  4253. </member>
  4254. <member name="M:DevExpress.XtraLayout.Localization.LayoutLocalizer.CreateDefaultLocalizer">
  4255. <summary>
  4256. <para>Returns a localizer object, which provides resources based on the thread’s language and regional settings (culture).</para>
  4257. </summary>
  4258. <returns>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> object representing resources based on the thread’s culture.</returns>
  4259. </member>
  4260. <member name="M:DevExpress.XtraLayout.Localization.LayoutLocalizer.CreateResXLocalizer">
  4261. <summary>
  4262. <para>Returns a localizer object, which provides resources based on the thread’s language and regional settings (culture).</para>
  4263. </summary>
  4264. <returns>A <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> object, which provides resources based on the thread’s culture.</returns>
  4265. </member>
  4266. <member name="T:DevExpress.XtraLayout.Localization.LayoutResLocalizer">
  4267. <summary>
  4268. <para>A default localizer to translate resources for the WinForms Layout Manager.</para>
  4269. </summary>
  4270. </member>
  4271. <member name="M:DevExpress.XtraLayout.Localization.LayoutResLocalizer.#ctor">
  4272. <summary>
  4273. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.Localization.LayoutResLocalizer"/> class with default settings.</para>
  4274. </summary>
  4275. </member>
  4276. <member name="M:DevExpress.XtraLayout.Localization.LayoutResLocalizer.GetLocalizedString(DevExpress.XtraLayout.Localization.LayoutStringId)">
  4277. <summary>
  4278. <para>Gets the string, localized by the current <see cref="T:DevExpress.XtraLayout.Localization.LayoutResLocalizer"/>, for the specified user interface element.</para>
  4279. </summary>
  4280. <param name="id">A DevExpress.XtraLayout.Localization.LayoutStringId enumeration value specifying the UI element whose caption (text) is to be localized.</param>
  4281. <returns>A <see cref="T:System.String"/> representing the text to be displayed within the specified UI element.</returns>
  4282. </member>
  4283. <member name="P:DevExpress.XtraLayout.Localization.LayoutResLocalizer.Language">
  4284. <summary>
  4285. <para>Returns the name of the language currently used by this localizer object.</para>
  4286. </summary>
  4287. <value>A <see cref="T:System.String"/> specifying the language used to localize the user interface.</value>
  4288. </member>
  4289. <member name="T:DevExpress.XtraLayout.MoveFocusDirection">
  4290. <summary>
  4291. <para>Specifies the direction in which focus is moved when the TAB key is pressed.</para>
  4292. </summary>
  4293. </member>
  4294. <member name="F:DevExpress.XtraLayout.MoveFocusDirection.AcrossThenDown">
  4295. <summary>
  4296. <para>Focus moves from one ‘row’ to another selecting each control in a row.</para>
  4297. </summary>
  4298. </member>
  4299. <member name="F:DevExpress.XtraLayout.MoveFocusDirection.DownThenAcross">
  4300. <summary>
  4301. <para>Focus moves from one ‘column’ to another selecting each control in a column</para>
  4302. </summary>
  4303. </member>
  4304. <member name="T:DevExpress.XtraLayout.OptionsCustomizationForm">
  4305. <summary>
  4306. <para>Contains options that affect the appearance of the Customization Form.</para>
  4307. </summary>
  4308. </member>
  4309. <member name="M:DevExpress.XtraLayout.OptionsCustomizationForm.#ctor(DevExpress.XtraLayout.ILayoutControl)">
  4310. <summary>
  4311. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.OptionsCustomizationForm"/> class.</para>
  4312. </summary>
  4313. <param name="ownerControl"></param>
  4314. </member>
  4315. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.AllowHandleDeleteKey">
  4316. <summary>
  4317. <para>Gets or sets whether the default handling of the DELETE key in customization mode is disabled.</para>
  4318. </summary>
  4319. <value>true if the default handling of the DELETE key in customization mode is disabled; otherwise, false.</value>
  4320. </member>
  4321. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.AllowUndoManager">
  4322. <summary>
  4323. <para>Gets or sets whether the LayoutControl allows an end-user to undo/redo runtime customization operations.</para>
  4324. </summary>
  4325. <value>true if the LayoutControl allows an end-user to undo/redo runtime customization operations; otherwise, false.</value>
  4326. </member>
  4327. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.DefaultPage">
  4328. <summary>
  4329. <para>Gets or sets whether the Hidden Items Tab or Layout Tree View Tab is selected by default.</para>
  4330. </summary>
  4331. <value>A DevExpress.XtraLayout.CustomizationPage enumeration value, such as HiddenItems or LayoutTreeView, that specifies whether the Hidden Items Tab or Layout Tree View Tab is selected by default.</value>
  4332. </member>
  4333. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.DefaultRestoreDirectory">
  4334. <summary>
  4335. <para>Gets or sets the default directory for the Open dialog that is opened when clicking on the Customization Form‘s Load Layout button.</para>
  4336. </summary>
  4337. <value>A string that specifies the default directory for the Open dialog invoked via the Customization Form.</value>
  4338. </member>
  4339. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.DefaultSaveDirectory">
  4340. <summary>
  4341. <para>Gets or sets the default directory for the Save dialog that is opened when clicking on the Customization Form‘s Save Layout button.</para>
  4342. </summary>
  4343. <value>A string that specifies the default directory for the Save dialog invoked via the Customization Form.</value>
  4344. </member>
  4345. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize">
  4346. <summary>
  4347. <para>Gets or sets the coordinates and bounding rectangle of the control’s Customization Form at design time.</para>
  4348. </summary>
  4349. <value>A Nullable Rectangle value that specifies the Customization Form’s coordinates and bounds at design time.</value>
  4350. </member>
  4351. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.EnableUndoManager">
  4352. <summary>
  4353. <para>Gets or sets whether the Undo Manager, which allows customization operations to be reverted, is enabled.</para>
  4354. </summary>
  4355. <value>true if the Undo Manager is enabled; otherwise, false.</value>
  4356. </member>
  4357. <member name="M:DevExpress.XtraLayout.OptionsCustomizationForm.GetShowPropertyGrid">
  4358. <summary>
  4359. <para>Returns whether the Property Grid is displayed within the Customization Form.</para>
  4360. </summary>
  4361. <returns>true, to display the Property Grid within the Customization Form; otherwise, false.</returns>
  4362. </member>
  4363. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.QuickModeInitDelay">
  4364. <summary>
  4365. <para>Gets or sets a delay between pressing the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> and the start of quick customization mode initialization.</para>
  4366. </summary>
  4367. <value>A value that specifies the delay between pressing the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> and the start of quick customization mode initialization (displaying the load indicator).</value>
  4368. </member>
  4369. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.QuickModeLoadIndicatorSize">
  4370. <summary>
  4371. <para>Gets or sets the size of the quick customization mode load indicator.</para>
  4372. </summary>
  4373. <value>A value that specifies the load indicator’s height and width.</value>
  4374. </member>
  4375. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.QuickModeLoadTime">
  4376. <summary>
  4377. <para>Gets or sets quick mode activation time.</para>
  4378. </summary>
  4379. <value>A value that specifies quick mode activation time (load indicator filling time).</value>
  4380. </member>
  4381. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.ShowLayoutTreeView">
  4382. <summary>
  4383. <para>Gets or sets whether the Layout Tree View tab page is visible in the Customization Form.</para>
  4384. </summary>
  4385. <value>true if the Layout Tree View tab page is visible; otherwise, false.</value>
  4386. </member>
  4387. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.ShowLoadButton">
  4388. <summary>
  4389. <para>Gets or sets whether the Customization Form’s Load button is visible.</para>
  4390. </summary>
  4391. <value>true if the Load button is visible; otherwise, false.</value>
  4392. </member>
  4393. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.ShowPropertyGrid">
  4394. <summary>
  4395. <para>Gets or sets whether the Property Grid is displayed within the Customization Form.</para>
  4396. </summary>
  4397. <value>true to display the Property Grid within the Customization Form; otherwise, false.</value>
  4398. </member>
  4399. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.ShowRedoButton">
  4400. <summary>
  4401. <para>Gets or sets whether the Customization Form’s Redo button is visible.</para>
  4402. </summary>
  4403. <value>true if the Redo button is visible; otherwise, false.</value>
  4404. </member>
  4405. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.ShowSaveButton">
  4406. <summary>
  4407. <para>Gets or sets whether the Customization Form’s Save button is visible.</para>
  4408. </summary>
  4409. <value>true if the Save button is visible; otherwise, false.</value>
  4410. </member>
  4411. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.ShowUndoButton">
  4412. <summary>
  4413. <para>Gets or sets whether the Customization Form’s Undo button is visible.</para>
  4414. </summary>
  4415. <value>true if the Undo button is visible; otherwise, false.</value>
  4416. </member>
  4417. <member name="P:DevExpress.XtraLayout.OptionsCustomizationForm.SnapMode">
  4418. <summary>
  4419. <para>Gets or sets to which objects this Customization Form is allowed to snap.</para>
  4420. </summary>
  4421. <value>A SnapMode enumeration value that specifies to which objects this Customization Form is allowed to snap.</value>
  4422. </member>
  4423. <member name="T:DevExpress.XtraLayout.OptionsFocus">
  4424. <summary>
  4425. <para>Contains options that affect focus movement between controls within the Layout Control and layout groups.</para>
  4426. </summary>
  4427. </member>
  4428. <member name="M:DevExpress.XtraLayout.OptionsFocus.#ctor(DevExpress.XtraLayout.ILayoutControl)">
  4429. <summary>
  4430. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.OptionsFocus"/> class.</para>
  4431. </summary>
  4432. <param name="ownerControl"></param>
  4433. </member>
  4434. <member name="M:DevExpress.XtraLayout.OptionsFocus.#ctor(DevExpress.XtraLayout.MoveFocusDirection,System.Boolean)">
  4435. <summary>
  4436. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.OptionsFocus"/> class with the specified focus direction and right-to-left setting.</para>
  4437. </summary>
  4438. <param name="direction">A <see cref="T:DevExpress.XtraLayout.MoveFocusDirection"/> value that specifies how focus is moved when the TAB key is pressed. This value is assigned to the <see cref="P:DevExpress.XtraLayout.OptionsFocus.MoveFocusDirection"/> property.</param>
  4439. <param name="rightToLeft">A Boolean value that specifies whether focus needs to be moved from right to left when the TAB key is pressed. This value is assigned to the <see cref="P:DevExpress.XtraLayout.OptionsFocus.MoveFocusRightToLeft"/> property.</param>
  4440. </member>
  4441. <member name="P:DevExpress.XtraLayout.OptionsFocus.ActivateSelectedControlOnGotFocus">
  4442. <summary>
  4443. <para>Gets or sets whether the currently selected child control is activated when the LayoutControl receives focus.</para>
  4444. </summary>
  4445. <value>true if the currently selected child control is activated when the LayoutControl receives focus; otherwise, false.</value>
  4446. </member>
  4447. <member name="P:DevExpress.XtraLayout.OptionsFocus.AllowFocusControlOnActivatedTabPage">
  4448. <summary>
  4449. <para>Gets or sets whether the first control within a tab page is focused when the tab page is activated.</para>
  4450. </summary>
  4451. <value>true if the first control within a tab page is focused when the tab page is activated; false if focus is not moved to this control.</value>
  4452. </member>
  4453. <member name="P:DevExpress.XtraLayout.OptionsFocus.AllowFocusControlOnLabelClick">
  4454. <summary>
  4455. <para>Gets or sets whether a layout item’s control is focused when its label is clicked.</para>
  4456. </summary>
  4457. <value>true if a layout item’s control is focused when its label is clicked; otherwise, false.</value>
  4458. </member>
  4459. <member name="P:DevExpress.XtraLayout.OptionsFocus.AllowFocusGroups">
  4460. <summary>
  4461. <para>Gets or sets whether the expand buttons of regular groups can be focused when the TAB key is pressed.</para>
  4462. </summary>
  4463. <value>true if the expand buttons of groups can receive focus; otherwise, false.</value>
  4464. </member>
  4465. <member name="P:DevExpress.XtraLayout.OptionsFocus.AllowFocusReadonlyEditors">
  4466. <summary>
  4467. <para>Gets or sets whether read-only editors are focused when focus is moved between controls using the TAB key.</para>
  4468. </summary>
  4469. <value>true if read-only editors are focused when focus is moved between controls using the TAB key; otherwise, false.</value>
  4470. </member>
  4471. <member name="P:DevExpress.XtraLayout.OptionsFocus.AllowFocusTabbedGroups">
  4472. <summary>
  4473. <para>Gets or sets whether the headers of tabbed groups can be focused.</para>
  4474. </summary>
  4475. <value>true if the headers of tabbed groups can be focused; otherwise, false.</value>
  4476. </member>
  4477. <member name="P:DevExpress.XtraLayout.OptionsFocus.EnableAutoTabOrder">
  4478. <summary>
  4479. <para>Gets or sets whether the Automatic Tab Order feature is enabled.</para>
  4480. </summary>
  4481. <value>true if the Automatic Tab Order feature is enabled; otherwise, false.</value>
  4482. </member>
  4483. <member name="P:DevExpress.XtraLayout.OptionsFocus.MoveFocusDirection">
  4484. <summary>
  4485. <para>Gets or sets the direction in which focus moves in Automatic Tab Order mode when the TAB key is pressed.</para>
  4486. </summary>
  4487. <value>A <see cref="T:DevExpress.XtraLayout.MoveFocusDirection"/> value that specifies the direction in which focus moves.</value>
  4488. </member>
  4489. <member name="P:DevExpress.XtraLayout.OptionsFocus.MoveFocusRightToLeft">
  4490. <summary>
  4491. <para>Gets or sets whether focus moves from right to left.</para>
  4492. </summary>
  4493. <value>true if focus moves from right to left; false if focus moves from left to right.</value>
  4494. </member>
  4495. <member name="T:DevExpress.XtraLayout.OptionsItemText">
  4496. <summary>
  4497. <para>Contains default options that specify how the text regions of layout items displayed within the LayoutControl are rendered.</para>
  4498. </summary>
  4499. </member>
  4500. <member name="M:DevExpress.XtraLayout.OptionsItemText.#ctor(DevExpress.XtraLayout.ILayoutControl)">
  4501. <summary>
  4502. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.OptionsItemText"/> class.</para>
  4503. </summary>
  4504. <param name="ownerControl"></param>
  4505. </member>
  4506. <member name="P:DevExpress.XtraLayout.OptionsItemText.AlignControlsWithHiddenText">
  4507. <summary>
  4508. <para>Gets or sets whether controls with hidden text must be aligned when the control horizontal alignment is enabled.</para>
  4509. </summary>
  4510. <value>true if controls with hidden text must be aligned when the control horizontal alignment is enabled; otherwise, false.</value>
  4511. </member>
  4512. <member name="P:DevExpress.XtraLayout.OptionsItemText.AutoAlignMode">
  4513. <summary>
  4514. <para>Specifies the alignment options.</para>
  4515. </summary>
  4516. <value></value>
  4517. </member>
  4518. <member name="M:DevExpress.XtraLayout.OptionsItemText.Dispose">
  4519. <summary>
  4520. <para>Releases all resources used by the current object.</para>
  4521. </summary>
  4522. </member>
  4523. <member name="P:DevExpress.XtraLayout.OptionsItemText.EnableAutoAlignment">
  4524. <summary>
  4525. <para>Gets or sets whether the automatic alignment of controls is enabled.</para>
  4526. </summary>
  4527. <value></value>
  4528. </member>
  4529. <member name="P:DevExpress.XtraLayout.OptionsItemText.TextAlignMode">
  4530. <summary>
  4531. <para>Gets or sets the alignment settings of the controls which are displayed in the LayoutControl.</para>
  4532. </summary>
  4533. <value>A <see cref="T:DevExpress.XtraLayout.TextAlignMode"/> value which specifies the current alignment mode.</value>
  4534. </member>
  4535. <member name="P:DevExpress.XtraLayout.OptionsItemText.TextOptions">
  4536. <summary>
  4537. <para>Gets options that specify how text is rendered.</para>
  4538. </summary>
  4539. <value>A <see cref="T:DevExpress.Utils.TextOptions"/> object.</value>
  4540. </member>
  4541. <member name="P:DevExpress.XtraLayout.OptionsItemText.TextToControlDistance">
  4542. <summary>
  4543. <para>Gets or sets the default distance between the text regions of layout items and the corresponding controls.</para>
  4544. </summary>
  4545. <value>An integer value that represents the distance between the text regions of layout items and the corresponding controls.</value>
  4546. </member>
  4547. <member name="T:DevExpress.XtraLayout.OptionsItemTextGroup">
  4548. <summary>
  4549. <para>Contains options that specify how the text regions of layout items, displayed within a specific group, are rendered.</para>
  4550. </summary>
  4551. </member>
  4552. <member name="M:DevExpress.XtraLayout.OptionsItemTextGroup.#ctor(DevExpress.XtraLayout.LayoutGroup)">
  4553. <summary>
  4554. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.OptionsItemTextGroup"/> class with default settings.</para>
  4555. </summary>
  4556. <param name="owner">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object which will own the new object.</param>
  4557. </member>
  4558. <member name="P:DevExpress.XtraLayout.OptionsItemTextGroup.AlignControlsWithHiddenText">
  4559. <summary>
  4560. <para>Gets or sets whether controls with hidden text must be aligned when the local horizontal alignment of controls within the group is enabled.</para>
  4561. </summary>
  4562. <value>true if controls with hidden text must be aligned when the local horizontal alignment is enabled; otherwise, false.</value>
  4563. </member>
  4564. <member name="M:DevExpress.XtraLayout.OptionsItemTextGroup.Dispose">
  4565. <summary>
  4566. <para>Disposes of the current object.</para>
  4567. </summary>
  4568. </member>
  4569. <member name="P:DevExpress.XtraLayout.OptionsItemTextGroup.TextAlignMode">
  4570. <summary>
  4571. <para>Gets or sets the alignment settings of the controls displayed in the current group.</para>
  4572. </summary>
  4573. <value>A <see cref="T:DevExpress.XtraLayout.TextAlignModeGroup"/> value which specifies the alignment settings of the controls.</value>
  4574. </member>
  4575. <member name="P:DevExpress.XtraLayout.OptionsItemTextGroup.TextToControlDistance">
  4576. <summary>
  4577. <para>Gets or sets the distance between text regions and controls for the current group’s layout items.</para>
  4578. </summary>
  4579. <value>The distance between text regions and controls in the current group.</value>
  4580. </member>
  4581. <member name="M:DevExpress.XtraLayout.OptionsItemTextGroup.ToString">
  4582. <summary />
  4583. <returns></returns>
  4584. </member>
  4585. <member name="T:DevExpress.XtraLayout.OptionsPrintBase">
  4586. <summary>
  4587. <para>The base class for classes that provide print and export options for layout items and groups.</para>
  4588. </summary>
  4589. </member>
  4590. <member name="M:DevExpress.XtraLayout.OptionsPrintBase.#ctor(DevExpress.XtraLayout.BaseLayoutItem)">
  4591. <summary>
  4592. <para>Initializes a new instance of an <see cref="T:DevExpress.XtraLayout.OptionsPrintBase"/> class with the specified owner.</para>
  4593. </summary>
  4594. <param name="owner">An object that will own the created object.</param>
  4595. </member>
  4596. <member name="P:DevExpress.XtraLayout.OptionsPrintBase.AllowPrint">
  4597. <summary>
  4598. <para>Gets or sets whether a layout item along with its nested items are included in a <see cref="T:DevExpress.XtraLayout.LayoutControl"/>‘s print/export output .</para>
  4599. </summary>
  4600. <value>true, if the layout item and its nested items are printed/exported; false, if they are excluded from the printing/export output.</value>
  4601. </member>
  4602. <member name="P:DevExpress.XtraLayout.OptionsPrintBase.AppearanceItem">
  4603. <summary>
  4604. <para>Print/export appearance settings of a specific item’s label and control. For a Layout Group, this property specifies the default appearance settings for all layout items owned by the group.</para>
  4605. </summary>
  4606. <value>The print appearance settings applied to the item’s label and control.</value>
  4607. </member>
  4608. <member name="P:DevExpress.XtraLayout.OptionsPrintBase.AppearanceItemCaption">
  4609. <summary>
  4610. <para>Contains print/export appearance settings used to paint a layout item.</para>
  4611. </summary>
  4612. <value>Print/export appearance settings used to paint the current layout item.</value>
  4613. </member>
  4614. <member name="P:DevExpress.XtraLayout.OptionsPrintBase.AppearanceItemControl">
  4615. <summary>
  4616. <para>Print/export appearance settings of a specific item’s control. For a Layout Group, this property specifies the default appearance settings for controls of all layout items owned by the group.</para>
  4617. </summary>
  4618. <value>The print appearance settings applied to the item’s control.</value>
  4619. </member>
  4620. <member name="P:DevExpress.XtraLayout.OptionsPrintBase.AppearanceItemText">
  4621. <summary>
  4622. <para>Print/export appearance settings of a specific item’s label. For a Layout Group, this property specifies the default appearance settings for labels of all layout items owned by the group.</para>
  4623. </summary>
  4624. <value>The print appearance settings applied to the item’s label.</value>
  4625. </member>
  4626. <member name="P:DevExpress.XtraLayout.OptionsPrintBase.TextToControlDistance">
  4627. <summary>
  4628. <para>Gets or sets the distance between a layout item’s text and its control in the LayoutControl’s print/export output.</para>
  4629. </summary>
  4630. <value>A value that specifies the distance between the text region and control, in pixels.</value>
  4631. </member>
  4632. <member name="T:DevExpress.XtraLayout.OptionsPrintControl">
  4633. <summary>
  4634. <para>Provides the Layout Control’s print and export options.</para>
  4635. </summary>
  4636. </member>
  4637. <member name="M:DevExpress.XtraLayout.OptionsPrintControl.#ctor(DevExpress.XtraLayout.ILayoutControl)">
  4638. <summary>
  4639. <para>Initializes a new instance of an <see cref="T:DevExpress.XtraLayout.OptionsPrintControl"/> class with the specified owner.</para>
  4640. </summary>
  4641. <param name="ownerControl"></param>
  4642. </member>
  4643. <member name="P:DevExpress.XtraLayout.OptionsPrintControl.AllowFitToPage">
  4644. <summary>
  4645. <para>Gets or sets whether the <see cref="T:DevExpress.XtraLayout.LayoutControl"/>, when printed, is horizontally stretched to the width of the printing page.</para>
  4646. </summary>
  4647. <value>true if the LayoutControl is fit to the page width; otherwise, false.</value>
  4648. </member>
  4649. <member name="P:DevExpress.XtraLayout.OptionsPrintControl.AppearanceGroupCaption">
  4650. <summary>
  4651. <para>The default print/export appearance settings used to paint captions of layout groups.</para>
  4652. </summary>
  4653. <value>An object that contains settings to customize the appearance of layout group captions.</value>
  4654. </member>
  4655. <member name="P:DevExpress.XtraLayout.OptionsPrintControl.AppearanceItem">
  4656. <summary>
  4657. <para>The default print/export appearance settings applied to labels and controls for all layout items.</para>
  4658. </summary>
  4659. <value>The default appearance settings applied to labels and controls for all layout items.</value>
  4660. </member>
  4661. <member name="P:DevExpress.XtraLayout.OptionsPrintControl.AppearanceItemCaption">
  4662. <summary>
  4663. <para>Contains print/export appearance settings used to paint layout items.</para>
  4664. </summary>
  4665. <value>Print/export appearance settings used to paint layout items.</value>
  4666. </member>
  4667. <member name="P:DevExpress.XtraLayout.OptionsPrintControl.AppearanceItemControl">
  4668. <summary>
  4669. <para>The default print/export appearance settings applied to controls for all layout items.</para>
  4670. </summary>
  4671. <value>The default appearance settings applied to controls for all layout items.</value>
  4672. </member>
  4673. <member name="P:DevExpress.XtraLayout.OptionsPrintControl.AppearanceItemText">
  4674. <summary>
  4675. <para>The default print/export appearance settings applied to labels for all layout items.</para>
  4676. </summary>
  4677. <value>The default appearance settings applied to labels for all layout items.</value>
  4678. </member>
  4679. <member name="M:DevExpress.XtraLayout.OptionsPrintControl.Dispose">
  4680. <summary>
  4681. <para>Disposes of the current object.</para>
  4682. </summary>
  4683. </member>
  4684. <member name="P:DevExpress.XtraLayout.OptionsPrintControl.OldPrinting">
  4685. <summary>
  4686. <para>Gets or sets whether a <see cref="T:DevExpress.XtraLayout.LayoutControl"/> utilizes the old print/export mode.</para>
  4687. </summary>
  4688. <value>true, if the LayoutControl uses the old print/export mode; false, if it uses the default mode.</value>
  4689. </member>
  4690. <member name="P:DevExpress.XtraLayout.OptionsPrintControl.TextToControlDistance">
  4691. <summary>
  4692. <para>Gets or sets the distance between text regions of all layout items and their controls in a <see cref="T:DevExpress.XtraLayout.LayoutControl"/>‘s print/export output.</para>
  4693. </summary>
  4694. <value>A value that specifies the distance between text regions and controls, in pixels.</value>
  4695. </member>
  4696. <member name="T:DevExpress.XtraLayout.OptionsPrintGroup">
  4697. <summary>
  4698. <para>A layout group’s print and export options.</para>
  4699. </summary>
  4700. </member>
  4701. <member name="M:DevExpress.XtraLayout.OptionsPrintGroup.#ctor(DevExpress.XtraLayout.BaseLayoutItem)">
  4702. <summary>
  4703. <para>Initializes a new instance of an <see cref="T:DevExpress.XtraLayout.OptionsPrintGroup"/> class with the specified owner.</para>
  4704. </summary>
  4705. <param name="owner">An object that will own the created object.</param>
  4706. </member>
  4707. <member name="P:DevExpress.XtraLayout.OptionsPrintGroup.AllowPrintGroupCaption">
  4708. <summary>
  4709. <para>Gets or sets whether the layout group’s caption is included in the print/export output .</para>
  4710. </summary>
  4711. <value>true, if the layout group’s caption is printed/exported; false, if the group’s caption is excluded from the print/export output.</value>
  4712. </member>
  4713. <member name="P:DevExpress.XtraLayout.OptionsPrintGroup.AppearanceGroupCaption">
  4714. <summary>
  4715. <para>Print/export appearance settings used to paint a layout group’s caption.</para>
  4716. </summary>
  4717. <value>An object that contains settings to customize the appearance of the layout group’s caption.</value>
  4718. </member>
  4719. <member name="T:DevExpress.XtraLayout.OptionsPrintItem">
  4720. <summary>
  4721. <para>A layout item’s print and export options.</para>
  4722. </summary>
  4723. </member>
  4724. <member name="M:DevExpress.XtraLayout.OptionsPrintItem.#ctor(DevExpress.XtraLayout.LayoutControlItem)">
  4725. <summary>
  4726. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.OptionsPrintItem"/> class with specified settings.</para>
  4727. </summary>
  4728. <param name="owner"></param>
  4729. </member>
  4730. <member name="T:DevExpress.XtraLayout.OptionsTableLayoutGroup">
  4731. <summary>
  4732. <para>Provides options and methods to customize a table layout enabled for a <see cref="T:DevExpress.XtraLayout.LayoutGroup"/>.</para>
  4733. </summary>
  4734. </member>
  4735. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.#ctor(DevExpress.XtraLayout.ILayoutControl,DevExpress.XtraLayout.LayoutGroup)">
  4736. <summary>
  4737. <para>Initializes a new instance of an <see cref="T:DevExpress.XtraLayout.OptionsTableLayoutGroup"/> class with the specified owners.</para>
  4738. </summary>
  4739. <param name="owner">An object that implements the ILayoutControl interface, and owns the created <see cref="T:DevExpress.XtraLayout.OptionsTableLayoutGroup"/> object.</param>
  4740. <param name="ownerGroup">A layout group that owns the created <see cref="T:DevExpress.XtraLayout.OptionsTableLayoutGroup"/> object.</param>
  4741. </member>
  4742. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.Add(DevExpress.XtraLayout.ColumnDefinition)">
  4743. <summary>
  4744. <para>Adds the specified column to a table layout.</para>
  4745. </summary>
  4746. <param name="columnDefinition">An object that specifies the column to be added.</param>
  4747. </member>
  4748. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.Add(DevExpress.XtraLayout.RowDefinition)">
  4749. <summary>
  4750. <para>Adds the specified row to a table layout.</para>
  4751. </summary>
  4752. <param name="rowDefinition">An object that specifies the row to be added.</param>
  4753. </member>
  4754. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.AddColumn">
  4755. <summary>
  4756. <para>Creates a new column with default settings and adds it to the table layout.</para>
  4757. </summary>
  4758. <returns>An object that specifies the newly created column.</returns>
  4759. </member>
  4760. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.AddRow">
  4761. <summary>
  4762. <para>Creates a new row with default settings and adds it to the table layout.</para>
  4763. </summary>
  4764. <returns>An object that specifies the new row.</returns>
  4765. </member>
  4766. <member name="P:DevExpress.XtraLayout.OptionsTableLayoutGroup.AutoSizeDefaultDefinitionLength">
  4767. <summary>
  4768. <para>Gets or sets the default size for empty rows/columns of the SizeType.AutoSize type in table layout mode.</para>
  4769. </summary>
  4770. <value>A value that specifies the size for rows/columns of the AutoSize type, in pixels.</value>
  4771. </member>
  4772. <member name="P:DevExpress.XtraLayout.OptionsTableLayoutGroup.ColumnCount">
  4773. <summary>
  4774. <para>Returns the number of columns within the table layout.</para>
  4775. </summary>
  4776. <value>The number of columns within the table layout.</value>
  4777. </member>
  4778. <member name="P:DevExpress.XtraLayout.OptionsTableLayoutGroup.ColumnDefinitions">
  4779. <summary>
  4780. <para>Provides access to columns of the table layout.</para>
  4781. </summary>
  4782. <value>The table layout’s columns.</value>
  4783. </member>
  4784. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.GetColumn(System.Int32)">
  4785. <summary>
  4786. <para>Returns a column by its index within the table layout.</para>
  4787. </summary>
  4788. <param name="index">The column’s zero-based index.</param>
  4789. <returns>The column located at the specified position within the column collection.</returns>
  4790. </member>
  4791. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.GetRow(System.Int32)">
  4792. <summary>
  4793. <para>Returns a row by its index within the table layout.</para>
  4794. </summary>
  4795. <param name="index">The row’s zero-based index.</param>
  4796. <returns>The row located at the specified position within the row collection.</returns>
  4797. </member>
  4798. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.Insert(System.Int32,DevExpress.XtraLayout.ColumnDefinition,System.Boolean)">
  4799. <summary>
  4800. <para>Inserts an element into the collection at the specified index.</para>
  4801. </summary>
  4802. <param name="index">The zero-based index at which a columnDefinition should be inserted.</param>
  4803. <param name="columnDefinition">The <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> to insert.</param>
  4804. <param name="updateItemIndexes">true, to recalculate the <see cref="P:DevExpress.XtraLayout.OptionsTableLayoutItem.ColumnIndex"/> property of items in the current layout group; otherwise, false.</param>
  4805. </member>
  4806. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.Insert(System.Int32,DevExpress.XtraLayout.RowDefinition,System.Boolean)">
  4807. <summary>
  4808. <para>Inserts an element into the collection at the specified index.</para>
  4809. </summary>
  4810. <param name="index">The zero-based index at which a rowDefinition should be inserted.</param>
  4811. <param name="rowDefinition">The <see cref="T:DevExpress.XtraLayout.RowDefinition"/> to insert.</param>
  4812. <param name="updateItemIndexes">true, to recalculate the <see cref="P:DevExpress.XtraLayout.OptionsTableLayoutItem.RowIndex"/> property of items in the current layout group; otherwise, false.</param>
  4813. </member>
  4814. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.Remove(DevExpress.XtraLayout.ColumnDefinition,System.Boolean)">
  4815. <summary>
  4816. <para>Removes the specified column definition.</para>
  4817. </summary>
  4818. <param name="columnDefinition">The <see cref="T:DevExpress.XtraLayout.ColumnDefinition"/> to remove.</param>
  4819. <param name="updateItemIndexes">true, to recalculate the <see cref="P:DevExpress.XtraLayout.OptionsTableLayoutItem.ColumnIndex"/> property of items in the current layout group; otherwise, false.</param>
  4820. </member>
  4821. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.Remove(DevExpress.XtraLayout.RowDefinition,System.Boolean)">
  4822. <summary>
  4823. <para>Removes the specified row definition.</para>
  4824. </summary>
  4825. <param name="rowDefinition">The <see cref="T:DevExpress.XtraLayout.RowDefinition"/> to remove.</param>
  4826. <param name="updateItemIndexes">true, to recalculate the <see cref="P:DevExpress.XtraLayout.OptionsTableLayoutItem.RowIndex"/> property of items in the current layout group; otherwise, false.</param>
  4827. </member>
  4828. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.RemoveColumnAt(System.Int32,System.Boolean)">
  4829. <summary>
  4830. <para>Removes the element at the specified index.</para>
  4831. </summary>
  4832. <param name="index">The zero-based index of the element to remove.</param>
  4833. <param name="updateItemIndexes">true, to recalculate the <see cref="P:DevExpress.XtraLayout.OptionsTableLayoutItem.ColumnIndex"/> property of items in the current layout group; otherwise, false.</param>
  4834. </member>
  4835. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutGroup.RemoveRowAt(System.Int32,System.Boolean)">
  4836. <summary>
  4837. <para>Removes the element at the specified index.</para>
  4838. </summary>
  4839. <param name="index">The zero-based index of the element to remove.</param>
  4840. <param name="updateItemIndexes">true, to recalculate the <see cref="P:DevExpress.XtraLayout.OptionsTableLayoutItem.RowIndex"/> property of items in the current layout group; otherwise, false.</param>
  4841. </member>
  4842. <member name="P:DevExpress.XtraLayout.OptionsTableLayoutGroup.RowCount">
  4843. <summary>
  4844. <para>Returns the number of rows within the table layout.</para>
  4845. </summary>
  4846. <value>The number of rows within the table layout.</value>
  4847. </member>
  4848. <member name="P:DevExpress.XtraLayout.OptionsTableLayoutGroup.RowDefinitions">
  4849. <summary>
  4850. <para>Provides access to rows of the table layout.</para>
  4851. </summary>
  4852. <value>The table layout’s rows.</value>
  4853. </member>
  4854. <member name="P:DevExpress.XtraLayout.OptionsTableLayoutGroup.ShrinkEmptyAutoSizeDefinition">
  4855. <summary>
  4856. <para>Gets or sets whether to automatically minimize empty rows/columns whose SizeType property is set to AutoSize.</para>
  4857. </summary>
  4858. <value>A value that specifies if the LayoutControl minimizes empty rows/columns whose SizeType property is set to AutoSize.</value>
  4859. </member>
  4860. <member name="T:DevExpress.XtraLayout.OptionsTableLayoutItem">
  4861. <summary>
  4862. <para>Provides settings that specify the item’s position in a table layout.</para>
  4863. </summary>
  4864. </member>
  4865. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutItem.#ctor(DevExpress.XtraLayout.BaseLayoutItem)">
  4866. <summary>
  4867. <para>Initializes a new instance of an <see cref="T:DevExpress.XtraLayout.OptionsTableLayoutItem"/> class with the specified owner.</para>
  4868. </summary>
  4869. <param name="ownerItem">A layout item that owns the created <see cref="T:DevExpress.XtraLayout.OptionsTableLayoutItem"/> object.</param>
  4870. </member>
  4871. <member name="M:DevExpress.XtraLayout.OptionsTableLayoutItem.Assign(DevExpress.Utils.Controls.BaseOptions)">
  4872. <summary>
  4873. <para>Assigns the specified object’s property values to the current object’s corresponding properties.</para>
  4874. </summary>
  4875. <param name="options">The object whose property values to assign to the current object’s corresponding properties.</param>
  4876. </member>
  4877. <member name="P:DevExpress.XtraLayout.OptionsTableLayoutItem.ColumnIndex">
  4878. <summary>
  4879. <para>Gets or sets the index of the column in which the current layout item is displayed.</para>
  4880. </summary>
  4881. <value>The zero-based index that specifies the layout item’s column position within the table layout.</value>
  4882. </member>
  4883. <member name="P:DevExpress.XtraLayout.OptionsTableLayoutItem.ColumnSpan">
  4884. <summary>
  4885. <para>Gets or sets the number of columns spanned by the current layout item within the table layout.</para>
  4886. </summary>
  4887. <value>A positive integer value that specifies the number of columns spanned by the layout item.</value>
  4888. </member>
  4889. <member name="P:DevExpress.XtraLayout.OptionsTableLayoutItem.RowIndex">
  4890. <summary>
  4891. <para>Gets or sets the index of the row in which the current layout item is displayed.</para>
  4892. </summary>
  4893. <value>The zero-based index that specifies the layout item’s row position within the table layout.</value>
  4894. </member>
  4895. <member name="P:DevExpress.XtraLayout.OptionsTableLayoutItem.RowSpan">
  4896. <summary>
  4897. <para>Gets or sets the number of rows spanned by the current layout item within the table layout.</para>
  4898. </summary>
  4899. <value>A positive integer value that specifies the number of rows spanned by the layout item.</value>
  4900. </member>
  4901. <member name="T:DevExpress.XtraLayout.OptionsView">
  4902. <summary>
  4903. <para>Contains options that determine the control’s display options</para>
  4904. </summary>
  4905. </member>
  4906. <member name="M:DevExpress.XtraLayout.OptionsView.#ctor(DevExpress.XtraLayout.ILayoutControl)">
  4907. <summary>
  4908. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.OptionsView"/> class.</para>
  4909. </summary>
  4910. <param name="ownerControl"></param>
  4911. </member>
  4912. <member name="P:DevExpress.XtraLayout.OptionsView.AllowExpandAnimation">
  4913. <summary>
  4914. <para>Gets or sets whether layout groups are collapsed/expanded using animation.</para>
  4915. </summary>
  4916. <value>True, if layout groups are collapsed/expanded using animation; False if not. Default uses the <see cref="P:DevExpress.XtraEditors.WindowsFormsSettings.AnimationMode"/> global setting.</value>
  4917. </member>
  4918. <member name="P:DevExpress.XtraLayout.OptionsView.AllowGlyphSkinning">
  4919. <summary>
  4920. <para>Gets or sets whether icons for all layout items within the current <see cref="T:DevExpress.XtraLayout.LayoutControl"/> should be painted in the items’ foreground colors.</para>
  4921. </summary>
  4922. <value>true if icons for all layout items within the current <see cref="T:DevExpress.XtraLayout.LayoutControl"/> should be painted in the items’ foreground colors; otherwise, false.</value>
  4923. </member>
  4924. <member name="P:DevExpress.XtraLayout.OptionsView.AllowHotTrack">
  4925. <summary>
  4926. <para>Gets or sets whether layout item borders are highlighted when the mouse cursor hovers over the layout items.</para>
  4927. </summary>
  4928. <value>true if the hot-tracking of layout items is enabled; otherwise, false.</value>
  4929. </member>
  4930. <member name="P:DevExpress.XtraLayout.OptionsView.AllowItemSkining">
  4931. <summary>
  4932. <para>This option is equivalent to the <see cref="P:DevExpress.XtraLayout.OptionsView.AllowItemSkinning"/> option.</para>
  4933. </summary>
  4934. <value>A Boolean value.</value>
  4935. </member>
  4936. <member name="P:DevExpress.XtraLayout.OptionsView.AllowItemSkinning">
  4937. <summary>
  4938. <para>Gets or sets whether the <see cref="P:DevExpress.XtraLayout.OptionsView.DrawItemBorders"/>, <see cref="P:DevExpress.XtraLayout.OptionsView.HighlightDisabledItem"/> and <see cref="P:DevExpress.XtraLayout.OptionsView.HighlightFocusedItem"/> options are in effect.</para>
  4939. </summary>
  4940. <value>True, if the corresponding options are in effect; otherwise; False.</value>
  4941. </member>
  4942. <member name="P:DevExpress.XtraLayout.OptionsView.AllowLockSizeIndicators">
  4943. <summary>
  4944. <para>Gets or sets whether or not lock size indicators should be displayed during the runtime customization.</para>
  4945. </summary>
  4946. <value>A <see cref="T:DevExpress.Utils.DefaultBoolean"/> enumerator value that specifies whether or not lock size indicators should be displayed during the runtime customization.</value>
  4947. </member>
  4948. <member name="P:DevExpress.XtraLayout.OptionsView.AllowScaleControlsToDisplayResolution">
  4949. <summary>
  4950. <para>This property is now obsolete. Use the <see cref="P:DevExpress.XtraLayout.OptionsView.UseParentAutoScaleFactor"/> property instead.</para>
  4951. </summary>
  4952. <value></value>
  4953. </member>
  4954. <member name="P:DevExpress.XtraLayout.OptionsView.AllowTransparentBackColor">
  4955. <summary>
  4956. <para>Allows the parent’s background to be seen through the LayoutControl.</para>
  4957. </summary>
  4958. <value>A Boolean value.</value>
  4959. </member>
  4960. <member name="P:DevExpress.XtraLayout.OptionsView.AlwaysScrollActiveControlIntoView">
  4961. <summary>
  4962. <para>Gets or sets whether focusing a control that is out of view automatically scrolls the LayoutControl to make this control visible.</para>
  4963. </summary>
  4964. <value>true if focusing a control that is out of view automatically scrolls the LayoutControl to make this control visible; otherwise, false.</value>
  4965. </member>
  4966. <member name="P:DevExpress.XtraLayout.OptionsView.AutoSizeInLayoutControl">
  4967. <summary>
  4968. <para>Gets or sets how a LayoutControl’s size is changed when it is positioned within another LayoutControl.</para>
  4969. </summary>
  4970. <value>A value that specifies how the LayoutControl’s size is changed when it is positioned within another LayoutControl.</value>
  4971. </member>
  4972. <member name="P:DevExpress.XtraLayout.OptionsView.AutoSizeModeInLayoutControl">
  4973. <summary>
  4974. <para>Gets or sets how a LayoutControl’s size is changed when it’s positioned within another LayoutControl.</para>
  4975. </summary>
  4976. <value>A <see cref="T:System.Windows.Forms.AutoSizeMode"/> value.</value>
  4977. </member>
  4978. <member name="P:DevExpress.XtraLayout.OptionsView.ControlDefaultMaxSizeCalcMode">
  4979. <summary>
  4980. <para>Gets or sets how default maximum size constraints are calculated for controls that implement the <see cref="T:DevExpress.Utils.Controls.IXtraResizableControl"/> interface.</para>
  4981. </summary>
  4982. <value>A <see cref="T:DevExpress.XtraLayout.ControlMaxSizeCalcMode"/> value.</value>
  4983. </member>
  4984. <member name="P:DevExpress.XtraLayout.OptionsView.ControlDefaultMinSizeCalcMode">
  4985. <summary>
  4986. <para>Gets or sets how default minimum size constraints are calculated for controls that implement the <see cref="T:DevExpress.Utils.Controls.IXtraResizableControl"/> interface.</para>
  4987. </summary>
  4988. <value>A <see cref="T:DevExpress.XtraLayout.ControlMinSizeCalcMode"/> value.</value>
  4989. </member>
  4990. <member name="P:DevExpress.XtraLayout.OptionsView.DragFadeAnimationFrameCount">
  4991. <summary>
  4992. <para>Gets or sets the number of frames in the fade animation.</para>
  4993. </summary>
  4994. <value>An integer value that specifies the number of frames in the fade animation.</value>
  4995. </member>
  4996. <member name="P:DevExpress.XtraLayout.OptionsView.DragFadeAnimationSpeed">
  4997. <summary>
  4998. <para>Gets or sets the fade animation length.</para>
  4999. </summary>
  5000. <value>An integer value that specifies the length of the fade animation, in miliseconds.</value>
  5001. </member>
  5002. <member name="P:DevExpress.XtraLayout.OptionsView.DrawAdornerLayer">
  5003. <summary>
  5004. <para>Gets or sets whether to draw an adorner layer that is used to provide customization visual cues.</para>
  5005. </summary>
  5006. <value>A value that specifies whether to draw the adorner layer.</value>
  5007. </member>
  5008. <member name="P:DevExpress.XtraLayout.OptionsView.DrawAdornerLayered">
  5009. <summary>
  5010. <para>Gets or sets whether to draw an adorner layer used to provide customization visual cues.</para>
  5011. </summary>
  5012. <value>A value that specifies whether to draw the adorner layer.</value>
  5013. </member>
  5014. <member name="P:DevExpress.XtraLayout.OptionsView.DrawItemBorders">
  5015. <summary>
  5016. <para>Gets or sets whether layout item borders are visible at runtime.</para>
  5017. </summary>
  5018. <value>true if item borders are visible at runtime; otherwise, false.</value>
  5019. </member>
  5020. <member name="P:DevExpress.XtraLayout.OptionsView.EnableIndentsInGroupsWithoutBorders">
  5021. <summary>
  5022. <para>Gets or sets whether a layout group’s indents, specified by its <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Spacing"/> and <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Padding"/> properties, are applied when the group’s borders are hidden.</para>
  5023. </summary>
  5024. <value>true if a layout group’s indents are applied when the group’s borders are hidden; otherwise, false.</value>
  5025. </member>
  5026. <member name="P:DevExpress.XtraLayout.OptionsView.EnableTransparentBackColor">
  5027. <summary>
  5028. <para>Allows the parent’s background to be seen through the LayoutControl.</para>
  5029. </summary>
  5030. <value>true if the parent’s background is seen through the LayoutControl; otherwise, false.</value>
  5031. </member>
  5032. <member name="P:DevExpress.XtraLayout.OptionsView.ExpandAnimationSpeed">
  5033. <summary>
  5034. <para>Gets or sets the collapse/expand animation speed.</para>
  5035. </summary>
  5036. <value>An integer value that specifies the collapse/expand animation speed.</value>
  5037. </member>
  5038. <member name="P:DevExpress.XtraLayout.OptionsView.FitControlsToDisplayAreaHeight">
  5039. <summary>
  5040. <para>Gets or sets whether controls are fitted to fill the entire height of the <see cref="T:DevExpress.XtraLayout.LayoutControl"/>.</para>
  5041. </summary>
  5042. <value>true if controls are fitted to fill the entire height of the <see cref="T:DevExpress.XtraLayout.LayoutControl"/>; otherwise, false.</value>
  5043. </member>
  5044. <member name="P:DevExpress.XtraLayout.OptionsView.FitControlsToDisplayAreaWidth">
  5045. <summary>
  5046. <para>Gets or sets whether controls are fitted to fill the entire width of the <see cref="T:DevExpress.XtraLayout.LayoutControl"/>.</para>
  5047. </summary>
  5048. <value>true if controls are fitted to fill the entire width of the <see cref="T:DevExpress.XtraLayout.LayoutControl"/>; otherwise, false.</value>
  5049. </member>
  5050. <member name="P:DevExpress.XtraLayout.OptionsView.GroupStyle">
  5051. <summary>
  5052. <para>Gets or sets the default group border and caption paint style.</para>
  5053. </summary>
  5054. <value>A value that specifies the group border and caption paint style.</value>
  5055. </member>
  5056. <member name="P:DevExpress.XtraLayout.OptionsView.HighlightDisabledItem">
  5057. <summary>
  5058. <para>Gets or sets whether disabled layout items are highlighted according to the current skin.</para>
  5059. </summary>
  5060. <value>true if disabled layout items are highlighted; otherwise, false.</value>
  5061. </member>
  5062. <member name="P:DevExpress.XtraLayout.OptionsView.HighlightFocusedItem">
  5063. <summary>
  5064. <para>Gets or sets whether focused layout items are highlighted according to the current skin.</para>
  5065. </summary>
  5066. <value>true if focused layout items are highlighted; otherwise, false.</value>
  5067. </member>
  5068. <member name="P:DevExpress.XtraLayout.OptionsView.IsReadOnly">
  5069. <summary>
  5070. <para>Gets or sets whether the layout control is read-only.</para>
  5071. </summary>
  5072. <value>A value that specifies if the layout control is read-only.</value>
  5073. </member>
  5074. <member name="P:DevExpress.XtraLayout.OptionsView.ItemBorderColor">
  5075. <summary>
  5076. <para>Gets or sets the color used to paint layout item borders when they are visible.</para>
  5077. </summary>
  5078. <value>A <see cref="T:System.Drawing.Color"/> value that specifies the color of layout item borders.</value>
  5079. </member>
  5080. <member name="P:DevExpress.XtraLayout.OptionsView.PaddingSpacingMode">
  5081. <summary>
  5082. <para>This member supports the internal infrastructure and is not intended to be used directly from your code.</para>
  5083. </summary>
  5084. <value>A PaddingMode value.</value>
  5085. </member>
  5086. <member name="P:DevExpress.XtraLayout.OptionsView.RightToLeftMirroringApplied">
  5087. <summary>
  5088. <para>Gets or sets whether the RightToLeft setting has been changed.</para>
  5089. </summary>
  5090. <value>true if the RightToLeft setting has been changed; otherwise, false.</value>
  5091. </member>
  5092. <member name="P:DevExpress.XtraLayout.OptionsView.ShareLookAndFeelWithChildren">
  5093. <summary>
  5094. <para>Determines whether the LayoutControl manages the look and feel and style settings of DevExpress .NET controls that are displayed within the LayoutControl.</para>
  5095. </summary>
  5096. <value>true if the look and feel and style settings of controls are determined by the <see cref="P:DevExpress.XtraLayout.LayoutControl.LookAndFeel"/> property; otherwise, false.</value>
  5097. </member>
  5098. <member name="P:DevExpress.XtraLayout.OptionsView.UseDefaultDragAndDropRendering">
  5099. <summary>
  5100. <para>Gets or sets whether to use the default paint mechanism to indicate drag-and-drop operations.</para>
  5101. </summary>
  5102. <value>true if the default paint mechanism is used to indicate drag-and-drop operations; otherwise, false.</value>
  5103. </member>
  5104. <member name="P:DevExpress.XtraLayout.OptionsView.UseParentAutoScaleFactor">
  5105. <summary>
  5106. <para>Gets or sets whether indents between elements in the LayoutControl are automatically adjusted, based on the owning container’s auto-scale settings.</para>
  5107. </summary>
  5108. <value>true if indents between elements in the LayoutControl are automatically adjusted based on the owning container’s auto-scale settings; otherwise, false.</value>
  5109. </member>
  5110. <member name="P:DevExpress.XtraLayout.OptionsView.UseSkinIndents">
  5111. <summary>
  5112. <para>Gets or sets whether padding settings (<see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Padding"/> and <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Spacing"/>) of items and groups are obtained from the current skin. This is a backward compatibility option.</para>
  5113. </summary>
  5114. <value>true if padding settings of items and groups are obtained from the current skin; otherwise, false.</value>
  5115. </member>
  5116. <member name="T:DevExpress.XtraLayout.PopupMenuShowingEventArgs">
  5117. <summary>
  5118. <para>Provides data for the <see cref="E:DevExpress.XtraLayout.LayoutControl.PopupMenuShowing"/> and <see cref="E:DevExpress.XtraLayout.LayoutControl.LayoutTreeViewPopupMenuShowing"/> events.</para>
  5119. </summary>
  5120. </member>
  5121. <member name="M:DevExpress.XtraLayout.PopupMenuShowingEventArgs.#ctor(DevExpress.Utils.Menu.DXPopupMenu,DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo)">
  5122. <summary>
  5123. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.PopupMenuShowingEventArgs"/> class with the specified settings.</para>
  5124. </summary>
  5125. <param name="menu">The menu to be displayed. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.PopupMenuShowingEventArgs.Menu"/> property.</param>
  5126. <param name="hitInfo">The object that provides information on the clicked point. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.PopupMenuShowingEventArgs.HitInfo"/> property.</param>
  5127. </member>
  5128. <member name="M:DevExpress.XtraLayout.PopupMenuShowingEventArgs.#ctor(DevExpress.Utils.Menu.DXPopupMenu,DevExpress.XtraLayout.HitInfo.BaseLayoutItemHitInfo,System.Boolean)">
  5129. <summary>
  5130. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.PopupMenuShowingEventArgs"/> class with the specified settings.</para>
  5131. </summary>
  5132. <param name="menu">The menu to be displayed. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.PopupMenuShowingEventArgs.Menu"/> property.</param>
  5133. <param name="hitInfo">The object that provides information on the clicked point. This object is used to initialize the <see cref="P:DevExpress.XtraLayout.PopupMenuShowingEventArgs.HitInfo"/> property.</param>
  5134. <param name="allow">A Boolean value that specifies whether a menu can be displayed. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.PopupMenuShowingEventArgs.Allow"/> property.</param>
  5135. </member>
  5136. <member name="P:DevExpress.XtraLayout.PopupMenuShowingEventArgs.Allow">
  5137. <summary>
  5138. <para>Gets or sets whether the menu is allowed to be displayed.</para>
  5139. </summary>
  5140. <value>A Boolean value that specifies whether the menu is allowed to be displayed.</value>
  5141. </member>
  5142. <member name="P:DevExpress.XtraLayout.PopupMenuShowingEventArgs.HitInfo">
  5143. <summary>
  5144. <para>Contains information on the clicked point within the Layout Control.</para>
  5145. </summary>
  5146. <value>An object that provides information on the clicked point.</value>
  5147. </member>
  5148. <member name="P:DevExpress.XtraLayout.PopupMenuShowingEventArgs.Menu">
  5149. <summary>
  5150. <para>Gets or sets the menu that is about to be displayed.</para>
  5151. </summary>
  5152. <value>The menu that is about to be displayed.</value>
  5153. </member>
  5154. <member name="P:DevExpress.XtraLayout.PopupMenuShowingEventArgs.Point">
  5155. <summary>
  5156. <para>Gets the point at which the menu is about to be displayed.</para>
  5157. </summary>
  5158. <value>The point at which to display the menu.</value>
  5159. </member>
  5160. <member name="T:DevExpress.XtraLayout.RowDefinition">
  5161. <summary>
  5162. <para>Defines a row in a table layout.</para>
  5163. </summary>
  5164. </member>
  5165. <member name="M:DevExpress.XtraLayout.RowDefinition.#ctor">
  5166. <summary>
  5167. <para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.RowDefinition"/> class with the default settings.</para>
  5168. </summary>
  5169. </member>
  5170. <member name="M:DevExpress.XtraLayout.RowDefinition.#ctor(DevExpress.XtraLayout.LayoutGroup)">
  5171. <summary>
  5172. <para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.RowDefinition"/> class with the specified owner.</para>
  5173. </summary>
  5174. <param name="owner">A layout group that owns the created <see cref="T:DevExpress.XtraLayout.RowDefinition"/> object.</param>
  5175. </member>
  5176. <member name="M:DevExpress.XtraLayout.RowDefinition.#ctor(DevExpress.XtraLayout.LayoutGroup,System.Double,System.Windows.Forms.SizeType)">
  5177. <summary>
  5178. <para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.RowDefinition"/> class with the specified settings.</para>
  5179. </summary>
  5180. <param name="owner">A layout group that owns the created <see cref="T:DevExpress.XtraLayout.RowDefinition"/> object.</param>
  5181. <param name="size">The height of the created row. This value is assigned to the <see cref="P:DevExpress.XtraLayout.RowDefinition.Height"/> property.</param>
  5182. <param name="sizingType">The size type of the created row. This value is assigned to the <see cref="P:DevExpress.XtraLayout.RowDefinition.SizeType"/> property.</param>
  5183. </member>
  5184. <member name="M:DevExpress.XtraLayout.RowDefinition.#ctor(DevExpress.XtraLayout.LayoutGroup,System.Double,System.Windows.Forms.SizeType,System.Boolean)">
  5185. <summary>
  5186. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.RowDefinition"/> class with specified settings.</para>
  5187. </summary>
  5188. <param name="owner"></param>
  5189. <param name="size"></param>
  5190. <param name="sizingType"></param>
  5191. <param name="visible"></param>
  5192. </member>
  5193. <member name="P:DevExpress.XtraLayout.RowDefinition.Height">
  5194. <summary>
  5195. <para>Gets or sets the row height, in pixels or as a percentage, according to the <see cref="P:DevExpress.XtraLayout.RowDefinition.SizeType"/>.</para>
  5196. </summary>
  5197. <value>A value that specifies the row height.</value>
  5198. </member>
  5199. <member name="P:DevExpress.XtraLayout.RowDefinition.SizeType">
  5200. <summary>
  5201. <para>Gets or sets the row’s size type in a table layout.</para>
  5202. </summary>
  5203. <value>A value that specifies the row’s size type.</value>
  5204. </member>
  5205. <member name="T:DevExpress.XtraLayout.RowDefinitions">
  5206. <summary>
  5207. <para>A row collection within a table layout.</para>
  5208. </summary>
  5209. </member>
  5210. <member name="M:DevExpress.XtraLayout.RowDefinitions.#ctor(DevExpress.XtraLayout.DefinitionBaseCollection,DevExpress.XtraLayout.LayoutGroup)">
  5211. <summary>
  5212. <para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.RowDefinitions"/> class with the settings of the specified source object and with the specified owner.</para>
  5213. </summary>
  5214. <param name="source">An object whose settings are used to initialize the created object.</param>
  5215. <param name="ownerGroup">A layout group that owns the created object.</param>
  5216. </member>
  5217. <member name="M:DevExpress.XtraLayout.RowDefinitions.#ctor(DevExpress.XtraLayout.LayoutGroup)">
  5218. <summary>
  5219. <para>Initializes a new instance of a <see cref="T:DevExpress.XtraLayout.RowDefinitions"/> class with the specified owner.</para>
  5220. </summary>
  5221. <param name="owner">A layout group that owns the created <see cref="T:DevExpress.XtraLayout.RowDefinitions"/> object.</param>
  5222. </member>
  5223. <member name="M:DevExpress.XtraLayout.RowDefinitions.Add(DevExpress.XtraLayout.RowDefinition)">
  5224. <summary>
  5225. <para>Adds the specified row to the table layout.</para>
  5226. </summary>
  5227. <param name="rowDefinition">An object that specifies the row to be added.</param>
  5228. <returns>The position into which the new element was inserted, or -1 to indicate that the item was not inserted into the collection.</returns>
  5229. </member>
  5230. <member name="M:DevExpress.XtraLayout.RowDefinitions.AddRange(DevExpress.XtraLayout.RowDefinition[])">
  5231. <summary>
  5232. <para>Adds an array of row objects to the table layout.</para>
  5233. </summary>
  5234. <param name="items">An array of <see cref="T:DevExpress.XtraLayout.RowDefinition"/> objects to be added to the table layout.</param>
  5235. </member>
  5236. <member name="M:DevExpress.XtraLayout.RowDefinitions.Insert(System.Int32,DevExpress.XtraLayout.RowDefinition,System.Boolean)">
  5237. <summary>
  5238. <para>Inserts an element into the collection at the specified index.</para>
  5239. </summary>
  5240. <param name="index">The zero-based index at which a rowDefinition should be inserted.</param>
  5241. <param name="rowDefinition">The <see cref="T:DevExpress.XtraLayout.RowDefinition"/> to insert.</param>
  5242. <param name="updateItemIndexes">true, to recalculate the <see cref="P:DevExpress.XtraLayout.OptionsTableLayoutItem.RowIndex"/> property of items in the current layout group; otherwise, false.</param>
  5243. </member>
  5244. <member name="P:DevExpress.XtraLayout.RowDefinitions.Item(System.Int32)">
  5245. <summary>
  5246. <para>Provides indexed access to rows within the current row collection.</para>
  5247. </summary>
  5248. <param name="index">A zero-based integer value that specifies the index of the required row.</param>
  5249. <value>An object that represents the row at the specified position within the collection.</value>
  5250. </member>
  5251. <member name="M:DevExpress.XtraLayout.RowDefinitions.RemoveAt(System.Int32,System.Boolean)">
  5252. <summary>
  5253. <para>Removes the element at the specified index.</para>
  5254. </summary>
  5255. <param name="index">The zero-based index of the element to remove.</param>
  5256. <param name="updateItemIndexes">true, to recalculate the <see cref="P:DevExpress.XtraLayout.OptionsTableLayoutItem.RowIndex"/> property of items in the current layout group; otherwise, false.</param>
  5257. </member>
  5258. <member name="T:DevExpress.XtraLayout.SimpleLabelAutoSizeMode">
  5259. <summary>
  5260. <para>Enumerates values that specify whether a <see cref="T:DevExpress.XtraLayout.SimpleLabelItem"/>‘s maximum width, height, or both are calculated automatically based on the item’s content.</para>
  5261. </summary>
  5262. </member>
  5263. <member name="F:DevExpress.XtraLayout.SimpleLabelAutoSizeMode.Both">
  5264. <summary>
  5265. <para>The item’s maximum width and height are calculated automatically based on the item’s content.</para>
  5266. </summary>
  5267. </member>
  5268. <member name="F:DevExpress.XtraLayout.SimpleLabelAutoSizeMode.Default">
  5269. <summary>
  5270. <para>The mode is not specified explicitly. Enables the <see cref="F:DevExpress.XtraLayout.SimpleLabelAutoSizeMode.Vertical"/> mode.</para>
  5271. </summary>
  5272. </member>
  5273. <member name="F:DevExpress.XtraLayout.SimpleLabelAutoSizeMode.Horizontal">
  5274. <summary>
  5275. <para>The item’s maximum width is calculated automatically based on the item’s content.</para>
  5276. </summary>
  5277. </member>
  5278. <member name="F:DevExpress.XtraLayout.SimpleLabelAutoSizeMode.None">
  5279. <summary>
  5280. <para>The item’s maximum width and height are not calculated automatically based on the item’s content. The maximum width and height are not limited.</para>
  5281. </summary>
  5282. </member>
  5283. <member name="F:DevExpress.XtraLayout.SimpleLabelAutoSizeMode.Vertical">
  5284. <summary>
  5285. <para>The item’s maximum height is calculated automatically based on the item’s content.</para>
  5286. </summary>
  5287. </member>
  5288. <member name="T:DevExpress.XtraLayout.SimpleLabelItem">
  5289. <summary>
  5290. <para>An area in the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> that contains a label, but does not contain an embedded control.</para>
  5291. </summary>
  5292. </member>
  5293. <member name="M:DevExpress.XtraLayout.SimpleLabelItem.#ctor">
  5294. <summary>
  5295. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.SimpleLabelItem"/> class.</para>
  5296. </summary>
  5297. </member>
  5298. <member name="P:DevExpress.XtraLayout.SimpleLabelItem.AutoSizeMode">
  5299. <summary>
  5300. <para>Gets or sets whether the item’s maximum width, height, or both are calculated automatically based on the item’s content. This property is only in effect if the <see cref="P:DevExpress.XtraLayout.LayoutControlItem.SizeConstraintsType"/> property is set to <see cref="F:DevExpress.XtraLayout.SizeConstraintsType.Default"/>. The <see cref="F:DevExpress.XtraLayout.SimpleLabelAutoSizeMode.Default"/> value is equivalent to <see cref="F:DevExpress.XtraLayout.SimpleLabelAutoSizeMode.Vertical"/>.</para>
  5301. </summary>
  5302. <value>A value that specifies whether the maximum width, height, or both are calculated automatically.</value>
  5303. </member>
  5304. <member name="M:DevExpress.XtraLayout.SimpleLabelItem.GetDefaultText">
  5305. <summary>
  5306. <para>Returns the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property’s default value.</para>
  5307. </summary>
  5308. <returns>A <see cref="T:System.String"/> value that specifies the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property’s default value.</returns>
  5309. </member>
  5310. <member name="P:DevExpress.XtraLayout.SimpleLabelItem.ImageOptions">
  5311. <summary>
  5312. <para>Gets a set of options that specify the image displayed in the item.</para>
  5313. </summary>
  5314. <value>An object that contains a set of image options.</value>
  5315. </member>
  5316. <member name="P:DevExpress.XtraLayout.SimpleLabelItem.MaxSize">
  5317. <summary>
  5318. <para>Gets or sets the item’s maximum size. This property is only in effect if the <see cref="P:DevExpress.XtraLayout.LayoutControlItem.SizeConstraintsType"/> property is not set to <see cref="F:DevExpress.XtraLayout.SizeConstraintsType.Default"/>.</para>
  5319. </summary>
  5320. <value>A <see cref="T:System.Drawing.Size"/> structure that specifies the item’s maximum size.</value>
  5321. </member>
  5322. <member name="P:DevExpress.XtraLayout.SimpleLabelItem.MinSize">
  5323. <summary>
  5324. <para>Gets or sets the item’s minimum size. This property is only in effect if the <see cref="P:DevExpress.XtraLayout.LayoutControlItem.SizeConstraintsType"/> property is not set to <see cref="F:DevExpress.XtraLayout.SizeConstraintsType.Default"/>.</para>
  5325. </summary>
  5326. <value>A <see cref="T:System.Drawing.Size"/> structure that specifies the item’s minimum size.</value>
  5327. </member>
  5328. <member name="P:DevExpress.XtraLayout.SimpleLabelItem.TextVisible">
  5329. <summary>
  5330. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  5331. </summary>
  5332. <value>Always true.</value>
  5333. </member>
  5334. <member name="P:DevExpress.XtraLayout.SimpleLabelItem.TypeName">
  5335. <summary>
  5336. <para>Gets the type’s name.</para>
  5337. </summary>
  5338. <value>A string value that specifies the type’s name.</value>
  5339. </member>
  5340. <member name="T:DevExpress.XtraLayout.SizeConstraintsType">
  5341. <summary>
  5342. <para>Enumerates size constraints modes.</para>
  5343. </summary>
  5344. </member>
  5345. <member name="F:DevExpress.XtraLayout.SizeConstraintsType.Custom">
  5346. <summary>
  5347. <para>A layout item’s size can be changed within the range which is specified by the <see cref="P:DevExpress.XtraLayout.LayoutControlItem.MinSize"/> and <see cref="P:DevExpress.XtraLayout.LayoutControlItem.MaxSize"/> properties.</para>
  5348. </summary>
  5349. </member>
  5350. <member name="F:DevExpress.XtraLayout.SizeConstraintsType.Default">
  5351. <summary>
  5352. <para>Default size constraints are applied to the layout item and its control. The default size constraints are determined automatically depending upon the type of its control.</para>
  5353. </summary>
  5354. </member>
  5355. <member name="F:DevExpress.XtraLayout.SizeConstraintsType.SupportHorzAlignment">
  5356. <summary>
  5357. <para>This mode is designed to support horizontal alignment of the controls that implement the automatic sizing feature, when they are displayed within a LayoutControl. A layout item’s maximum and minimum sizes are determined automatically. To custom align a control, set its AutoSizeInLayoutControl property to true and specify the control’s alignment via the <see cref="P:DevExpress.XtraLayout.LayoutControlItem.ContentHorzAlignment"/> property. See Size and Alignment to learn more.</para>
  5358. </summary>
  5359. </member>
  5360. <member name="T:DevExpress.XtraLayout.SplitterItem">
  5361. <summary>
  5362. <para>Allows you to resize and optionally collapse/expand adjacent layout items. Not supported in Table Layout and Flow Layout modes.</para>
  5363. </summary>
  5364. </member>
  5365. <member name="M:DevExpress.XtraLayout.SplitterItem.#ctor">
  5366. <summary>
  5367. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.SplitterItem"/> class.</para>
  5368. </summary>
  5369. </member>
  5370. <member name="M:DevExpress.XtraLayout.SplitterItem.#ctor(DevExpress.XtraLayout.LayoutControlGroup)">
  5371. <summary>
  5372. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.SplitterItem"/> class with the specified parent.</para>
  5373. </summary>
  5374. <param name="parent">A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object that owns the new splitter item.</param>
  5375. </member>
  5376. <member name="P:DevExpress.XtraLayout.SplitterItem.AllowHotTrack">
  5377. <summary>
  5378. <para>Gets whether the layout item’s borders are highlighted when the mouse cursor hovers over the layout items</para>
  5379. </summary>
  5380. <value>Always true.</value>
  5381. </member>
  5382. <member name="P:DevExpress.XtraLayout.SplitterItem.AllowHtmlStringInCaption">
  5383. <summary>
  5384. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  5385. </summary>
  5386. <value></value>
  5387. </member>
  5388. <member name="P:DevExpress.XtraLayout.SplitterItem.AppearanceItemCaption">
  5389. <summary>
  5390. <para>Gets the appearance settings used to paint an item’s caption. This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</para>
  5391. </summary>
  5392. <value>A <see cref="T:DevExpress.Utils.AppearanceObject"/> object which provides the appearance settings used to paint the item’s caption.</value>
  5393. </member>
  5394. <member name="M:DevExpress.XtraLayout.SplitterItem.BeginInit">
  5395. <summary>
  5396. <para>Starts the item’s initialization.</para>
  5397. </summary>
  5398. </member>
  5399. <member name="P:DevExpress.XtraLayout.SplitterItem.BestFitWeight">
  5400. <summary>
  5401. <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
  5402. </summary>
  5403. <value></value>
  5404. </member>
  5405. <member name="M:DevExpress.XtraLayout.SplitterItem.EndInit">
  5406. <summary>
  5407. <para>Ends the item’s initialization.</para>
  5408. </summary>
  5409. </member>
  5410. <member name="P:DevExpress.XtraLayout.SplitterItem.FixedStyle">
  5411. <summary>
  5412. <para>Gets or sets whether and which layout item/group is fixed.</para>
  5413. </summary>
  5414. <value>A <see cref="T:DevExpress.XtraLayout.SplitterItemFixedStyles"/> value that specifies whether and which layout item/group is fixed.</value>
  5415. </member>
  5416. <member name="M:DevExpress.XtraLayout.SplitterItem.GetDefaultText">
  5417. <summary>
  5418. <para>Returns the splitter item’s name.</para>
  5419. </summary>
  5420. <returns>A <see cref="T:System.String"/> value that specifies the splitter item’s name.</returns>
  5421. </member>
  5422. <member name="M:DevExpress.XtraLayout.SplitterItem.GetSizingRect">
  5423. <summary>
  5424. <para>Returns the bounds of the region used to drag the splitter item. This method supports the internal infrastructure and is not intended to be used directly from your code.</para>
  5425. </summary>
  5426. <returns>A Rectangle object.</returns>
  5427. </member>
  5428. <member name="P:DevExpress.XtraLayout.SplitterItem.Inverted">
  5429. <summary>
  5430. <para>Gets or sets whether the splitter collapses leftwards (for the vertically oriented splitter) and upwards (for the horizontally oriented splitter), or in the opposite directions (rightwards and downwards, respectively).</para>
  5431. </summary>
  5432. <value>true if the splitter collapses rightwards and upwards; otherwise, false.</value>
  5433. </member>
  5434. <member name="P:DevExpress.XtraLayout.SplitterItem.IsCollapsed">
  5435. <summary>
  5436. <para>Gets or sets whether the layout content is collapsed using the current splitter.</para>
  5437. </summary>
  5438. <value>true if the layout content is collapsed using the current splitter; otherwise, false.</value>
  5439. </member>
  5440. <member name="P:DevExpress.XtraLayout.SplitterItem.IsCollapsible">
  5441. <summary>
  5442. <para>Gets or sets whether the layout content can be collapsed using the current splitter.</para>
  5443. </summary>
  5444. <value>True, if the layout content can be collapsed using the current splitter; otherwise, Default or False.</value>
  5445. </member>
  5446. <member name="P:DevExpress.XtraLayout.SplitterItem.IsHorizontal">
  5447. <summary>
  5448. <para>Gets whether the splitter item is oriented horizontally.</para>
  5449. </summary>
  5450. <value>true if the splitter item is oriented horizontally; otherwise, false.</value>
  5451. </member>
  5452. <member name="P:DevExpress.XtraLayout.SplitterItem.IsVertical">
  5453. <summary>
  5454. <para>Gets whether the splitter item is oriented vertically.</para>
  5455. </summary>
  5456. <value>true if the splitter item is oriented vertically; otherwise, false.</value>
  5457. </member>
  5458. <member name="P:DevExpress.XtraLayout.SplitterItem.MaxSize">
  5459. <summary>
  5460. <para>Gets or set the maximum size of the splitter item. This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</para>
  5461. </summary>
  5462. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the item’s maximum width and height.</value>
  5463. </member>
  5464. <member name="P:DevExpress.XtraLayout.SplitterItem.MinSize">
  5465. <summary>
  5466. <para>Gets or sets the minimum size of the splitter item. This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</para>
  5467. </summary>
  5468. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the item’s minimum width and height.</value>
  5469. </member>
  5470. <member name="P:DevExpress.XtraLayout.SplitterItem.Padding">
  5471. <summary>
  5472. <para>Gets or sets the amount of space in pixels between the item’s borders and its contents. This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</para>
  5473. </summary>
  5474. <value>A DevExpress.XtraLayout.Utils.Padding object that contains inner indents between the layout item’s borders and its contents.</value>
  5475. </member>
  5476. <member name="P:DevExpress.XtraLayout.SplitterItem.Position">
  5477. <summary>
  5478. <para>Gets or sets the vertical (horizontal) separator position relative to the layout group left (top) edge.</para>
  5479. </summary>
  5480. <value>An integer value that specifies the separator position.</value>
  5481. </member>
  5482. <member name="E:DevExpress.XtraLayout.SplitterItem.PositionChanged">
  5483. <summary>
  5484. <para>Fires when the position of the current splitter in the layout is changed.</para>
  5485. </summary>
  5486. </member>
  5487. <member name="P:DevExpress.XtraLayout.SplitterItem.ResizeMode">
  5488. <summary>
  5489. <para>Gets or sets the splitter’s resize mode.</para>
  5490. </summary>
  5491. <value>A <see cref="T:DevExpress.XtraLayout.SplitterItemResizeMode"/> value that specifies the splitter’s resize mode.</value>
  5492. </member>
  5493. <member name="P:DevExpress.XtraLayout.SplitterItem.ShowSplitGlyph">
  5494. <summary>
  5495. <para>Gets or sets whether to display the split glyph.</para>
  5496. </summary>
  5497. <value>A value that specifies the spit glyph’s visibility. The DefaultBoolean.Default value, if the paint theme (skin) controls the split glyph visibility.</value>
  5498. </member>
  5499. <member name="P:DevExpress.XtraLayout.SplitterItem.Size">
  5500. <summary>
  5501. <para>Gets or sets the splitter item’s size.</para>
  5502. </summary>
  5503. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the splitter item’s width and height.</value>
  5504. </member>
  5505. <member name="P:DevExpress.XtraLayout.SplitterItem.SizeConstraintsType">
  5506. <summary>
  5507. <para>Gets or sets the size constraints type. This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</para>
  5508. </summary>
  5509. <value>A <see cref="T:DevExpress.XtraLayout.SizeConstraintsType"/> enumeration value which specifies the manner in which the item can be resized. The default is SizeConstraintsType.Default.</value>
  5510. </member>
  5511. <member name="P:DevExpress.XtraLayout.SplitterItem.Spacing">
  5512. <summary>
  5513. <para>Gets or sets the outer indents of the item’s borders. This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</para>
  5514. </summary>
  5515. <value>A DevExpress.XtraLayout.Utils.Padding object that contains the outer indents of the layout item’s borders.</value>
  5516. </member>
  5517. <member name="P:DevExpress.XtraLayout.SplitterItem.SplitterWidth">
  5518. <summary>
  5519. <para>Gets or sets the splitter’s width.</para>
  5520. </summary>
  5521. <value>An integer value that specifies the splitter’s width.</value>
  5522. </member>
  5523. <member name="P:DevExpress.XtraLayout.SplitterItem.Text">
  5524. <summary>
  5525. <para>Gets or sets the item’s text. This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</para>
  5526. </summary>
  5527. <value>A <see cref="T:System.String"/> value that specifies the item’s text.</value>
  5528. </member>
  5529. <member name="P:DevExpress.XtraLayout.SplitterItem.TextAlignMode">
  5530. <summary>
  5531. <para>This member supports the internal infrastructure and is not intended to be used directly from your code.</para>
  5532. </summary>
  5533. <value>A <see cref="T:DevExpress.XtraLayout.TextAlignMode"/> value.</value>
  5534. </member>
  5535. <member name="P:DevExpress.XtraLayout.SplitterItem.TextSize">
  5536. <summary>
  5537. <para>Gets or sets the size of the text region. This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</para>
  5538. </summary>
  5539. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the width and height of the item’s text region.</value>
  5540. </member>
  5541. <member name="P:DevExpress.XtraLayout.SplitterItem.TextVisible">
  5542. <summary>
  5543. <para>Gets whether the text region is visible. This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</para>
  5544. </summary>
  5545. <value>Always false.</value>
  5546. </member>
  5547. <member name="P:DevExpress.XtraLayout.SplitterItem.TypeName">
  5548. <summary>
  5549. <para>Gets the name of the item’s type.</para>
  5550. </summary>
  5551. <value>The ‘SplitterItem’ value.</value>
  5552. </member>
  5553. <member name="T:DevExpress.XtraLayout.SplitterItemFixedStyles">
  5554. <summary>
  5555. <para>Contains values that specify whether and which layout item/group is fixed.</para>
  5556. </summary>
  5557. </member>
  5558. <member name="F:DevExpress.XtraLayout.SplitterItemFixedStyles.LeftTop">
  5559. <summary>
  5560. <para>The left or top item is fixed (depending on the SplitterItem’s orientation).</para>
  5561. </summary>
  5562. </member>
  5563. <member name="F:DevExpress.XtraLayout.SplitterItemFixedStyles.None">
  5564. <summary>
  5565. <para>No item is fixed.</para>
  5566. </summary>
  5567. </member>
  5568. <member name="F:DevExpress.XtraLayout.SplitterItemFixedStyles.RightBottom">
  5569. <summary>
  5570. <para>The right or bottom item is fixed (depending on the SplitterItem’s orientation).</para>
  5571. </summary>
  5572. </member>
  5573. <member name="T:DevExpress.XtraLayout.SplitterItemResizeMode">
  5574. <summary>
  5575. <para>Enumerates the options that control how layout items are resized when using a splitter.</para>
  5576. </summary>
  5577. </member>
  5578. <member name="F:DevExpress.XtraLayout.SplitterItemResizeMode.AllSiblings">
  5579. <summary>
  5580. <para>Moving the splitter changes the size of adjacent layout items and all their neighbors even if they belong to other layout groups.</para>
  5581. </summary>
  5582. </member>
  5583. <member name="F:DevExpress.XtraLayout.SplitterItemResizeMode.OnlyAdjacentControls">
  5584. <summary>
  5585. <para>Moving the splitter allows adjacent layout items that belong to the same layout group to be resized (the layout item to the left, and all layout items to the right/top are allowed to be resized).</para>
  5586. </summary>
  5587. </member>
  5588. <member name="T:DevExpress.XtraLayout.TabbedControlGroup">
  5589. <summary>
  5590. <para>The group that features a tabbed UI.</para>
  5591. </summary>
  5592. </member>
  5593. <member name="M:DevExpress.XtraLayout.TabbedControlGroup.#ctor">
  5594. <summary>
  5595. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.TabbedControlGroup"/> class with default settings.</para>
  5596. </summary>
  5597. </member>
  5598. <member name="M:DevExpress.XtraLayout.TabbedControlGroup.#ctor(DevExpress.XtraLayout.LayoutGroup)">
  5599. <summary>
  5600. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.TabbedControlGroup"/> class with the specified owner.</para>
  5601. </summary>
  5602. <param name="owner">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant which owns the created group.</param>
  5603. </member>
  5604. <member name="M:DevExpress.XtraLayout.TabbedControlGroup.AddTabPage">
  5605. <summary>
  5606. <para>Creates a new tab page and appends it to the <see cref="P:DevExpress.XtraLayout.TabbedControlGroup.TabPages"/> collection.</para>
  5607. </summary>
  5608. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object that represents the new page.</returns>
  5609. </member>
  5610. <member name="M:DevExpress.XtraLayout.TabbedControlGroup.AddTabPage(DevExpress.XtraLayout.LayoutGroup)">
  5611. <summary>
  5612. <para>Appends the specified tab page to the <see cref="P:DevExpress.XtraLayout.TabbedControlGroup.TabPages"/> collection.</para>
  5613. </summary>
  5614. <param name="newItem">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents the new tab page.</param>
  5615. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object that represents the new page. null (Nothing in Visual Basic) if the collection contains the specified tab page.</returns>
  5616. </member>
  5617. <member name="M:DevExpress.XtraLayout.TabbedControlGroup.AddTabPage(DevExpress.XtraLayout.LayoutGroup,System.String)">
  5618. <summary>
  5619. <para>Appends the specified tab page with the specified text to the <see cref="P:DevExpress.XtraLayout.TabbedControlGroup.TabPages"/> collection.</para>
  5620. </summary>
  5621. <param name="newItem">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents the new tab page.</param>
  5622. <param name="text">A <see cref="T:System.String"/> value that specifies the text displayed within the page header. This value is assigned to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  5623. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object that represents the new page. null (Nothing in Visual Basic) if the collection contains the specified tab page.</returns>
  5624. </member>
  5625. <member name="M:DevExpress.XtraLayout.TabbedControlGroup.AddTabPage(DevExpress.XtraLayout.LayoutGroup,System.String,System.Boolean)">
  5626. <summary>
  5627. <para>Appends the specified tab page to the <see cref="P:DevExpress.XtraLayout.TabbedGroup.TabPages"/> collection.</para>
  5628. </summary>
  5629. <param name="newItem">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents a new tab page.</param>
  5630. <param name="text">A <see cref="T:System.String"/> value that specifies the text displayed within the page header. This value is assigned to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  5631. <param name="selectTabPage">true if the tab page is selected; otherwise, false.</param>
  5632. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents a new tab page.</returns>
  5633. </member>
  5634. <member name="M:DevExpress.XtraLayout.TabbedControlGroup.AddTabPage(System.String)">
  5635. <summary>
  5636. <para>Creates a new tab page with the specified text and appends it to the <see cref="P:DevExpress.XtraLayout.TabbedControlGroup.TabPages"/> collection.</para>
  5637. </summary>
  5638. <param name="text">A <see cref="T:System.String"/> value that specifies the text displayed within the page header. This value is assigned to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  5639. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object that represents the new page.</returns>
  5640. </member>
  5641. <member name="P:DevExpress.XtraLayout.TabbedControlGroup.TabPages">
  5642. <summary>
  5643. <para>Gets the collection of layout groups which is owned by the current tabbed group.</para>
  5644. </summary>
  5645. <value>A DevExpress.XtraLayout.Utils.TabbedGroupsCollection object which represents the collection of layout groups owned by the tabbed group.</value>
  5646. </member>
  5647. <member name="T:DevExpress.XtraLayout.TabbedGroup">
  5648. <summary>
  5649. <para>Represents the base class for tabbed layout groups.</para>
  5650. </summary>
  5651. </member>
  5652. <member name="M:DevExpress.XtraLayout.TabbedGroup.Accept(DevExpress.XtraLayout.Utils.BaseVisitor)">
  5653. <summary>
  5654. <para>Invokes the Visit method of the specified visitor for each item that belongs to the current layout tabbed group.</para>
  5655. </summary>
  5656. <param name="visitor">A DevExpress.XtraLayout.Utils.BaseVisitor class descendant.</param>
  5657. </member>
  5658. <member name="M:DevExpress.XtraLayout.TabbedGroup.AddTabPage">
  5659. <summary>
  5660. <para>Adds a new tabbed page to the current tabbed group.</para>
  5661. </summary>
  5662. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant which represents the new page.</returns>
  5663. </member>
  5664. <member name="M:DevExpress.XtraLayout.TabbedGroup.AddTabPage(DevExpress.XtraLayout.LayoutGroup)">
  5665. <summary>
  5666. <para>Appends the specified tab page to the <see cref="P:DevExpress.XtraLayout.TabbedGroup.TabPages"/> collection.</para>
  5667. </summary>
  5668. <param name="newItem">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents the new tab page.</param>
  5669. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents the new page. null (Nothing in Visual Basic) if the collection contains the specified tab page.</returns>
  5670. </member>
  5671. <member name="M:DevExpress.XtraLayout.TabbedGroup.AddTabPage(DevExpress.XtraLayout.LayoutGroup,System.String)">
  5672. <summary>
  5673. <para>Appends the specified tab page with the specified text to the <see cref="P:DevExpress.XtraLayout.TabbedGroup.TabPages"/> collection.</para>
  5674. </summary>
  5675. <param name="newItem">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents the new tab page.</param>
  5676. <param name="text">A <see cref="T:System.String"/> value that specifies the text displayed within the page header. This value is assigned to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  5677. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents the new page. null (Nothing in Visual Basic) if the collection contains the specified tab page.</returns>
  5678. </member>
  5679. <member name="M:DevExpress.XtraLayout.TabbedGroup.AddTabPage(DevExpress.XtraLayout.LayoutGroup,System.String,System.Boolean)">
  5680. <summary>
  5681. <para>Appends the specified tab page to the <see cref="P:DevExpress.XtraLayout.TabbedGroup.TabPages"/> collection.</para>
  5682. </summary>
  5683. <param name="newItem">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents a new tab page.</param>
  5684. <param name="text">A <see cref="T:System.String"/> value that specifies the text displayed within the page header. This value is assigned to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  5685. <param name="selectTabPage">true if the tab page is selected; otherwise, false.</param>
  5686. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents a new tab page.</returns>
  5687. </member>
  5688. <member name="M:DevExpress.XtraLayout.TabbedGroup.AddTabPage(System.String)">
  5689. <summary>
  5690. <para>Creates a new tab page with the specified text and appends it to the <see cref="P:DevExpress.XtraLayout.TabbedGroup.TabPages"/> collection.</para>
  5691. </summary>
  5692. <param name="text">A <see cref="T:System.String"/> value that specifies the text displayed within the page header. This value is assigned to the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.Text"/> property.</param>
  5693. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents the new page.</returns>
  5694. </member>
  5695. <member name="P:DevExpress.XtraLayout.TabbedGroup.AllowHtmlDraw">
  5696. <summary>
  5697. <para>Gets or sets whether or not tabbed group captions can be formatted using HTML tags.</para>
  5698. </summary>
  5699. <value>true if tabbed group captions can be formatted using HTML tags; otherwise, false.</value>
  5700. </member>
  5701. <member name="P:DevExpress.XtraLayout.TabbedGroup.CaptionImagePadding">
  5702. <summary>
  5703. <para>Gets or sets default padding for images displayed in the page headers belonging to the current group.</para>
  5704. </summary>
  5705. <value>A Padding object that specifies default padding for images displayed in the page headers belonging to the current group.</value>
  5706. </member>
  5707. <member name="M:DevExpress.XtraLayout.TabbedGroup.Clear">
  5708. <summary>
  5709. <para>Removes all tab pages from the <see cref="P:DevExpress.XtraLayout.TabbedControlGroup.TabPages"/> collection.</para>
  5710. </summary>
  5711. </member>
  5712. <member name="M:DevExpress.XtraLayout.TabbedGroup.Clear(System.Boolean)">
  5713. <summary>
  5714. <para>Removes all tab pages from the <see cref="P:DevExpress.XtraLayout.TabbedControlGroup.TabPages"/> collection.</para>
  5715. </summary>
  5716. <param name="disposeItemAndControls">true, to release all resources; otherwise false.</param>
  5717. </member>
  5718. <member name="E:DevExpress.XtraLayout.TabbedGroup.CustomDrawHeaderButton">
  5719. <summary>
  5720. <para>Allows you to custom paint header buttons (<see cref="P:DevExpress.XtraLayout.TabbedGroup.CustomHeaderButtons"/>).</para>
  5721. </summary>
  5722. </member>
  5723. <member name="E:DevExpress.XtraLayout.TabbedGroup.CustomDrawTabHeader">
  5724. <summary>
  5725. <para>Allows you to custom paint tabs.</para>
  5726. </summary>
  5727. </member>
  5728. <member name="E:DevExpress.XtraLayout.TabbedGroup.CustomHeaderButtonClick">
  5729. <summary>
  5730. <para>Occurs when a custom header button is clicked.</para>
  5731. </summary>
  5732. </member>
  5733. <member name="P:DevExpress.XtraLayout.TabbedGroup.CustomHeaderButtons">
  5734. <summary>
  5735. <para>Provides access to the collection of custom buttons displayed in the tabbed group header.</para>
  5736. </summary>
  5737. <value>The <see cref="T:DevExpress.XtraTab.Buttons.CustomHeaderButtonCollection"/> object that represents a collection of custom buttons displayed in the tabbed group header.</value>
  5738. </member>
  5739. <member name="M:DevExpress.XtraLayout.TabbedGroup.EndInit">
  5740. <summary>
  5741. <para>Finishes the component’s initialization.</para>
  5742. </summary>
  5743. </member>
  5744. <member name="P:DevExpress.XtraLayout.TabbedGroup.HeaderAutoFill">
  5745. <summary>
  5746. <para>Gets or sets whether tab headers are stretched to the width of the <see cref="T:DevExpress.XtraLayout.TabbedGroup"/>‘s header region.</para>
  5747. </summary>
  5748. <value>A <see cref="T:DevExpress.Utils.DefaultBoolean"/> value that specifies whether tab headers are stretched to the width of the <see cref="T:DevExpress.XtraLayout.TabbedGroup"/>‘s header region.</value>
  5749. </member>
  5750. <member name="P:DevExpress.XtraLayout.TabbedGroup.HeaderOrientation">
  5751. <summary>
  5752. <para>Gets or sets the orientation of tab headers.</para>
  5753. </summary>
  5754. <value>A <see cref="T:DevExpress.XtraTab.TabOrientation"/> enumeration member which specifies the orientation of tab headers.</value>
  5755. </member>
  5756. <member name="M:DevExpress.XtraLayout.TabbedGroup.InsertTabPage(DevExpress.XtraLayout.LayoutGroup,DevExpress.XtraLayout.LayoutGroup,DevExpress.XtraLayout.Utils.InsertLocation)">
  5757. <summary>
  5758. <para>Adds the page to the <see cref="P:DevExpress.XtraLayout.TabbedGroup.TabPages"/> collection before or after the specified page.</para>
  5759. </summary>
  5760. <param name="insertTo">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant that represents the page before or after which the page will be inserted.</param>
  5761. <param name="insertGroup">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant which represents the inserted page.</param>
  5762. <param name="insertLocation">An <see cref="T:DevExpress.XtraLayout.Utils.InsertLocation"/> enumeration value which specifies the position that the page will be inserted at.</param>
  5763. </member>
  5764. <member name="M:DevExpress.XtraLayout.TabbedGroup.InsertTabPage(System.Int32,DevExpress.XtraLayout.LayoutGroup)">
  5765. <summary>
  5766. <para>Adds the specified page to the <see cref="P:DevExpress.XtraLayout.TabbedGroup.TabPages"/> collection at the specified position.</para>
  5767. </summary>
  5768. <param name="insertIndex">An integer value which represents the zero-based index at which the specified page should be inserted. If it’s negative or exceeds the number of elements within the collection an exception is thrown.</param>
  5769. <param name="group">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object or descendant which represents the inserted page.</param>
  5770. </member>
  5771. <member name="P:DevExpress.XtraLayout.TabbedGroup.MaxSize">
  5772. <summary>
  5773. <para>Gets the maximum size of the tabbed group.</para>
  5774. </summary>
  5775. <value>A <see cref="T:System.Drawing.Size"/> structure that specifies the tabbed group’s maximum size.</value>
  5776. </member>
  5777. <member name="P:DevExpress.XtraLayout.TabbedGroup.MinSize">
  5778. <summary>
  5779. <para>Gets the minimum size of the tabbed group.</para>
  5780. </summary>
  5781. <value>A <see cref="T:System.Drawing.Size"/> structure that defines the tabbed group’s minimum width and height.</value>
  5782. </member>
  5783. <member name="M:DevExpress.XtraLayout.TabbedGroup.MoveTabPage(DevExpress.XtraLayout.Customization.LayoutItemDragController)">
  5784. <summary>
  5785. <para>Moves the page to another position within the <see cref="P:DevExpress.XtraLayout.TabbedGroup.TabPages"/> collection.</para>
  5786. </summary>
  5787. <param name="controller">A <see cref="T:DevExpress.XtraLayout.Customization.LayoutItemDragController"/> object which contains information on the page that would be moved and the position that the page would be moved to.</param>
  5788. <returns>true if the page has been moved; otherwise, false.</returns>
  5789. </member>
  5790. <member name="P:DevExpress.XtraLayout.TabbedGroup.MultiLine">
  5791. <summary>
  5792. <para>Gets or sets whether more than one row of tabs can be displayed.</para>
  5793. </summary>
  5794. <value>A <see cref="T:DevExpress.Utils.DefaultBoolean"/> value that specifies whether tabs can be arranged in multiple rows.</value>
  5795. </member>
  5796. <member name="P:DevExpress.XtraLayout.TabbedGroup.OptionsToolTip">
  5797. <summary>
  5798. <para>This property is not supported by the <see cref="T:DevExpress.XtraLayout.TabbedGroup"/> class.</para>
  5799. </summary>
  5800. <value>A <see cref="T:DevExpress.XtraLayout.BaseLayoutItemOptionsToolTip"/> object.</value>
  5801. </member>
  5802. <member name="P:DevExpress.XtraLayout.TabbedGroup.Owner">
  5803. <summary>
  5804. <para>Gets or set the LayoutControl that owns the current tabbed group.</para>
  5805. </summary>
  5806. <value>A <see cref="T:DevExpress.XtraLayout.LayoutControl"/> object or descendant which the tabbed group belongs to.</value>
  5807. </member>
  5808. <member name="P:DevExpress.XtraLayout.TabbedGroup.PageImagePosition">
  5809. <summary>
  5810. <para>Gets or sets the alignment of images displayed within headers of pages that belong to the current group.</para>
  5811. </summary>
  5812. <value>A <see cref="T:DevExpress.XtraTab.TabPageImagePosition"/> value that specifies the alignment of images displayed within headers of pages that belong to the current group.</value>
  5813. </member>
  5814. <member name="M:DevExpress.XtraLayout.TabbedGroup.RemoveTabPage(DevExpress.XtraLayout.LayoutGroup)">
  5815. <summary>
  5816. <para>Removes the specified tab page from the <see cref="P:DevExpress.XtraLayout.TabbedControlGroup.TabPages"/> collection.</para>
  5817. </summary>
  5818. <param name="item">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object which represents the tab page to be removed from the collection.</param>
  5819. <returns>true if the tab page has been removed; otherwise, false.</returns>
  5820. </member>
  5821. <member name="E:DevExpress.XtraLayout.TabbedGroup.SelectedPageChanged">
  5822. <summary>
  5823. <para>Occurs when a tab page is activated.</para>
  5824. </summary>
  5825. </member>
  5826. <member name="E:DevExpress.XtraLayout.TabbedGroup.SelectedPageChanging">
  5827. <summary>
  5828. <para>Enables you to prevent changing the selected page.</para>
  5829. </summary>
  5830. </member>
  5831. <member name="P:DevExpress.XtraLayout.TabbedGroup.SelectedTabPage">
  5832. <summary>
  5833. <para>Gets or sets the currently selected layout group within the tabbed group.</para>
  5834. </summary>
  5835. <value>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object which represents the tabbed page that is currently selected.</value>
  5836. </member>
  5837. <member name="P:DevExpress.XtraLayout.TabbedGroup.SelectedTabPageIndex">
  5838. <summary>
  5839. <para>Gets or sets the index of the currently selected tab page.</para>
  5840. </summary>
  5841. <value>A zero-based integer which specifies the index of the selected tab page.</value>
  5842. </member>
  5843. <member name="P:DevExpress.XtraLayout.TabbedGroup.SelectedTabPageName">
  5844. <summary>
  5845. <para>Gets or sets the name of the tab page currently being selected.</para>
  5846. </summary>
  5847. <value>A <see cref="T:System.String"/> value that specifies the name of the tab page currently being selected.</value>
  5848. </member>
  5849. <member name="P:DevExpress.XtraLayout.TabbedGroup.ShowTabHeader">
  5850. <summary>
  5851. <para>Gets or sets whether tab headers are shown.</para>
  5852. </summary>
  5853. <value>A <see cref="T:DevExpress.Utils.DefaultBoolean"/> enumeration value that specifies whether tab headers are shown.</value>
  5854. </member>
  5855. <member name="P:DevExpress.XtraLayout.TabbedGroup.TabPages">
  5856. <summary>
  5857. <para>Gets the collection of layout groups which is owned by the current tabbed group.</para>
  5858. </summary>
  5859. <value>A DevExpress.XtraLayout.Utils.TabbedGroupsCollection object which represents the collection of layout groups owned by the tabbed group.</value>
  5860. </member>
  5861. <member name="P:DevExpress.XtraLayout.TabbedGroup.TextSize">
  5862. <summary>
  5863. <para>Gets or sets the size of the text region.</para>
  5864. </summary>
  5865. <value>A System.Drawing.Size structure that defines the width and height of the text region.</value>
  5866. </member>
  5867. <member name="P:DevExpress.XtraLayout.TabbedGroup.TextVisible">
  5868. <summary>
  5869. <para>Gets or sets whether the current object’s text region is visible. This property is not supported by the <see cref="T:DevExpress.XtraLayout.TabbedGroup"/> class.</para>
  5870. </summary>
  5871. <value>Always false.</value>
  5872. </member>
  5873. <member name="P:DevExpress.XtraLayout.TabbedGroup.Transition">
  5874. <summary>
  5875. <para>Provides access to state animation parameters.</para>
  5876. </summary>
  5877. <value>A DevExpress.XtraTab.XtraTabControlTransition object that specifies state animation parameters.</value>
  5878. </member>
  5879. <member name="P:DevExpress.XtraLayout.TabbedGroup.TypeName">
  5880. <summary>
  5881. <para>Gets the name of the item’s type.</para>
  5882. </summary>
  5883. <value>The ‘TabbedGroup’ value.</value>
  5884. </member>
  5885. <member name="M:DevExpress.XtraLayout.TabbedGroup.Ungroup">
  5886. <summary>
  5887. <para>Ungroups the tabbed group.</para>
  5888. </summary>
  5889. </member>
  5890. <member name="P:DevExpress.XtraLayout.TabbedGroup.ViewInfo">
  5891. <summary>
  5892. <para>Gets the object which contains the information used to render the tabbed group.</para>
  5893. </summary>
  5894. <value>A DevExpress.XtraLayout.ViewInfo.TabbedGroupViewInfo object.</value>
  5895. </member>
  5896. <member name="T:DevExpress.XtraLayout.TextAlignMode">
  5897. <summary>
  5898. <para>Enumerates the options that specify how the controls, displayed within the LayoutControl, are aligned and the corresponding text regions are resized.</para>
  5899. </summary>
  5900. </member>
  5901. <member name="F:DevExpress.XtraLayout.TextAlignMode.AlignInGroups">
  5902. <summary>
  5903. <para>Controls are auto-aligned independently within each layout group.</para>
  5904. </summary>
  5905. </member>
  5906. <member name="F:DevExpress.XtraLayout.TextAlignMode.AlignInGroupsRecursive">
  5907. <summary>
  5908. <para>For internal use.</para>
  5909. </summary>
  5910. </member>
  5911. <member name="F:DevExpress.XtraLayout.TextAlignMode.AlignInLayoutControl">
  5912. <summary>
  5913. <para>Controls are auto-aligned throughout the LayoutControl.</para>
  5914. </summary>
  5915. </member>
  5916. <member name="F:DevExpress.XtraLayout.TextAlignMode.AutoSize">
  5917. <summary>
  5918. <para>The auto-size feature is enabled. The text regions of layout items are automatically resized to the minimum width that allows the text to be displayed in it entirety.</para>
  5919. </summary>
  5920. </member>
  5921. <member name="F:DevExpress.XtraLayout.TextAlignMode.CustomSize">
  5922. <summary>
  5923. <para>Enables custom size mode, in which the size of the text regions of all layout items must be specified manually via the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.TextSize"/> property.</para>
  5924. </summary>
  5925. </member>
  5926. <member name="T:DevExpress.XtraLayout.TextAlignModeGroup">
  5927. <summary>
  5928. <para>Enumerates the options that specify how the controls, displayed within a specific layout group, are aligned and the corresponding text regions are resized.</para>
  5929. </summary>
  5930. </member>
  5931. <member name="F:DevExpress.XtraLayout.TextAlignModeGroup.AlignLocal">
  5932. <summary>
  5933. <para>Controls displayed within the current group are equally aligned independent of other groups.</para>
  5934. </summary>
  5935. </member>
  5936. <member name="F:DevExpress.XtraLayout.TextAlignModeGroup.AlignWithChildren">
  5937. <summary>
  5938. <para>Controls displayed within the current and nested groups are equally aligned independent of other groups.</para>
  5939. </summary>
  5940. </member>
  5941. <member name="F:DevExpress.XtraLayout.TextAlignModeGroup.AutoSize">
  5942. <summary>
  5943. <para>The auto-size feature is applied to the layout items of the current group. The text regions of the layout items are automatically resized to the minimum width that allows the text to be displayed in its entirety.</para>
  5944. </summary>
  5945. </member>
  5946. <member name="F:DevExpress.XtraLayout.TextAlignModeGroup.CustomSize">
  5947. <summary>
  5948. <para>Enables custom size mode, in which the size of the text regions of the group’s layout items must be specified manually via the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.TextSize"/> property.</para>
  5949. </summary>
  5950. </member>
  5951. <member name="F:DevExpress.XtraLayout.TextAlignModeGroup.UseParentOptions">
  5952. <summary>
  5953. <para>Alignment settings are determined by the group’s parent. The <see cref="P:DevExpress.XtraLayout.OptionsItemTextGroup.TextToControlDistance"/> and <see cref="P:DevExpress.XtraLayout.OptionsItemTextGroup.AlignControlsWithHiddenText"/> properties of the current group are ignored. In this mode, these settings are determined by the group’s parent.</para>
  5954. <para>For the root group, its parent is the LayoutControl itself (the LayoutControl’s alignment settings are specified by the <see cref="P:DevExpress.XtraLayout.LayoutControl.OptionsItemText"/> property). For other groups their parents are upper-level groups (a group’s alignment settings are specified by the <see cref="P:DevExpress.XtraLayout.LayoutGroup.OptionsItemText"/> property).</para>
  5955. </summary>
  5956. </member>
  5957. <member name="T:DevExpress.XtraLayout.TextAlignModeItem">
  5958. <summary>
  5959. <para>Enumerates the options that determine the alignment settings of a layout item’s control.</para>
  5960. </summary>
  5961. </member>
  5962. <member name="F:DevExpress.XtraLayout.TextAlignModeItem.AutoSize">
  5963. <summary>
  5964. <para>The auto-size feature is applied to the current layout item. The item’s text region is automatically resized to the minimum width that allows the text to be displayed in its entirety.</para>
  5965. </summary>
  5966. </member>
  5967. <member name="F:DevExpress.XtraLayout.TextAlignModeItem.CustomSize">
  5968. <summary>
  5969. <para>Enables custom size mode, in which the size of the layout item’s text region must be specified manually via the <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.TextSize"/> property.</para>
  5970. </summary>
  5971. </member>
  5972. <member name="F:DevExpress.XtraLayout.TextAlignModeItem.UseParentOptions">
  5973. <summary>
  5974. <para>Alignment settings are determined by the item’s parent. The item’s <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.TextToControlDistance"/> property is ignored. In this mode, this setting is determined by the item’s parent.</para>
  5975. <para>The item’s immediate parent is a group which provides the <see cref="P:DevExpress.XtraLayout.LayoutGroup.OptionsItemText"/> property to control the alignment settings of its items. However, by default the group’s <see cref="P:DevExpress.XtraLayout.OptionsItemTextGroup.TextAlignMode"/> property is set to <see cref="F:DevExpress.XtraLayout.TextAlignModeGroup.UseParentOptions"/>. In this mode, the alignment settings of the group’s items are determined by the group’s parent.</para>
  5976. <para>For the root group, its parent is the LayoutControl itself (the LayoutControl’s alignment settings are specified by the <see cref="P:DevExpress.XtraLayout.LayoutControl.OptionsItemText"/> property). For other groups their parents are upper-level groups (a group’s alignment settings are specified by the <see cref="P:DevExpress.XtraLayout.LayoutGroup.OptionsItemText"/> property).</para>
  5977. </summary>
  5978. </member>
  5979. <member name="N:DevExpress.XtraLayout.Utils">
  5980. <summary>
  5981. <para>Contains utility classes for the Layout Control.</para>
  5982. </summary>
  5983. </member>
  5984. <member name="T:DevExpress.XtraLayout.Utils.InsertLocation">
  5985. <summary>
  5986. <para>Lists the values that specify the position to which a layout item is inserted.</para>
  5987. </summary>
  5988. </member>
  5989. <member name="F:DevExpress.XtraLayout.Utils.InsertLocation.After">
  5990. <summary>
  5991. <para>To insert an item after the specified one.</para>
  5992. </summary>
  5993. </member>
  5994. <member name="F:DevExpress.XtraLayout.Utils.InsertLocation.Before">
  5995. <summary>
  5996. <para>To insert an item before the specified one.</para>
  5997. </summary>
  5998. </member>
  5999. <member name="T:DevExpress.XtraLayout.Utils.LayoutGroupCancelEventArgs">
  6000. <summary>
  6001. <para>Provides data for the <see cref="E:DevExpress.XtraLayout.LayoutControl.GroupExpandChanging"/> event.</para>
  6002. </summary>
  6003. </member>
  6004. <member name="M:DevExpress.XtraLayout.Utils.LayoutGroupCancelEventArgs.#ctor(DevExpress.XtraLayout.LayoutGroup,System.Boolean)">
  6005. <summary>
  6006. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupCancelEventArgs"/> class with the specified settings.</para>
  6007. </summary>
  6008. <param name="group">The currently processed group.</param>
  6009. <param name="cancel">The value that specifies whether the current operation needs to be canceled.</param>
  6010. </member>
  6011. <member name="P:DevExpress.XtraLayout.Utils.LayoutGroupCancelEventArgs.Cancel">
  6012. <summary>
  6013. <para>Gets or sets whether to cancel the current operation.</para>
  6014. </summary>
  6015. <value>A Boolean value that specifies whether to cancel the current operation.</value>
  6016. </member>
  6017. <member name="T:DevExpress.XtraLayout.Utils.LayoutGroupEventArgs">
  6018. <summary>
  6019. <para>Provides data for the <see cref="E:DevExpress.XtraLayout.LayoutControl.GroupExpandChanged"/> and <see cref="E:DevExpress.XtraLayout.LayoutControl.TabPageCloseButtonClick"/> events.</para>
  6020. </summary>
  6021. </member>
  6022. <member name="M:DevExpress.XtraLayout.Utils.LayoutGroupEventArgs.#ctor(DevExpress.XtraLayout.LayoutGroup)">
  6023. <summary>
  6024. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupEventArgs"/> class with the specified settings.</para>
  6025. </summary>
  6026. <param name="group">A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object that represents the group to which the created object will refer. This value is used to initialize the <see cref="P:DevExpress.XtraLayout.Utils.LayoutGroupEventArgs.Group"/> property.</param>
  6027. </member>
  6028. <member name="P:DevExpress.XtraLayout.Utils.LayoutGroupEventArgs.Group">
  6029. <summary>
  6030. <para>Gets the group currently being processed.</para>
  6031. </summary>
  6032. <value>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object that refers to the group currently being processed.</value>
  6033. </member>
  6034. <member name="T:DevExpress.XtraLayout.Utils.LayoutGroupEventHandler">
  6035. <summary>
  6036. <para>Represents the method for handling events which take a <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupEventArgs"/> object as a parameter.</para>
  6037. </summary>
  6038. <param name="sender">The event source. This identifies the LayoutControl control which fires the event.</param>
  6039. <param name="e">A <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupEventArgs"/> object that contains data for the event.</param>
  6040. </member>
  6041. <member name="T:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection">
  6042. <summary>
  6043. <para>Stores layout elements (descendants of the base <see cref="T:DevExpress.XtraLayout.BaseLayoutItem"/> class).</para>
  6044. </summary>
  6045. </member>
  6046. <member name="M:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection.#ctor">
  6047. <summary>
  6048. <para>Initializes a new instance of the <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection"/> class with the default settings.</para>
  6049. </summary>
  6050. </member>
  6051. <member name="M:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection.AddGroup">
  6052. <summary>
  6053. <para>Creates a new <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> and places it inside this <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection"/>.</para>
  6054. </summary>
  6055. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlGroup"/> object that has been created.</returns>
  6056. </member>
  6057. <member name="M:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection.AddItem">
  6058. <summary>
  6059. <para>Creates a new <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/> and places it inside this <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection"/>.</para>
  6060. </summary>
  6061. <returns>A <see cref="T:DevExpress.XtraLayout.LayoutControlItem"/> object that has been created.</returns>
  6062. </member>
  6063. <member name="M:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection.AddTabbedGroup">
  6064. <summary>
  6065. <para>Creates a new <see cref="T:DevExpress.XtraLayout.TabbedControlGroup"/> object and places it inside this <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection"/>.</para>
  6066. </summary>
  6067. <returns>A <see cref="T:DevExpress.XtraLayout.TabbedControlGroup"/> object that has been created.</returns>
  6068. </member>
  6069. <member name="P:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection.Owner">
  6070. <summary>
  6071. <para>Returns a <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> that owns this <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection"/>.</para>
  6072. </summary>
  6073. <value>A <see cref="T:DevExpress.XtraLayout.LayoutGroup"/> object that owns this <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection"/>.</value>
  6074. </member>
  6075. <member name="M:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection.RaiseOnChanged(System.ComponentModel.CollectionChangeEventArgs)">
  6076. <summary>
  6077. <para>Raises the OnChanged event that notifies about changes made to this <see cref="T:DevExpress.XtraLayout.Utils.LayoutGroupItemCollection"/>.</para>
  6078. </summary>
  6079. <param name="e">A object that represents the OnChanged event arguments.</param>
  6080. </member>
  6081. <member name="T:DevExpress.XtraLayout.Utils.LayoutMode">
  6082. <summary>
  6083. <para>Enumerates values that specify the layout mode for a <see cref="T:DevExpress.XtraLayout.LayoutGroup"/>.</para>
  6084. </summary>
  6085. </member>
  6086. <member name="F:DevExpress.XtraLayout.Utils.LayoutMode.Flow">
  6087. <summary>
  6088. <para>Flow layout mode. Layout items are automatically arranged in rows according to their order in the <see cref="P:DevExpress.XtraLayout.LayoutGroup.Items"/> collection, and are automatically wrapped at the group’s right edge</para>
  6089. </summary>
  6090. </member>
  6091. <member name="F:DevExpress.XtraLayout.Utils.LayoutMode.Regular">
  6092. <summary>
  6093. <para>Regular layout mode. Layout items can stretch within the parent layout group and can have any size</para>
  6094. </summary>
  6095. </member>
  6096. <member name="F:DevExpress.XtraLayout.Utils.LayoutMode.Table">
  6097. <summary>
  6098. <para>Table layout mode. Layout items are arranged in a two-dimensional table according to their row and column indexes and span values.</para>
  6099. </summary>
  6100. </member>
  6101. <member name="T:DevExpress.XtraLayout.Utils.LayoutType">
  6102. <summary>
  6103. <para>Contains the values that specify how an item is positioned next to a base item.</para>
  6104. </summary>
  6105. </member>
  6106. <member name="F:DevExpress.XtraLayout.Utils.LayoutType.Horizontal">
  6107. <summary>
  6108. <para>Specifies that an item is positioned horizontally next to a base item.</para>
  6109. </summary>
  6110. </member>
  6111. <member name="F:DevExpress.XtraLayout.Utils.LayoutType.Vertical">
  6112. <summary>
  6113. <para>Specifies that an item is positioned vertically next to a base item.</para>
  6114. </summary>
  6115. </member>
  6116. <member name="T:DevExpress.XtraLayout.Utils.LayoutVisibility">
  6117. <summary>
  6118. <para>Enumerates values that specify whether a layout item is visible in the Layout Control and the Customization Form.</para>
  6119. </summary>
  6120. </member>
  6121. <member name="F:DevExpress.XtraLayout.Utils.LayoutVisibility.Always">
  6122. <summary>
  6123. <para>A layout item is not collapsed. It is displayed in its original size in regular and customization modes.</para>
  6124. </summary>
  6125. </member>
  6126. <member name="F:DevExpress.XtraLayout.Utils.LayoutVisibility.Never">
  6127. <summary>
  6128. <para>A layout item is collapsed.</para>
  6129. </summary>
  6130. </member>
  6131. <member name="F:DevExpress.XtraLayout.Utils.LayoutVisibility.OnlyInCustomization">
  6132. <summary>
  6133. <para>A layout item is visible in customization mode, and collapsed in regular mode (when customization is not performed).</para>
  6134. </summary>
  6135. </member>
  6136. <member name="F:DevExpress.XtraLayout.Utils.LayoutVisibility.OnlyInRuntime">
  6137. <summary>
  6138. <para>A layout item is visible in regular mode, and collapsed in customization mode.</para>
  6139. </summary>
  6140. </member>
  6141. <member name="T:DevExpress.XtraLayout.Utils.MoveType">
  6142. <summary>
  6143. <para>Lists the values that specify how a layout item is inserted to another position.</para>
  6144. </summary>
  6145. </member>
  6146. <member name="F:DevExpress.XtraLayout.Utils.MoveType.Inside">
  6147. <summary>
  6148. <para>An item is inserted inside the specified item.</para>
  6149. </summary>
  6150. </member>
  6151. <member name="F:DevExpress.XtraLayout.Utils.MoveType.Outside">
  6152. <summary>
  6153. <para>An item is inserted outside the specified item. In this case, the inserted item is reduced to its minimum size which is specified by its <see cref="P:DevExpress.XtraLayout.BaseLayoutItem.MinSize"/> property.</para>
  6154. </summary>
  6155. </member>
  6156. </members>
  6157. </doc>