| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>Infragistics2.Win.UltraWinStatusBar.v9.2</name>
- </assembly>
- <members>
- <member name="M:Infragistics.Shared.LocalizedCategoryAttribute.GetLocalizedString(System.String)">
- <summary>
- Returns the localized category name
- </summary>
- <param name="value">Name of the category to retreive</param>
- <returns>The localized string value</returns>
- </member>
- <member name="M:Infragistics.Shared.UltraLicenseAttribute.GetLicensedWithProducts">
- <summary>
- Return the list of products that this control can be licensed with
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole">
- <summary>
- Component role class used to manage the style settings for an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole"/>
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
- <summary>
- Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole"/>
- </summary>
- <param name="statusBar">UltraStatusBar associated with the component</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole.GetRoleNames">
- <summary>
- Used by the associated <see cref="T:Infragistics.Win.AppStyling.ComponentRole"/> to determine which <see cref="T:Infragistics.Win.AppStyling.UIRole"/> instances should be cached.
- </summary>
- <returns>An array of strings containing the names of the role names that should be cached.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole.OnStyleChanged">
- <summary>
- Invoked when the style information has been changed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole.SynchronizingObject">
- <summary>
- Object used to synchronize the style change notifications with the ui thread
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.StatusBar">
- <summary>
- The control area for the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/>
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.Panel">
- <summary>
- An <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.Button">
- <summary>
- The base button role for a button within a statusbar
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelButtonElement">
- <summary>
- The button within a button panel
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelStateButtonElement">
- <summary>
- The button within a state button panel
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelMdiButton">
- <summary>
- An mdi button in an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> whose type is MdiList
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.SizeGrip">
- <summary>
- The size grip area
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelAutoStatusText">
- <summary>
- A panel whose style is AutoStatusText
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelButton">
- <summary>
- A panel whose style is Button
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelCharacterPosition">
- <summary>
- A panel whose style is CharacterPosition
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelCursorPosition">
- <summary>
- A panel whose style is CursorPosition
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelControlContainer">
- <summary>
- A panel whose style is ControlContainer
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelDate">
- <summary>
- A panel whose style is Date
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelKeyState">
- <summary>
- A panel whose style is KeyState
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelMarquee">
- <summary>
- A panel whose style is Marquee
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelMdiList">
- <summary>
- A panel whose style is MdiList
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelProgress">
- <summary>
- A panel whose style is Progress
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelStateButton">
- <summary>
- A panel whose style is StateButton
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelText">
- <summary>
- A panel whose style is Text
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelTime">
- <summary>
- A panel whose style is Time
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelSplitter">
- <summary>
- The splitter bar used to resize a panel.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.ProgressBar">
- <summary>
- The progress bar area for a progress bar panel.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.CachedProperty.BorderStatusBar">
- <summary>
- [Value Only] BorderStyle for the panel.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UltraWinStatusBarAssemblyStyleInfo">
- <summary>
- A class that provides the application styling definitions for the UltraWinStatusBar assembly.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraWinStatusBarAssemblyStyleInfo.GetRoles">
- <summary>
- Returns an array of objects that define the roles provided by an assembly.
- </summary>
- <returns>An array of objects that define the roles.</returns>
- <seealso cref="T:Infragistics.Win.AppStyling.Definitions.UIRoleDefinition"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraWinStatusBarAssemblyStyleInfo.GetComponents">
- <summary>
- Returns an array of objects that define the component roles provided by an assembly.
- </summary>
- <returns>An array of object that define the component roles.</returns>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog">
- <summary>
- Dialog used to change the position of the caret within the associated
- <see cref="T:System.Windows.Forms.RichTextBox"/> control of a
- <b>CharacterPosition</b> <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> <b>UltraStatusPanel</b>.
- </summary>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDisplayCharacterPositionDialog"/>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDisplayCharacterPositionDialog"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog.components">
- <summary>
- Required designer variable.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog.#ctor">
- <summary>
- Initializes a new CaretPositionDialog.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog.Dispose(System.Boolean)">
- <summary>
- Clean up any resources being used.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog.InitializeComponent">
- <summary>
- Required method for Designer support - do not modify
- the contents of this method with the code editor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog.InitializeDialog(System.Windows.Forms.RichTextBox)">
- <summary>
- Initializes the dialog with the specified RichTextBox.
- </summary>
- <param name="richText">RichTextBox associated with the dialog.</param>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.NumericTextBox">
- <summary>
- Class derived from TextBox to accept numeric input.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.NumericTextBox.#ctor">
- <summary>
- Initializes a new NumericTextBox
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.NumericTextBox.CreateParams">
- <summary>
- Overriden. Modifies the base creation parameters to limit the style to numeric.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.ClockUIElement">
- <summary>
- UIElement for representing a time as a clock.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ClockUIElement.#ctor(System.Boolean,Infragistics.Win.UIElement)">
- <summary>
- Initializes a new ClockUIElement.
- </summary>
- <param name="autoUpdate">Boolean indicating if the element should update its own display.</param>
- <param name="parent">Parent uielement</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ClockUIElement.DrawImage(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Renders the clock image for the element.
- </summary>
- <param name="drawParams">UIElementDrawParams</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ClockUIElement.DrawClockImage(Infragistics.Win.UIElementDrawParams@,System.DateTime)">
- <summary>
- Return a clock similar to that of Outlook based on the time passed in.
- </summary>
- <param name="drawParams">DrawParams containing the information for rendering the clock.</param>
- <param name="time">Time rendered on the clock image.</param>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ClockUIElement.Time">
- <summary>
- Determines the time displayed by the uielement.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.Direction">
- <summary>
- Enumeration of directions.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.Direction.LeftToRight">
- <summary>
- Left to right.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.Direction.RightToLeft">
- <summary>
- Right to left.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.Direction.TopToBottom">
- <summary>
- Top to bottom.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.Direction.BottomToTop">
- <summary>
- Bottom to top.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.MarqueeStyle">
- <summary>
- Enumeration of marquee styles.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.MarqueeStyle.Scrolling">
- <summary>
- The marquee continuously runs in the specified direction.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.MarqueeStyle.Sliding">
- <summary>
- The marquee slides into place.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.MarqueeStyle.Bouncing">
- <summary>
- The marquee bounces in the orientation specified by the direction.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.MarqueeStyle.Typing">
- <summary>
- Characters added one at a time.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.MarqueeStyle.Flashing">
- <summary>
- Text for the panel flashes at a specified interval.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.PanelStyle">
- <summary>
- Enumeration of panel styles
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.AutoStatusText">
- <summary>
- Displays the StatusBarText property of the control or menu item based on the mouse position.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Button">
- <summary>
- Displays a standard push button.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.CharacterPosition">
- <summary>
- Displays the position of the caret in the associated control. This
- only works with RichTextBox controls and controls that derive from
- RichTextBox.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.CursorPosition">
- <summary>
- Displays the position of the mouse in relation to the associated control when
- the mouse is over the control.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.ControlContainer">
- <summary>
- Positions a custom control in the location of the panel.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Date">
- <summary>
- Displays the date based on the DateTimeFormat.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.KeyState">
- <summary>
- Displays the status of the key indicated by the Key property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Marquee">
- <summary>
- Displays animated text.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.MDIList">
- <summary>
- Displays a task bar style list of buttons representing an mdi window.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Progress">
- <summary>
- Displays a progress bar and its associated label.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.StateButton">
- <summary>
- Displays a state button.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Text">
- <summary>
- Displays the text of the panel.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Time">
- <summary>
- Displays the time based on the DateTimeFormat.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.PanelSizingMode">
- <summary>
- Enumeration of the panel sizing options.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelSizingMode.Fixed">
- <summary>
- The panel's size is controlled by the width.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelSizingMode.Automatic">
- <summary>
- The panel's size is based on its contents.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelSizingMode.Adjustable">
- <summary>
- The panel's base size is controlled by the width but the panel may be
- resized.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.PanelSizingMode.Spring">
- <summary>
- The panel size is based on the remaining size remaining after the other
- visible panes have been sized.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.ResizeStyle">
- <summary>
- Enumeration of resize styles.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.ResizeStyle.None">
- <summary>
- No resizing is allowed.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.ResizeStyle.Immediate">
- <summary>
- Resizing occurs as the mouse is dragged.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.ResizeStyle.Deferred">
- <summary>
- Resizing occurs when the mouse is released.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.KeyState">
- <summary>
- Enumeration of Keys whose state may be monitored.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.KeyState.NumLock">
- <summary>
- Number Lock key
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.KeyState.CapsLock">
- <summary>
- CapsLock key
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.KeyState.ScrollLock">
- <summary>
- Scroll Lock key
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.KeyState.InsertMode">
- <summary>
- Insert key.
- </summary>
- <remarks>
- <p class="note">Note, this is the system wide keyboard state of the Insert key. Some controls maintain (e.g. RichTextBox) maintain their own state of this key.</p>
- </remarks>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.KeyState.Kana">
- <summary>
- IME Kana mode
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.KeyStateDisplayStyle">
- <summary>
- Enumeration of display styles for the KeyState style panels.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.KeyStateDisplayStyle.Dim">
- <summary>
- The panel is displayed using its disabled appearance when the associated key is not toggled.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.KeyStateDisplayStyle.ChangeText">
- <summary>
- The text changes to reflect the state of the key.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.ViewStyle">
- <summary>
- Determines the view style for the control.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.ViewStyle.Default">
- <summary>
- Default. When otherwise unspecified, the default view style is <b>Standard</b>.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.ViewStyle.Office2003">
- <summary>
- Controls will emulate the visual appearance seen in Office2003 applications.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.ViewStyle.VisualStudio2005">
- <summary>
- Controls will emulate the visual appearance seen in Visual Studio 2005.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.ViewStyle.Standard">
- <summary>
- Controls will appear as they did in previous versions.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.ViewStyle.Office2007">
- <summary>
- Controls will appear as they did in previous versions.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager">
- <summary>
- Class for managing the events of an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> object. It maintains an
- enabled flag for each event as well as a nested 'in progress' count.
- </summary>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
- <summary>
- Initializes a new <b>StatusBarEventManager</b>
- </summary>
- <param name="control">Owning UltraStatusBar control</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.InProgress(Infragistics.Win.UltraWinStatusBar.StatusBarEventIds)">
- <summary>
- Indicates whether the event identified by the <paramref name="eventid"/> is in progress.
- </summary>
- <param name="eventid">Identifies the event to check.</param>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.IsEnabled(Infragistics.Win.UltraWinStatusBar.StatusBarEventIds)">
- <summary>
- Indicates whether the event identified by the <paramref name="eventid"/> may be raised.
- </summary>
- <param name="eventid">Identifies the event to check.</param>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/>
- <returns>true if the event is enabled; otherwise, false.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.SetEnabled(Infragistics.Win.UltraWinStatusBar.StatusBarEventIds,System.Boolean)">
- <summary>
- Enables or disables the event identified by the <paramref name="eventid"/>.
- </summary>
- <param name="eventid">One of the <see cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/> indicating which event to update.</param>
- <param name="enabled">True if the event should enabled. False to prevent the event from being raised.</param>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.IsEnabled(Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups)">
- <summary>
- Returns true if all events in the specified group are enabled.
- </summary>
- <param name="group">One of the StatusBarEventGroups which identifies the group to check.</param>
- <returns>True if the event is currently enabled.</returns>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups"/>
- <returns>true if the event group is enabled; otherwise, false.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.SetEnabled(Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups,System.Boolean)">
- <summary>
- Enables or disables all the events associated with the specified group.
- </summary>
- <param name="group">One of the StatusBarEventGroups identifying the group to modify.</param>
- <param name="enabled">The new enabled state of the group of events.</param>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.CanFireEvent(Infragistics.Win.UltraWinStatusBar.StatusBarEventIds)">
- <summary>
- Indicates whether the event identified by the <see cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/> can be fired.
- </summary>
- <param name="eventid">Identifies which event to check.</param>
- <returns>True if the specified event can be fired.</returns>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.StatusBar">
- <summary>
- Returns the owning <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> control
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.AfterEventIndexes">
- <summary>
- Returns a lazily loaded array of indexes for all the 'After' events.
- </summary>
- <value>Array of integer for the StatusBarEventIds representing the 'After' events.</value>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.BeforeEventIndexes">
- <summary>
- Returns a lazily loaded array of indexes for all the 'Before' events.
- </summary>
- <value>Array of integer for the StatusBarEventIds representing the 'Before' events.</value>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds">
- <summary>
- Enumeration of event identifiers for the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> component.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.MouseEnterElement">
- <summary>
- Event id that identifies the MouseEnterElement event
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.MouseLeaveElement">
- <summary>
- Event id that identifies the MouseLeaveElement event
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.BeforeAutoSizePanel">
- <summary>
- Event id that identifies the BeforeAutoSizePanel event
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.AfterAutoSizePanel">
- <summary>
- Event id that identifies the AfterAutoSizePanel event
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.BeforeDisplayCharacterPositionDialog">
- <summary>
- Event id that identifies the BeforeDisplayCharacterPositionDialog event
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.AfterDisplayCharacterPositionDialog">
- <summary>
- Event id that identifies the AfterDisplayCharacterPositionDialog event
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.PanelDoubleClick">
- <summary>
- Event id that identifies the PanelDoubleClick event
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.ButtonClick">
- <summary>
- Event id that identifies the ButtonClick event
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.AfterDragResize">
- <summary>
- Event id that identifies the AfterDragResize event
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.BeforeDragResize">
- <summary>
- Event id that identifies the BeforeDragResize event
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.BeforeDragSizeGrip">
- <summary>
- Event id that identifies the BeforeDragSizeGrip event
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.PanelClick">
- <summary>
- Event id that identifies the PanelClick event
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups">
- <summary>
- Identifies groups of <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> events
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups.AllEvents">
- <summary>
- All events
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups.BeforeEvents">
- <summary>
- Before events
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups.AfterEvents">
- <summary>
- After events
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs">
- <summary>
- Event parameters used for events which pass a single <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelEventArgs.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
- <summary>
- Initializes a new PanelEventArgs with the specified <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
- </summary>
- <param name="panel">A panel object</param>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelEventArgs.Panel">
- <summary>
- <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> instance associated with the event. This property is read-only.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs">
- <summary>
- Event parameters used for a cancelable event which pass a single <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
- <summary>
- Initializes a new CancelablePaneEventArgs with the specified <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
- </summary>
- <param name="panel">A panel object</param>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs.Panel">
- <summary>
- <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> instance associated with the event. This property is read-only.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs">
- <summary>
- Event parameters used for the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelClick"/> and <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelDoubleClick"/> events
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel,System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32)">
- <summary>
- Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs"/>
- </summary>
- <param name="panel">Panel associated with the event</param>
- <param name="button">Indicates which mouse button was released.</param>
- <param name="clicks">Number of times the mouse was pressed</param>
- <param name="x">X coordinate in client coordinates</param>
- <param name="y">Y coordinate in client coordinates</param>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs.Panel">
- <summary>
- Returns the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> associated with the event
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.PanelEventHandler">
- <summary>
- Delegate for handling an event involving an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventHandler">
- <summary>
- Delegate for handling a cancelable event involving an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventHandler">
- <summary>
- Delegate for handling a click event involving an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.KeyStateInfo">
- <summary>
- Represents the settings for a <b>KeyState</b> <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> panel.
- </summary>
- <remarks>
- <p class="body">The <b>KeyStateInfo</b> maintains the information used when rendering a key state style panel. A key
- state style panel indicates the status of certain togglable keys such as the number lock and caps lock keys. The
- <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.Key"/> property indicates which key state is monitored. The <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.DisplayStyle"/> determines if the
- values of the <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OnText"/> and <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OffText"/> are used or if the <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OnText"/> is always used but
- dimmed when the key is not toggled. The <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.Toggled"/> property indicates the current state of the key.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.#ctor">
- <summary>
- Constructor
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.ShouldSerialize">
- <summary>
- Returns whether any of the property values for the <b>KeyStateInfo</b> differ from the default values.
- </summary>
- <returns>True if the object needs to be serialized.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.Reset">
- <summary>
- Resets the properties of the object info to their default values.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.ToString">
- <summary>
- Returns a string representation of the object.
- </summary>
- <returns>A string containing the key and display style.</returns>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.DisplayStyle">
- <summary>
- Returns or sets the display style of the key style panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.Toggled">
- <summary>
- Returns the current toggle state of the key.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.Key">
- <summary>
- Returns or sets the key being whose state is displayed in a KeyState style UltraPanel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OnTextResolved">
- <summary>
- Returns the text that will be displayed for the on state of the current key.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OnText">
- <summary>
- Returns or sets the text to be displayed when the current key state is toggled (on).
- </summary>
- <remarks>
- <p class="note">The default value for the OnText is an empty string. When left as such, the default value with be used instead.</p>
- <p class="body">To determine the string that will be displayed in the panel, use the <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OnTextResolved"/>.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OffText">
- <summary>
- Returns or sets the text to be displayed when the current key state is off.
- </summary>
- <remarks>
- <p class="note">The default value for the OffText is an empty string. When left as such, the default value with be used instead.</p>
- <p class="body">To determine the string that will be displayed in the panel, use the <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OffTextResolved"/>.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OffTextResolved">
- <summary>
- Returns the text that will be displayed for the off state of the current key.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateManager.GetKeyState(Infragistics.Win.UltraWinStatusBar.KeyState)">
- <summary>
- Returns the current state of the specified key.
- </summary>
- <param name="vKey">Key to check the state of.</param>
- <returns>True if the key is toggled (on).</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateManager.OnDispose">
- <summary>
- Invoked when the object must release all resources.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UIElementMargins">
- <summary>
- Stores the margin information for a region.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.#ctor">
- <summary>
- Constructor
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- Constructor
- </summary>
- <param name="left">Left margin</param>
- <param name="top">Top margin</param>
- <param name="right">Right margin</param>
- <param name="bottom">Bottom margin</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Reset">
- <summary>
- Resets the members to their default values.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Clone">
- <summary>
- Returns a clone of this object.
- </summary>
- <returns>A new UIElementMargins object with the same values.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.ToString">
- <summary>
- Returns a string representation of the object.
- </summary>
- <returns>A string containing the key and display style.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Equals(System.Object)">
- <summary>
- Used to determine if the specified object is the same as this instance.
- </summary>
- <param name="obj">Object to compare against.</param>
- <returns>True if the values for the objects are the same.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.GetHashCode">
- <summary>
- Returns the hashcode for the UIElementMargins object.
- </summary>
- <returns>A hash code for the structure.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Addition(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
- <summary>
- Increases the specified rectangle by the margins supplied.
- </summary>
- <param name="margins">Margins to increase by.</param>
- <param name="rect">Rectangle to increase.</param>
- <returns>Increased rectangle.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Addition(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
- <summary>
- Increases the specified rectangle by the margins supplied.
- </summary>
- <param name="margins">Margins to increase by.</param>
- <param name="rect">Rectangle to increase.</param>
- <returns>Increased rectangle.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Subtraction(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
- <summary>
- Reduces the specified rectangle by the margins supplied.
- </summary>
- <param name="margins">Margins to reduce by.</param>
- <param name="rect">Rectangle to reduce</param>
- <returns>Reduced rectangle.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Subtraction(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
- <summary>
- Reduces the specified rectangle by the margins supplied.
- </summary>
- <param name="margins">Margins to reduce by.</param>
- <param name="rect">Rectangle to reduce</param>
- <returns>Reduced rectangle.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Equality(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
- <summary>
- Used to determine if the margin structure and rectangle have the same values.
- </summary>
- <param name="margins">UIElementMargins</param>
- <param name="rect">Rectangle</param>
- <returns>True if the objects have the same values.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Inequality(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
- <summary>
- Used to test that at least one part of the objects differs between the specified items.
- </summary>
- <param name="margins">UIElementMargins</param>
- <param name="rect">Rectangle</param>
- <returns>True if at least one value differs between the two objects.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Equality(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
- <summary>
- Used to determine if the margin structure and rectangle have the same values.
- </summary>
- <param name="margins">UIElementMargins</param>
- <param name="rect">Rectangle</param>
- <returns>True if the objects have the same values.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Inequality(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
- <summary>
- Used to test that at least one part of the objects differs between the specified items.
- </summary>
- <param name="margins">UIElementMargins</param>
- <param name="rect">Rectangle</param>
- <returns>True if at least one value differs between the two objects.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Add(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
- <summary>
- Increases the specified rectangle by the margins supplied.
- </summary>
- <param name="margins">Margins to increase by.</param>
- <param name="rect">Rectangle to increase.</param>
- <returns>Increased rectangle.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Add(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
- <summary>
- Increases the specified rectangle by the margins supplied.
- </summary>
- <param name="margins">Margins to increase by.</param>
- <param name="rect">Rectangle to increase.</param>
- <returns>Increased rectangle.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Subtract(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
- <summary>
- Reduces the specified rectangle by the margins supplied.
- </summary>
- <param name="margins">Margins to reduce by.</param>
- <param name="rect">Rectangle to reduce</param>
- <returns>Reduced rectangle.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Subtract(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
- <summary>
- Reduces the specified rectangle by the margins supplied.
- </summary>
- <param name="margins">Margins to reduce by.</param>
- <param name="rect">Rectangle to reduce</param>
- <returns>Reduced rectangle.</returns>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Left">
- <summary>
- Left margin
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Top">
- <summary>
- Top Margin
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Right">
- <summary>
- Right Margin
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Bottom">
- <summary>
- Bottom Margin
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UIElementMargins.UIElementMarginsTypeConverter">
- <summary>
- UIElementMarginsTypeConverter
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.UIElementMarginsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
- <summary>
- Returns whether this converter can convert the object to the specified type, using the specified context.
- </summary>
- <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
- <param name="destinationType">A System.Type that represents the type you want to convert to.</param>
- <returns>true if this converter can perform the conversion; otherwise, false.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.UIElementMarginsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
- <summary>
- Converts the given value object to the specified type, using the specified
- context and culture information.
- </summary>
- <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
- <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture is assumed.</param>
- <param name="value">The System.Object to convert.</param>
- <param name="destinationType">The System.Type to convert the value parameter to.</param>
- <returns>An System.Object that represents the converted value.</returns>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.MarqueeInfo">
- <summary>
- Represents the settings for a <b>Marquee</b> <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> panel.
- </summary>
- <remarks>
- <p class="body">The <b>MarqueeInfo</b> maintains the information used when rendering a marquee style panel. The
- <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeStyle"/> determines the type of marquee displayed. The <see cref="T:Infragistics.Win.UltraWinStatusBar.Direction"/>, <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeScrollAmount"/>
- and <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Delay"/> are all configurable.</p>
- <p class="body">The <see cref="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Start"/> and <see cref="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Stop"/> methods may be used to programatically control when the
- marquee runs.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
- <summary>
- Initializes a new MarqueeInfo instance
- </summary>
- <param name="parentPanel">The parent panel.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Start">
- <summary>
- Starts the execution of the marquee
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Stop">
- <summary>
- Stops the execution of the marquee
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.OnDispose">
- <summary>
- Invoked when the object is disposed
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.ShouldSerialize">
- <summary>
- Returns whether any of the property values for the <b>MarqueeInfo</b> differ from the default values.
- </summary>
- <returns>True if the object needs to be serialized.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Reset">
- <summary>
- Resets the properties of the object info to their default values.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.ToString">
- <summary>
- Returns a string representation of the object.
- </summary>
- <returns>A string containing the type and direction of the marquee.</returns>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeStyle">
- <summary>
- Determines the type of marquee displayed when the style is set to Marquee.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeDirection">
- <summary>
- Determines the direction of the marquee.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.IsActive">
- <summary>
- Indicates if the marquee is currently active.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeScrollAmount">
- <summary>
- Determines the amount of pixels the marquee will scroll during an animation.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Delay">
- <summary>
- Determines the delay between changes for a marquee or animation
- style panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.CurrentText">
- <summary>
- Returns the current text displayed by the marquee.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement">
- <summary>
- A state button element for representing an mdi child.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.#ctor(System.Boolean,Infragistics.Win.IUIElementImageAndTextProvider,Infragistics.Win.UIElement)">
- <summary>
- Initializes a new MDIButtonUIElement
- </summary>
- <param name="isActive">True if the associated form is active.</param>
- <param name="provider">Class providing the rendering information for the element.</param>
- <param name="parent">Parent UIElement</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.RefreshIcon">
- <summary>
- Releases the previous image if there was one and recreates the image
- based on the form's icon.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.OnCheckStateChange">
- <summary>
- Invoked when the check state of the button changes.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.OnDispose">
- <summary>
- Invoked when the element is being disposed to allow the element to free
- any resources being used.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.OnMouseHover">
- <summary>
- Overrides the OnMouseHover to display a tooltip to the user.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.OnMouseLeave">
- <summary>
- Overrides the OnMouseLeave method
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.Form">
- <summary>
- Gets or sets the associated form.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.FormImage">
- <summary>
- Returns the bitmap representing the form. The image was obtained
- from the form's icon.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.ButtonStyle">
- <summary>
- Returns the style of button displayed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object associated with the element.
- </summary>
- <remarks>
- <p class="note"><b>Note</b> Derived elements that plan to return an accessible object must override
- the <see cref="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.IsAccessibleElement"/> member.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.Enabled">
- <summary>
- Gets/sets whether the element is enabled.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.UIRole">
- <summary>
- Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.CanClickButton">
- <summary>
- Returns whether the checked state of the element can be changed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.WantsMouseHoverNotification">
- <summary>
- Overriden. Indicates that the element wants to receive mouse hover notifications.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.MdiButtonAccessibleObject">
- <summary>
- Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.MdiButtonAccessibleObject"/>
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.MdiButtonAccessibleObject.#ctor(Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement)">
- <summary>
- Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.MdiButtonAccessibleObject"/>
- </summary>
- <param name="element">Associated element</param>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.MdiButtonAccessibleObject.Name">
- <summary>
- Returns the name of the accessible object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel">
- <summary>
- Represents a single section of an <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusBar"/> control.
- </summary>
- <remarks>
- <p class="body">The <b>UltraStatusPanel</b> supports 13 custom styles representing the most
- common uses of a StatusBar.</p>
- <p class="body">Many of the properties apply to all panel styles but some are only used when
- the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> is set to specific values. For example, the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/> is only
- used by a <b>CharacterPosition</b> style panel and determines the information displayed as the selection changes in
- an associated <see cref="T:System.Windows.Forms.RichTextBox"/> control (associated via the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/> property).</p>
- <list type="table">
- <listheader><term>Panel Styles:</term></listheader>
- <item><term>AutoStatusText</term><description>Displays the value of the StatusBarText extender property of the control under the mouse.</description></item>
- <item><term>Button</term><description>A standard push button element with image and text</description></item>
- <item><term>CharacterPosition</term><description>Displays the current line and character number of a <b>RichTextBox</b> control.</description></item>
- <item><term>CursorPosition</term><description>Displays the position of the mouse within the associated <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/></description></item>
- <item><term>ControlContainer</term><description>Sizes and positions the associated <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/> based on the size and position of the panel</description></item>
- <item><term>Date</term><description>The current date</description></item>
- <item><term>KeyState</term><description>The state of a specific key (e.g. NumLock)</description></item>
- <item><term>Marquee</term><description>Animated (scrolling, sliding, etc.) text and image</description></item>
- <item><term>MDIList</term><description>A state button for each MDIChild form</description></item>
- <item><term>Progress</term><description>A progress bar to convey the percentage of a task</description></item>
- <item><term>StateButton</term><description>A standard state button with image and text</description></item>
- <item><term>Text</term><description>Displays image and text</description></item>
- <item><term>Time</term><description>Displays the current time</description></item>
- </list>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.#ctor">
- <summary>
- Constructor
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.InitControl(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
- <summary>
- Initializes the backwards reference to the owning UltraStatusBar control.
- </summary>
- <param name="owningControl">Owning UltraStatusBar control</param>
- <exception cref="T:System.NotSupportedException">The UltraStatusPanel's owning control has already been initialized and the specified owningControl is a different control.</exception>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
- <summary>
- Listens for property change notifications of the object's sub objects.
- </summary>
- <param name="propChangeInfo">Information regarding the property change.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.OnDispose">
- <summary>
- Handles disposing of the control's resources when the control is disposed.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DoDefaultAction">
- <summary>
- Used to perform the default action for the panel.
- </summary>
- <remarks>
- <p class="body">This method is invoked from the associated accessible object when the <b>DoDefaultAction</b> of the accessible object is invoked.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResolveAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Resolves the appearance for the panel.
- </summary>
- <param name="appearance">Structure to update with the appearance info.</param>
- <param name="requestedProps">Appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ToString">
- <summary>
- Returns a string representation of the object.
- </summary>
- <returns>The panel <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> and <see cref="P:Infragistics.Shared.KeyedSubObjectBase.Key"/> are included in the output.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShowCaretPositionDialog">
- <summary>
- Used to display the <see cref="T:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog"/>
- </summary>
- <remarks>
- <p class="body">The <b>CaretPositionDialog</b> may be displayed for a
- CharacterPosition style panel whose <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/>
- is a <see cref="T:System.Windows.Forms.RichTextBox"/>. The dialog is similar to the
- one displayed by Visual Studio .Net when you double click on the character position
- status panel.</p>
- </remarks>
- <returns>False if the <b>Control</b> property is not a RichTextBox or if the panel is not
- a CharacterPosition style pane. Otherwise true if the dialog was displayed.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CreateAccessibilityInstance">
- <summary>
- Creates a new accessibility object for this panel.
- </summary>
- <returns>The <see cref="T:System.Windows.Forms.AccessibleObject"/> for this panel.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Appearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Appearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Appearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Appearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeAppearance"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Appearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeCharacterPositionFormat">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetCharacterPositionFormat"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetCharacterPositionFormat">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeCharacterPositionFormat"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeProgressBarInfo">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetProgressBarInfo"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetProgressBarInfo">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeProgressBarInfo"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeKeyStateInfo">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetKeyStateInfo"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetKeyStateInfo">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeKeyStateInfo"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializePadding">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetPadding"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetPadding">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializePadding"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeMarqueeInfo">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetMarqueeInfo"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetMarqueeInfo">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeMarqueeInfo"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusBar">
- <summary>
- Returns the owning UltraStatusBar control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UIElement">
- <summary>
- Returns the <see cref="T:Infragistics.Win.UIElement"/> used to render the panel.
- </summary>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelUIElement"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Appearance">
- <summary>
- Returns or sets the appearance for the panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.HasAppearance">
- <summary>
- Returns true if an appearance object has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Width">
- <summary>
- Returns or sets the width of the panel.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.SizingMode"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResizeStyle"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.WidthResolved"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.WidthResolved">
- <summary>
- Return the current width of the panel.
- </summary>
- <returns>The current width of the panel.</returns>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Width"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth">
- <summary>
- Returns the width required for an autosized panel.
- </summary>
- <remarks>
- <p class="note">The size for some panel styles (i.e. Progress, ControlContainer and MDIList) cannot be calculated.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Width"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.WidthResolved"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MinWidth">
- <summary>
- Returns or sets the minimum width for the panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ToolTipText">
- <summary>
- Returns or sets the tooltip for the panel.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShowToolTips"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style">
- <summary>
- Returns or sets the style of the panel.
- </summary>
- <remarks>
- <list type="table">
- <listheader><term>Panel Styles:</term></listheader>
- <item><term>AutoStatusText</term><description>Displays the value of the StatusBarText extender property of the control under the mouse.</description></item>
- <item><term>Button</term><description>A standard push button element with image and text</description></item>
- <item><term>CharacterPosition</term><description>Displays the current line and character number of a <b>RichTextBox</b> control.</description></item>
- <item><term>CursorPosition</term><description>Displays the position of the mouse within the associated <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/></description></item>
- <item><term>ControlContainer</term><description>Sizes and positions the associated <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/> based on the size and position of the panel</description></item>
- <item><term>Date</term><description>The current date</description></item>
- <item><term>KeyState</term><description>The state of a specific key (e.g. NumLock)</description></item>
- <item><term>Marquee</term><description>Animated (scrolling, sliding, etc.) text and image</description></item>
- <item><term>MDIList</term><description>A state button for each MDIChild form</description></item>
- <item><term>Progress</term><description>A progress bar to convey the percentage of a task</description></item>
- <item><term>StateButton</term><description>A standard state button with image and text</description></item>
- <item><term>Text</term><description>Displays image and text</description></item>
- <item><term>Time</term><description>Displays the current time</description></item>
- </list>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.BorderStyle">
- <summary>
- Returns or sets the border style for a panel.
- </summary>
- <remarks>
- <p class="note">The border style is not used for Button and StateButton style panels.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.BorderStyleResolved"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.BorderStyleResolved">
- <summary>
- Returns the fully resolved border style currently used for the panel.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.BorderStyle"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Index">
- <summary>
- Determines the index of the object in the collection.
- </summary>
- <remarks>
- <p class="body">The <b>Index</b> property returns the position of the panel
- within the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/> collection. Panels are displayed in
- order based on their position within the collection.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control">
- <summary>
- Returns or sets the control associated with the panel.
- </summary>
- <remarks>
- <p class="body">The <b>Control</b> property determines the control associated with the panel. This
- property is used in different ways depending upon the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>.</p>
- <list type="table">
- <listheader><term>Panel Style:</term></listheader>
- <item><term>CursorPosition</term><description>Uses the control's MouseMove to display the position of the cursor within the control's bounds.</description></item>
- <item><term>CharacterPosition</term><description>Requires a RichTextBox control to display the line and character number within the RichTextBox</description></item>
- <item><term>ContainerControl</term><description>Control to size and position</description></item>
- </list>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Text">
- <summary>
- Returns or sets the text associated with the panel.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DisplayText"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DisplayText">
- <summary>
- Returns the formatted text displayed.
- </summary>
- <remarks>
- <p class="body">For some panel styles, the information displayed by a panel is calculated or changed based on other values.
- The <b>DisplayText</b> returns the text that is currently displayed by the panel taking all formatting into account.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Text"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DateTimeFormat"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CursorPositionFormat"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Enabled">
- <summary>
- Returns or sets if the panel is enabled.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Visible">
- <summary>
- Returns or sets if the panel is visible.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.SizingMode">
- <summary>
- Returns or sets how the panel can be sized.
- </summary>
- <remarks>
- <p class="body">A panel supports 4 sizing modes.</p>
- <list type="table">
- <listheader><term>Sizing Modes</term></listheader>
- <item><term>Automatic</term><description>The width is based on the contents (<see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>)</description></item>
- <item><term>Adjustable</term><description>The <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Width"/> determines the current size but the panel may be resized by the end user by dragging the right most edge of the panel</description></item>
- <item><term>Fixed</term><description>The <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Width"/> property is used</description></item>
- <item><term>Spring</term><description>Any area available after allocating space to each visible panel is distributed amongst all the <b>Spring</b> size mode panels.</description></item>
- </list>
- <p class="note">Automatic is invalid for some panel styles (i.e. Progress, ControlContainer and MDIList) cannot be calculated.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MinWidth"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResizeStyle"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat">
- <summary>
- Returns or sets the format for the CharacterPosition type panel.
- </summary>
- <remarks>
- <p class="body">The label may include special characters to insert the different values.</p>
- <p class="body">e.g.</p>
- <list type="table">
- <item><term>[Line]</term><description>The current line number</description></item>
- <item><term>[LineCount]</term><description>The total number of lines</description></item>
- <item><term>[Char]</term><description>The character number within the current line</description></item>
- <item><term>[CharCount]</term><description>The total number of characters up to the position of the caret</description></item>
- </list>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DisplayText"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CursorPositionFormat">
- <summary>
- Determines the format for the MousePosition type panel.
- </summary>
- <remarks>
- <p class="body">The label may include special characters to insert the different values.</p>
- <p class="body">e.g.</p>
- <list type="table">
- <item><term>[X]</term><description>The current X coordinate</description></item>
- <item><term>[Y]</term><description>The current Y coordinate</description></item>
- <item><term>[Width]</term><description>The width of the associated control</description></item>
- <item><term>[Height]</term><description>The height of the associated control</description></item>
- </list>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DisplayText"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DateTimeFormat">
- <summary>
- Returns or sets the format used to display the current <see cref="T:System.DateTime"/> for a Date or Time style panel.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DisplayText"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo">
- <summary>
- Property settings for a progress bar style panel.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo">
- <summary>
- Property settings for a KeyState style panel.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding">
- <summary>
- Returns or sets the amount of padding between the panel contents and its border
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Checked">
- <summary>
- Returns or sets whether a StateButton style panel is checked.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo">
- <summary>
- Property settings for a marquee style panel.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.WrapText">
- <summary>
- Gets/sets whether text in the non-autosized panels may wrap across lines.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.WrapText"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.SizingMode"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.FormatInfo">
- <summary>
- Gets or sets the culture specific information used to determine how values are formatted.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AccessibilityObject">
- <summary>
- Returns the <see cref="T:System.Windows.Forms.AccessibleObject"/> for this panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AccessibleDescription">
- <summary>
- Returns or sets the description of the panel displayed by accessibility clients.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AccessibleName">
- <summary>
- Returns or sets the name of the panel displayed by accessibility clients.
- </summary>
- <remarks>
- <p class="body">By default, the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Text"/> of the panel is used as the name.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DefaultAction">
- <summary>
- Returns the accessible action that occurs when the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DoDefaultAction"/> method is invoked via an accessibility client.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UIRole">
- <summary>
- Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this panel.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelTypeConverter">
- <summary>
- UltraStatusPanelTypeConverter.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
- <summary>
- Returns whether this converter can convert the object to the specified type, using the specified context.
- </summary>
- <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
- <param name="destinationType">A System.Type that represents the type you want to convert to.</param>
- <returns>true if this converter can perform the conversion; otherwise, false.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
- <summary>
- Converts the given value object to the specified type, using the specified
- context and culture information.
- </summary>
- <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
- <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture is assumed.</param>
- <param name="value">The System.Object to convert.</param>
- <param name="destinationType">The System.Type to convert the value parameter to.</param>
- <returns>An System.Object that represents the converted value.</returns>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject">
- <summary>
- Accessible object representing a <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject"/>
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
- <summary>
- Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject"/>
- </summary>
- <param name="panel">Associated panel</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.GetMarshallingControl">
- <summary>
- Returns the control used to synchronize accessibility calls.
- </summary>
- <returns>The <see cref="T:System.Windows.Forms.Control"/> used to synchronize accessibility calls.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.GetChild(System.Int32)">
- <summary>
- Retrieves the accessible child corresponding to the specified index
- </summary>
- <param name="index">The zero-based index of the accessible child</param>
- <returns>An AccessibleObject that represents the accessible child corresponding to the specified index</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.GetChildCount">
- <summary>
- Retrieves the number of children belonging to an accessible object.
- </summary>
- <returns>The number of children belonging to an accessible object.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.HitTest(System.Int32,System.Int32)">
- <summary>
- Retrieves the child object at the specified screen coordinates.
- </summary>
- <param name="x">The horizontal screen coordinate</param>
- <param name="y">The vertical screen coordinate.</param>
- <returns>The child object at the specified screen coordinates.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)">
- <summary>
- Navigates to another accessible object
- </summary>
- <param name="navdir">One of the <b>AccessibleNavigation</b> values</param>
- <returns>An <b>AccessibleObject</b> that represents one of the <b>AccessibleNavigation</b> values</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.DoDefaultAction">
- <summary>
- Performs the default action associated with this accessible object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.DefaultAction">
- <summary>
- Gets a string that describes the default action of the object. Not all objects have a default action.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Bounds">
- <summary>
- Gets the location and size of the accessible object
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.KeyboardShortcut">
- <summary>
- Gets the shortcut key or access key for the accessible object
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Name">
- <summary>
- Returns the name of the accessible object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Parent">
- <summary>
- Gets the parent of an accessible object
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Role">
- <summary>
- Returns the role of the accessible object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.State">
- <summary>
- Returns the state of the accessible object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Value">
- <summary>
- Gets or sets the value of an accessible object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement">
- <summary>
- Button uielement for a Button or StateButton style panel
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.#ctor(Infragistics.Win.IUIElementImageAndTextProvider,Infragistics.Win.UIElement)">
- <summary>
- Initializes a new <b>PanelButtonUIElement</b>
- </summary>
- <param name="provider">Class implementing the IUIElementImageAndTextProvider interface</param>
- <param name="parent">Parent uielement</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.OnClick">
- <summary>
- Invoked when the button has been clicked.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.OnCheckStateChange">
- <summary>
- Invoked when the checked state of the button changes other than when it is initialized.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.InitializeDefaultAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Invoked during the <see cref="M:Infragistics.Win.ButtonUIElementBase.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)"/> to resolve any remaining appearance values
- after the style specific appearance information has been initialized.
- </summary>
- <param name="appearanceData">AppearanceData structure to update</param>
- <param name="requestedProps">Appearance properties to resolve</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the button.
- </summary>
- <param name="appearance">The appearance structure to initialize</param>
- <param name="requestedProps">The properties that are needed</param>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.Panel">
- <summary>
- Returns the associated UltraStatusPanel
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.UIRole">
- <summary>
- Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.Design.PanelControlConverter">
- <summary>
- Typeconverter used to determine which controls may be contained by a <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.Design.PanelControlConverter.#ctor(System.Type)">
- <summary>
- Initializes a new <b>PanelControlConverter</b>
- </summary>
- <param name="type">Type</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.Design.PanelControlConverter.IsValueAllowed(System.ComponentModel.ITypeDescriptorContext,System.Object)">
- <summary>
- Returns a value indicating whether a particular value can be added to the standard values collection.
- </summary>
- <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides an additional context.</param>
- <param name="value">The value to check.</param>
- <returns>true if the value is allowed and can be added to the standard values collection; false if the value cannot be added to the standard values collection.</returns>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection">
- <summary>
- Represents a collection of <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> objects.
- </summary>
- <remarks>
- <p class="note">When the panels are displayed based on the order of the items
- within the collection.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Index"/>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
- <summary>
- Initializes a new UltraStatusPanels collection.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
- <summary>
- Passes along property change notifications from the items in the colleciton.
- </summary>
- <param name="propChangeInfo">Information regarding the property change.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.CreateArray">
- <summary>
- Virtual method used by the All 'get' method to
- create the array it returns.
- </summary>
- <returns>The newly created object array</returns>
- <remarks>This is normally overridden in a derived class to allocate a type safe array.</remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add">
- <summary>
- Adds a new UltraStatusPanel to the collection.
- </summary>
- <returns>New panel object</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(System.String)">
- <summary>
- Adds a new UltraStatusPanel to the collection.
- </summary>
- <param name="key">Key for the panel.</param>
- <returns>New panel object</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(Infragistics.Win.UltraWinStatusBar.PanelStyle)">
- <summary>
- Adds a new UltraStatusPanel to the collection.
- </summary>
- <param name="style">Style of the panel.</param>
- <returns>New panel object</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(System.String,System.String)">
- <summary>
- Adds a new UltraStatusPanel to the collection.
- </summary>
- <param name="key">Key for the panel.</param>
- <param name="text">Text for the panel.</param>
- <returns>New panel object</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(System.String,Infragistics.Win.UltraWinStatusBar.PanelStyle)">
- <summary>
- Adds a new UltraStatusPanel to the collection.
- </summary>
- <param name="key">Key for the panel.</param>
- <param name="style">Style of the panel.</param>
- <returns>New panel object</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(System.String,System.String,Infragistics.Win.UltraWinStatusBar.PanelStyle)">
- <summary>
- Adds a new UltraStatusPanel to the collection.
- </summary>
- <param name="key">Key for the panel.</param>
- <param name="text">Text of the panel.</param>
- <param name="style">Style of the panel.</param>
- <returns>New panel object</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(System.Object)">
- <summary>
- Adds the specified panel object to the collection.
- </summary>
- <param name="value">Panel object to add.</param>
- <returns>Index of the item in the collection.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.AddHelper(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel,System.Boolean)">
- <summary>
- Internal method for adding a new panel to the collection.
- </summary>
- <param name="panel">Panel object to add.</param>
- <param name="notify">True if a notification should be sent when the object is added to the collection.</param>
- <returns>Index of the item in the collection.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.AddHelper(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel,System.Boolean,System.Int32)">
- <summary>
- Internal method for adding a new panel to the collection.
- </summary>
- <param name="panel">Panel object to add.</param>
- <param name="notify">True if a notification should be sent when the object is added to the collection.</param>
- <param name="newIndex">New index of the item to insert.</param>
- <returns>Index of the item in the collection.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Insert(System.Int32,Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
- <summary>
- Inserts the specified <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> at the specified index.
- </summary>
- <param name="index">Index at which to insert the panel</param>
- <param name="panel">Panel to insert into the collection</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Clear">
- <summary>
- Clears the collection.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Remove(System.Object)">
- <summary>
- Removes the specified object from the collection.
- </summary>
- <param name="obj">Object to remove</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Remove(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
- <summary>
- Removes the specified <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> from the collection.
- </summary>
- <param name="panel">Panel to remove</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.RemoveAt(System.Int32)">
- <summary>
- Removes the item at the specified index.
- </summary>
- <param name="index">Index of the item to remove.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
- <summary>
- Inserts the object at the specified index.
- </summary>
- <param name="index">Index at which to insert the item.</param>
- <param name="obj">Object to insert.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.AddRange(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel[])">
- <summary>
- Adds multiple panel objects to the collection.
- </summary>
- <param name="panels">Array of panel objects to add.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.GetEnumerator">
- <summary>
- Returns the type-safe enumerator for iterating through the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> objects in the collection.
- </summary>
- <returns>A type safe enumerator for iterating through the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>objects in the collection.</returns>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelsEnumerator"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.System#Collections#IList#Contains(System.Object)">
- <summary>
- Represents a collection of <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> objects.
- </summary>
- <remarks>
- <p class="note">When the panels are displayed based on the order of the items
- within the collection.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Index"/>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.All">
- <summary>
- The collection as an array of objects
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.InitialCapacity">
- <summary>
- Returns the initial capacity of the collection.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.IsReadOnly">
- <summary>
- Returns whether the collection may be modified.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.System#Collections#IList#IsFixedSize">
- <summary>
- Indicates if the collection is a fixed size collection.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.System#Collections#IList#Item(System.Int32)">
- <summary>
- Gets/sets the object at the specified index.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Item(System.Int32)">
- <summary>
- Returns the panel object at the specified index.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Item(System.String)">
- <summary>
- Returns the panel object with the specified key.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.PanelsEnumerator">
- <summary>
- Type-specific enumerator class for enumerating over the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> objects of the
- <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection"/>.
- </summary>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection"/>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelsEnumerator.Current">
- <summary>
- Returns the current <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> object in the enumerator.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.Design.PanelsCollectionEditor">
- <summary>
- UITypeEditor for the UltraStatusPanelsCollection
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.Design.PanelsCollectionEditor.#ctor(System.Type)">
- <summary>
- Initializes a new PanelsCollectionEditor for the specified type.
- </summary>
- <param name="type">The type of the collection for this editor to edit.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.Design.PanelsCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
- <summary>
- Edits the value of the specified object using the editor style indicated by <b>GetEditStyle</b>
- </summary>
- <param name="context">ITypeDescriptorContext</param>
- <param name="provider">IServiceProvider</param>
- <param name="value">Object being edited</param>
- <returns>Edited value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.Design.PanelsCollectionEditor.CreateCollectionForm">
- <summary>
- Invoked when a form for the CollectionEditor needs to be created.
- </summary>
- <returns>A new instance of a CollectionForm</returns>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement">
- <summary>
- UIElement for the splitter bar between panels.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.#ctor(Infragistics.Win.UIElement,Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
- <summary>
- Constructor
- </summary>
- <param name="parent">Parent element</param>
- <param name="panel">Associated panel</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.Initialize(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
- <summary>
- Initializes the splitter element.
- </summary>
- <param name="panel">Associated UltraStatusPanel</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.GetAdjustmentRange(System.Drawing.Point,Infragistics.Win.UIElementAdjustmentRangeParams@)">
- <summary>
- Returns the range limits for adjusting the element in either or both
- dimensions. It also returns the initial rects for the vertical and horizontal
- bars that will need to be inverted during the mouse drag operation.
- </summary>
- <param name="point">The point where the mouse is in client coordinates</param>
- <param name="range">Returned limits</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.ApplyAdjustment(System.Drawing.Point)">
- <summary>
- Called after a move/resize operation.
- </summary>
- <param name="delta">A Point struct which describes the amount by which this <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement"/> has been resized.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.GetAdjustableCursor(System.Drawing.Point)">
- <summary>
- The cursor to use over the adjustable area of the element
- </summary>
- <param name="point">The point that should be used to determine if the area is adjustable.</param>
- <returns>The cursor that should be used to represent an adjustable region.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.OnNewDeltaX(System.Int32)">
- <summary>
- Called when the the X delta has changed.
- </summary>
- <param name="newDeltaX">The change in direction along the x-axis.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.OnElementAdjustmentStart(System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- Called when a mousedown is received and a resize operation is started.
- </summary>
- <param name="isUpDownAdjustment">Specifies whether we're adjusting the element vertically.</param>
- <param name="initialUpDownAdjustmentPointInBottomBorder">Specifies whether we've started the adjustment from the bottom border.</param>
- <param name="isLeftRightAdjustment">Specifies whether we're adjusting the element horizontally.</param>
- <param name="initialLeftRightAdjustmentPointInRightBorder">Specifies whether we've started the adjustment from the right border.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the splitter element.
- </summary>
- <param name="appearance">The appearance structure to initialize</param>
- <param name="requestedProps">The properties that are needed</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Renders the themed splitter area.
- </summary>
- <param name="drawParams">UIElementDrawParams</param>
- <returns>True if the themed element could be rendered.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.OnDoubleClick(System.Boolean)">
- <summary>
- Responds to double click to autosize the panel based on its contents.
- </summary>
- <param name="adjustableArea">True if left clicked over adjustable area of element.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Overriden. Prevents the splitter bar from rendering its own background.
- </summary>
- <param name="drawParams">UIElementDrawParams</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.CanStartAdjustment(System.Windows.Forms.MouseEventArgs)">
- <summary>
- Invoked when the mouse is pressed down on the adjustable area
- before an adjustment begins.
- </summary>
- <param name="e">Mouse event args from the MouseDown</param>
- <returns>True if an adjustment can be started</returns>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.BorderStyle">
- <summary>
- The style of borders to draw around the splitter.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.Panel">
- <summary>
- Returns the associated UltraStatusPanel
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.DrawAdjustmentBarWhileSizing">
- <summary>
- True if Adjustment Bar should be drawn while sizing.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.UIRole">
- <summary>
- Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.PanelUIElement">
- <summary>
- PanelUIElement
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.#ctor(Infragistics.Win.UIElement,Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
- <summary>
- Constructor
- </summary>
- <param name="parent">Parent element</param>
- <param name="panel">UltraStatusPanel associated with the element.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.Initialize(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
- <summary>
- Initializes the primary context of the element with the specified panel.
- </summary>
- <param name="panel">UltraStatusPanel associated with the uielement</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Renders the themed size grip.
- </summary>
- <param name="drawParams">UIElementDrawParams</param>
- <returns>True if the themed element could be rendered.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the panel.
- </summary>
- <param name="appearance">The appearance structure to initialize</param>
- <param name="requestedProps">The properties that are needed</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.PositionChildElements">
- <summary>
- Handles positioning of the appropriate element based on the
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnMouseHover">
- <summary>
- Overrides the OnMouseHover to display a tooltip to the user.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnMouseLeave">
- <summary>
- Overrides the OnMouseLeave method
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnDoubleClick(System.Boolean)">
- <summary>
- Overriden. Passes along notification about double clicking on a panel.
- </summary>
- <param name="adjustableArea">True if the double click occured in the adjustable area.</param>
- <remarks>
- <p body="class">When double clicking on the adjustable area of a panel that whose style is adjustable, the panel's size will be set to the calculated autosize for that panel. Otherwise, the UltraStatusBar control's PanelDoubleClick event is invoked.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.CanStartAdjustment(System.Windows.Forms.MouseEventArgs)">
- <summary>
- Invoked when the mouse is pressed down on the adjustable area
- before an adjustment begins.
- </summary>
- <param name="e">Mouse event args from the MouseDown</param>
- <returns>True if an adjustment can be started</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.GetAdjustmentRange(System.Drawing.Point,Infragistics.Win.UIElementAdjustmentRangeParams@)">
- <summary>
- Returns the range limits for adjusting the element in either or both
- dimensions. It also returns the initial rects for the vertical and horizontal
- bars that will need to be inverted during the mouse drag operation.
- </summary>
- <param name="point">The point where the mouse is in client coordinates</param>
- <param name="range">Returned limits</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.ApplyAdjustment(System.Drawing.Point)">
- <summary>
- Called after a move/resize operation.
- </summary>
- <param name="delta">A Point struct which describes the amount by which this <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelUIElement"/> has been resized.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.GetAdjustableCursor(System.Drawing.Point)">
- <summary>
- The cursor to use over the adjustable area of the element
- </summary>
- <param name="point">The point that should be used to determine if the area is adjustable.</param>
- <returns>The cursor that should be used to represent an adjustable region.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnNewDeltaX(System.Int32)">
- <summary>
- Called when the the X delta has changed.
- </summary>
- <param name="newDeltaX">The change in direction along the x-axis.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnElementAdjustmentStart(System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- Called when a mousedown is received and a resize operation is started.
- </summary>
- <param name="isUpDownAdjustment">Specifies whether we're adjusting the element vertically.</param>
- <param name="initialUpDownAdjustmentPointInBottomBorder">Specifies whether we've started the adjustment from the bottom border.</param>
- <param name="isLeftRightAdjustment">Specifies whether we're adjusting the element horizontally.</param>
- <param name="initialLeftRightAdjustmentPointInRightBorder">Specifies whether we've started the adjustment from the right border.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnMouseDown(System.Windows.Forms.MouseEventArgs,System.Boolean,Infragistics.Win.UIElement@)">
- <summary>
- Invoked when the mouse is pressed down on the element.
- </summary>
- <param name="e">Mouse event args</param>
- <param name="adjustableArea">True if the mouse is over an adjustable area</param>
- <param name="captureMouseForElement">By Ref. Element that should capture the mouse.</param>
- <returns>True to prevent further processing of the message</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnClick">
- <summary>
- Invoked when the mouse is clicked on the panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.Panel">
- <summary>
- Returns the associated UltraStatusPanel
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.BorderStyle">
- <summary>
- Returns the border style for the panel element.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.WantsMouseHoverNotification">
- <summary>
- Overriden. Indicates that the element wants to receive mouse hover notifications.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.ClipChildren">
- <summary>
- Overriden. The child elements must be clipped if the image
- element is larger than the panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.Enabled">
- <summary>
- Gets/sets whether the element is enabled.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object associated with the element.
- </summary>
- <remarks>
- <p class="note"><b>Note</b> Derived elements that plan to return an accessible object must override
- the <see cref="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.IsAccessibleElement"/> member.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.UIRole">
- <summary>
- Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.Adjustable">
- <summary>
- Indicates if the element may be resized or adjusted using the mouse.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.DrawAdjustmentBarWhileSizing">
- <summary>
- True if Adjustment Bar should be drawn while sizing.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo">
- <summary>
- Represents the settings for a <b>ProgressBar</b> <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> panel.
- </summary>
- <remarks>
- <p class="body">The <b>ProgressBarInfo</b> maintains the information used when rendering a progress bar style panel. The
- <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Minimum"/> and <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Maximum"/> values determine the range and the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Value"/> is used to determine
- the percentage of the progress bar that should be displayed filled. The <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.FillAppearance"/> is used to determine the
- appearance of the filled area of the progress bar.</p>
- <p class="body">The <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Label"/> may be hidden using the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ShowLabel"/> property. The <b>Label</b> property
- supports a number of replacable values. For a complete list, see the <see cref="P:Infragistics.Win.UltraWinProgressBar.UltraProgressBar.Text"/> property.</p>
- <p class="note">If the <see cref="P:Infragistics.Win.UltraControlBase.SupportThemes"/> is set to true and the operating supports XP themes and
- themes are enabled, the progress bar will be rendered using the system themes. When rendering using the system themes, the
- appearance properties will not affect the appearance of the background of the progress bar.</p>
- <p class="node">The alignment and font properties of the <b>FillAppearance</b> are ignored since the values
- must match those of the <b>Appearance</b>. To change these values, set the corresponding properties on the
- <b>Appearance</b>.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.#ctor">
- <summary>
- Constructor
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ShouldSerializeAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Appearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Appearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ResetAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ResetAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Appearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Appearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ShouldSerializeAppearance"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Appearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ShouldSerializeFillAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.FillAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.FillAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ResetFillAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ResetFillAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.FillAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.FillAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ShouldSerializeFillAppearance"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.FillAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.InitAppearances(Infragistics.Win.AppearancesCollection)">
- <summary>
- Initialize the class with a reference to the owning control's appearances collection.
- </summary>
- <param name="appearances">Appearances collection</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.OnDispose">
- <summary>
- Handles disposing of the control's resources when the control is disposed.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
- <summary>
- Listens for property change notifications of the object's sub objects.
- </summary>
- <param name="propChangeInfo">Information regarding the property change.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ShouldSerialize">
- <summary>
- Returns whether any of the property values for the <b>ProgressBarInfo</b> differ from the default values.
- </summary>
- <returns>True if the object needs to be serialized.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Reset">
- <summary>
- Resets the properties of the progress bar info to their default values.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ToString">
- <summary>
- Returns a string representation of the object.
- </summary>
- <returns>A string containing the style, minimum and maximum.</returns>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Minimum">
- <summary>
- Determines the minimum value for the progress bar.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Maximum">
- <summary>
- Determines the maximum value for the progress bar.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Appearance">
- <summary>
- Determines the appearance for the unfill area of the progress bar.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.HasAppearance">
- <summary>
- Indicates if there is an appearance set for the fill.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.FillAppearance">
- <summary>
- Determines the filled appearance for the progress bar style panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.HasFillAppearance">
- <summary>
- Indicates if there is an appearance set for the fill.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Value">
- <summary>
- Determines the value for the progress bar panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Style">
- <summary>
- Determines the style of the progress bar panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Label">
- <summary>
- Determines the label displayed on the progress bar.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.PercentFormat">
- <summary>
- Determines the format for the percent when displaying a formatted percent in the label.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ShowLabel">
- <summary>
- Gets/sets whether the label for the progress bar is visible.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.SegmentWidth">
- <summary>
- Gets/sets the width of the segments in a Segmented style progress bar.
- </summary>
- <remarks>
- When set to UltraProgressBar.DefaultSegmentWidth (-1), the default segment width is used. The default
- segment width is equal to 2/3 the size relative to the orientation. e.g. The width of a progress bar segment
- in a horizontal progress bar is approximately 2/3 the height of the control.
- </remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ComponentRole">
- <summary>
- Returns or sets the associated component role.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Infragistics#Win#UltraWinProgressBar#IProgressBarInfo#Orientation">
- <summary>
- Orientation of the progress bar.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Infragistics#Win#UltraWinProgressBar#IProgressBarInfo#BorderStyle">
- <summary>
- BorderStyle of the progress bar.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Infragistics#Win#UltraWinProgressBar#IProgressBarInfo#UIRole">
- <summary>
- Returns the UIRole for the main area of the progress bar.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Infragistics#Win#UltraWinProgressBar#IProgressBarInfo#UIRoleFillArea">
- <summary>
- Returns the UIRole for the fill area of the progress bar.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Infragistics#Win#UltraWinProgressBar#IProgressBarInfo#ResolutionOrder">
- <summary>
- Returns the resolution order to use when resolving the appearance.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.Resources">
- <summary>
- Exposes a <see cref="T:Infragistics.Shared.ResourceCustomizer"/> instance for this assembly.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.Resources.Customizer"/>
- <seealso cref="T:Infragistics.Shared.ResourceCustomizer"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.Resources.GetString(System.String,System.Object[])">
- <summary>
- Returns the resource string using the specified name and default culture.
- </summary>
- <param name="name">Name of the string resource to return.</param>
- <param name="args">Arguments supplied to the string.Format method when formatting the string.</param>
- <returns>The resource string using the specified resource name and default culture.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.Resources.GetString(System.String)">
- <summary>
- Returns the resource string using the specified resource name and default culture. The string is then formatted using the arguments specified.
- </summary>
- <param name="name">Name of the string resource to return.</param>
- <returns>The resource string using the specified resource name and default culture.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.Resources.GetObject(System.String)">
- <summary>
- Returns the resource object using the specified name.
- </summary>
- <param name="name">Name of the resource item</param>
- <returns>An object containing the specified resource</returns>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.Resources.Customizer">
- <summary>
- Returns the <see cref="T:Infragistics.Shared.ResourceCustomizer"/> for this assembly.
- </summary>
- <seealso cref="T:Infragistics.Shared.ResourceCustomizer"/>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement">
- <summary>
- A UIElement class for displaying a windows size grip.
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.DefaultWidth">
- <summary>
- Default width of a windows size grip.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- Initializes a new SizeGripUIElement.
- </summary>
- <param name="parent">Parent UIElement</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Renders the themed size grip.
- </summary>
- <param name="drawParams">UIElementDrawParams</param>
- <returns>True if the themed element could be rendered.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.DrawForeground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Renders the size grip.
- </summary>
- <param name="drawParams">UIElementDrawParams</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.OnMouseDown(System.Windows.Forms.MouseEventArgs,System.Boolean,Infragistics.Win.UIElement@)">
- <summary>
- Invoked when the mouse is pressed on the size grip.
- </summary>
- <param name="e">Mouse event arguments</param>
- <param name="adjustableArea">True if the mouse is in adjustable area of the element</param>
- <param name="captureMouseForElement">By Ref. Used to return the element that should receive mosue capture</param>
- <returns>True if no further processing of the message should occur</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.Navigate(System.Windows.Forms.AccessibleNavigation)">
- <summary>
- Navigates to another accessible object
- </summary>
- <param name="navdir">One of the <b>AccessibleNavigation</b> values</param>
- <returns>An <b>AccessibleObject</b> that represents one of the <b>AccessibleNavigation</b> values</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the button.
- </summary>
- <param name="appearance">The appearance structure to initialize</param>
- <param name="requestedProps">The properties that are needed</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.DrawImage(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Renders the size grip image for the element if one was provided.
- </summary>
- <param name="drawParams">UIElementDrawParams</param>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.StatusBar">
- <summary>
- Returns the owning <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> control
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.Cursor">
- <summary>
- Returns the cursor to display when the mouse is over the element.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object associated with the element.
- </summary>
- <remarks>
- <p class="note"><b>Note</b> Derived elements that plan to return an accessible object must override
- the <see cref="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.IsAccessibleElement"/> member.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.UIRole">
- <summary>
- Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.SizeGripAccessibleObject">
- <summary>
- Accessible object representing a <see cref="T:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement"/>
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.SizeGripAccessibleObject.#ctor(Infragistics.Win.UltraWinStatusBar.SizeGripUIElement)">
- <summary>
- Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.SizeGripAccessibleObject"/>
- </summary>
- <param name="element">Associated element</param>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.SizeGripAccessibleObject.Role">
- <summary>
- Returns the accessible role of the associated <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/>
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds">
- <summary>
- Enumeration of Property Ids for the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> control
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Appearance">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearance"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.BorderStyle">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.BorderStyle"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.BorderStylePanel">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BorderStylePanel"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Text">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Text"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.PanelAppearance">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelAppearance"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ResizeStyle">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResizeStyle"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.PanelsVisible">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelsVisible"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.SizeGripVisible">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.SizeGripVisible"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ButtonStyle">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ButtonStyle"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Panels">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Panel">
- <summary>
- Panel object
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Width">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Width"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.MinWidth">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MinWidth"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ToolTipText">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ToolTipText"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Style">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Control">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Enabled">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Enabled"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Visible">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Visible"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.SizingMode">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.SizingMode"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ImageList">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageList"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.DateTimeFormat">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DateTimeFormat"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ScaleImages">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaleImages"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.MarqueeStyle">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeStyle"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Direction">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeDirection"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ScrollAmount">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeScrollAmount"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Delay">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Delay"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.InterPanelSpacing">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.InterPanelSpacing"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ScaledImageSize">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaledImageSize"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ProgressBarInfo">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.CursorPositionFormat">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CursorPositionFormat"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.CharacterPositionFormat">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Left">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Left"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Right">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Right"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Top">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Top"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Bottom">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Bottom"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Padding">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Key">
- <summary>
- <see cref="P:Infragistics.Shared.KeyedSubObjectBase.Key"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.OnText">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OnText"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.OffText">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OffText"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.DisplayStyle">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.DisplayStyle"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.KeyStateInfo">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ShowToolTips">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShowToolTips"/>
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Index">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Index"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Checked">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Checked"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.KeyStateToggled">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.Toggled"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Appearances">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearances"/> collection property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ImageTransparentColor">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageTransparentColor"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.UseMnemonic">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UseMnemonic"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.WrapText">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.WrapText"/> and <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.WrapText"/> properties
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.FormatInfo">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.FormatInfo"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.MarqueeInfo">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/> property
- </summary>
- </member>
- <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ViewStyle">
- <summary>
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle"/> property
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.TimerManager">
- <summary>
- Class for managing a simple 1/2 second timer.
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.TimerManager.TimeElapsed">
- <summary>
- Internal event notification for a 1 second interval.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar">
- <summary>
- Represents a Windows style status bar control.
- </summary>
- <remarks>
- <p class="body">The <b>UltraStatusBar</b> is an enhanced StatusBar control that contains a collection of <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> objects. The
- <b>UltraStatusPanel</b> supports 13 panel styles. For a complete list, please refer to the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> property of the
- <b>UltraStatusPanel</b>. The panels may be hidden by changing the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Visible"/> property or to hide all the panels via the
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelsVisible"/> property.</p>
- <p class="body">The panels support 4 different sizing modes. When the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.SizingMode"/> is set to Adjustable, the panel's
- size may be adjusted at design time and run time by dragging the rightmost edge of the panel. Depending on the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResizeStyle"/>, the panel
- will either be sized during the drag operation or after the mouse is released. The <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragResize"/> and <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDragResize"/>
- events fire before and after the drag operation occurs respectively. When the same area of the panel is double clicked, the width of the
- panel (if the <b>Style</b> supports autosizing) will be set to the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>.</p>
- <p class="body">The borders for a panel may be controlled for all panels via the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BorderStylePanel"/> property or for individual panels via the
- panel's <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.BorderStyle"/> property. As with the panel drag events, before and after events (<see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeAutoSizePanel"/> and
- <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterAutoSizePanel"/>) are fired before the width of the panel is changed.</p>
- <p class="body">The UltraStatusBar may also show a size grip. By default, a size grip is only displayed if the status bar is docked to the bottom of the form
- and the form may be resized. The visibility of the size grip may be changed via the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.SizeGripVisible"/> property. When the container is about to begin
- a sizing operation, the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragSizeGrip"/> event is fired.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.#ctor">
- <summary>
- Constructor
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.System#ComponentModel#IExtenderProvider#CanExtend(System.Object)">
- <summary>
- Indicates which controls can have a status text extender property.
- </summary>
- <param name="extendee">Object to check if it can be extended.</param>
- <returns>True if the control can have a status text extender property.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#IUIElementImageAndTextProvider#GetImagePadding(Infragistics.Win.ImageAndTextUIElement)">
- <summary>
- Returns the padding around the image.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeAppearances">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearances"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearances"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetAppearances"/> method to reset this property to its default value.</p>
- </remarks>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetAppearances">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearances"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearances"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeAppearances"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearances"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeAppearance"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializePanelAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPanelAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPanelAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializePanelAppearance"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializePanels">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPanels"/> method to reset this property to its default value.</p>
- </remarks>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPanels">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializePanels"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeScaledImageSize">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaledImageSize"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaledImageSize"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetScaledImageSize"/> method to reset this property to its default value.</p>
- </remarks>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetScaledImageSize">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaledImageSize"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaledImageSize"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeScaledImageSize"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaledImageSize"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializePadding">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Padding"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Padding"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPadding"/> method to reset this property to its default value.</p>
- </remarks>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPadding">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Padding"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Padding"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializePadding"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Padding"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeImageTransparentColor">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageTransparentColor"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageTransparentColor"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetImageTransparentColor"/> method to reset this property to its default value.</p>
- </remarks>
- <returns>Returns true if this property is not set to its default value</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetImageTransparentColor">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageTransparentColor"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageTransparentColor"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeImageTransparentColor"/> method will return False until the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageTransparentColor"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeViewStyle">
- <summary>
- Indicates whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle"/> property needs to be serialized.
- </summary>
- <returns>Returns true if this property is not set to its default value</returns>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetViewStyle">
- <summary>
- Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle"/> property to its default value.
- </summary>
- <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.GetStatusBarText(System.ComponentModel.Component)">
- <summary>
- Gets the text for the specified component that will be displayed in an AutoStatusText style panel.
- </summary>
- <param name="component">Component for which to obtain the text.</param>
- <returns>The text associated with the component or an empty string if no
- text exists for the specified component.</returns>
- <remarks>
- <p class="body">The StatusBarText is the string that is displayed for a
- <see cref="T:System.Windows.Forms.Control"/> when the mouse is moved over the bounds of the
- Control. The StatusBarText also works with <see cref="T:System.Windows.Forms.MenuItem"/> components.</p>
- <p class="note"><b>Note</b> This method only affects the text that is displayed for
- <b>AutoStatusText</b> style panel objects. To change the text for a panel, use the
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Text"/> property.</p>
- <p class="note"><b>Note</b> For controls, this method relies upon the MouseEnter and MouseLeave
- event notifications. If a control is completely covered by a child control, it may appear that the
- property is not working. However, the problem is that the MouseLeave will be invoked when the
- mouse moves over the bounds of a different control.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.SetStatusBarText(System.ComponentModel.Component,System.String)">
- <summary>
- This sets the status bar text extender property for the specified component.
- </summary>
- <param name="component">Component to add,remove or modify the status text of.</param>
- <param name="text">Text</param>
- <remarks>
- <p class="body">To remove the status text for a component, pass a null or empty string.</p>
- <p class="body">The StatusBarText is the string that is displayed for a
- <see cref="T:System.Windows.Forms.Control"/> when the mouse is moved over the bounds of the
- Control. The StatusBarText also works with <see cref="T:System.Windows.Forms.MenuItem"/> components.</p>
- <p class="note"><b>Note</b> This method only affects the text that is displayed for
- <b>AutoStatusText</b> style panel objects. To change the text for a panel, use the
- <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Text"/> property.</p>
- <p class="note"><b>Note</b> For controls, this method relies upon the MouseEnter and MouseLeave
- event notifications. If a control is completely covered by a child control, it may appear that the
- property is not working. However, the problem is that the MouseLeave will be invoked when the
- mouse moves over the bounds of a different control.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResolveAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Updates the supplied AppearanceData structure with the resolved values for the control's appearance.
- </summary>
- <param name="appearance">Structure to update with the resolved values.</param>
- <param name="requestedProps">Appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResolvePanelAppearance(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel,Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Updates the supplied AppearanceData structure with the resolved values for the specified panel's appearance.
- </summary>
- <param name="panel">UltraStatusPanel whose appearance will be resolved.</param>
- <param name="appearance">Structure to update with the resolved values.</param>
- <param name="requestedProps">Appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Dispose(System.Boolean)">
- <summary>
- Handles disposing of the control's resources when the control is disposed.
- </summary>
- <param name="disposing">True if managed resources are to be released.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.IsPointDesignTimeActive(System.Drawing.Point)">
- <summary>
- Determines if the element at the specified point reacts to mouse activity at design time.
- </summary>
- <param name="pt">Point in client coordinates.</param>
- <returns>True if the point is active at design time.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.DisplayPanelToolTip(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
- <summary>
- Displays the tooltip for a statusbar panel.
- </summary>
- <param name="panel">UltraStatusPanel</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.HidePanelToolTip">
- <summary>
- Hides any UltraStatusPanel tooltip currently displayed.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.DisplayMDIPanelToolTip(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel,System.String)">
- <summary>
- Displays the tooltip text for an <see cref="T:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement"/> when the text isn't fully rendered.
- </summary>
- <param name="panel">Panel containing the mdi button</param>
- <param name="text">Text associated with the specific mdi button</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnDockChanged(System.EventArgs)">
- <summary>
- Overriden. Invoked when the dock property of the control changes.
- </summary>
- <param name="e">EventArgs</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnLocationChanged(System.EventArgs)">
- <summary>
- Overriden. Invoked when the location of the control changes.
- </summary>
- <param name="e">EventArgs</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnParentChanged(System.EventArgs)">
- <summary>
- Overriden. Invoked when the parent of the control changes.
- </summary>
- <param name="e">EventArgs</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnCreateControl">
- <summary>
- Invoked when the control is first created.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnOffice2007ColorSchemeChanged">
- <summary>
- Called when the Office2007 color scheme has changed
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnResize(System.EventArgs)">
- <summary>
- Called when the control has been resized
- </summary>
- <param name="e"></param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ProcessMnemonic(System.Char)">
- <summary>
- Overriden. Processes the mnemonic character.
- </summary>
- <param name="charCode">The character to process</param>
- <returns><b>true</b> if the character was processed as a mnemonic of a Button or StateButton style panel; otherwise, false</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.CreateAccessibilityInstance">
- <summary>
- Creates a new accessibility object for the control.
- </summary>
- <returns>A new accessibility object for the control.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.CreateAccessibilityInstance(System.Object)">
- <summary>
- Creates an accessible object for the related object.
- </summary>
- <param name="relatedObject">The logically related object (e.g. an UltraStatusBar, UltraStatusPanel, etc.).</param>
- <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject"/> object for the related object.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnFontChanged(System.EventArgs)">
- <summary>
- Invoked when the <see cref="P:System.Windows.Forms.Control.Font"/> property has changed.
- </summary>
- <param name="e">Event args</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.CreateComponentRole">
- <summary>
- Factory method used to create the component role that provides the style information for the control.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnPropertyChanged(Infragistics.Win.PropertyChangedEventArgs)">
- <summary>
- Used to invoke the <see cref="E:Infragistics.Win.UltraControlBase.PropertyChanged"/> event.
- </summary>
- <param name="e">Event arguments for the <see cref="E:Infragistics.Win.UltraControlBase.PropertyChanged"/> event</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnMouseEnterElement(Infragistics.Win.UIElementEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraComponentControlManagerBase.MouseEnterElement"/> event when the mouse is moved over a UIElement.
- </summary>
- <param name="e">A <see cref="T:Infragistics.Win.UIElementEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnMouseEnterElement</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnMouseEnterElement</b> in a derived class, be sure to call the base class's <b>OnMouseEnterElement</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:Infragistics.Win.UIElementEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraComponentControlManagerBase.MouseEnterElement"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnMouseLeaveElement(Infragistics.Win.UIElementEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraComponentControlManagerBase.MouseLeaveElement"/> event when the mouse is moved out of a UIElement.
- </summary>
- <param name="e">A <see cref="T:Infragistics.Win.UIElementEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnMouseLeaveElement</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnMouseLeaveElement</b> in a derived class, be sure to call the base class's <b>OnMouseLeaveElement</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:Infragistics.Win.UIElementEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraComponentControlManagerBase.MouseLeaveElement"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnAfterAutoSizePanel(Infragistics.Win.UltraWinStatusBar.PanelEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterAutoSizePanel"/> after an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> has been autosized.
- </summary>
- <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnAfterAutoSizePanel</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnAfterAutoSizePanel</b> in a derived class, be sure to call the base class's <b>OnAfterAutoSizePanel</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterAutoSizePanel"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnAfterDisplayCharacterPositionDialog(Infragistics.Win.UltraWinStatusBar.PanelEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDisplayCharacterPositionDialog"/> event after the character position dialog is displayed for an UltraStatusPanel whose <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> is set to <b>CharacterPosition</b> and whose <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/> is a <b>RichTextBox</b>
- </summary>
- <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnAfterDisplayCharacterPositionDialog</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnAfterDisplayCharacterPositionDialog</b> in a derived class, be sure to call the base class's <b>OnAfterDisplayCharacterPositionDialog</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDisplayCharacterPositionDialog"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnAfterDragResize(Infragistics.Win.UltraWinStatusBar.PanelEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDragResize"/> event after a splitter bar for a panel has been released
- </summary>
- <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnAfterDragResize</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnAfterDragResize</b> in a derived class, be sure to call the base class's <b>OnAfterDragResize</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDragResize"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnPanelClick(Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelClick"/> event when a panel is clicked
- </summary>
- <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnPanelClick</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnPanelClick</b> in a derived class, be sure to call the base class's <b>OnPanelClick</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelClick"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnBeforeAutoSizePanel(Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeAutoSizePanel"/> before an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> has been autosized.
- </summary>
- <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnBeforeAutoSizePanel</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnBeforeAutoSizePanel</b> in a derived class, be sure to call the base class's <b>OnBeforeAutoSizePanel</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeAutoSizePanel"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnBeforeDisplayCharacterPositionDialog(Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDisplayCharacterPositionDialog"/> event before the character position dialog is displayed for an UltraStatusPanel whose <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> is set to <b>CharacterPosition</b> and whose <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/> is a <b>RichTextBox</b>
- </summary>
- <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnBeforeDisplayCharacterPositionDialog</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnBeforeDisplayCharacterPositionDialog</b> in a derived class, be sure to call the base class's <b>OnBeforeDisplayCharacterPositionDialog</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDisplayCharacterPositionDialog"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnBeforeDragResize(Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragResize"/> event before the drag of a splitter bar for a panel begins
- </summary>
- <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnBeforeDragResize</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnBeforeDragResize</b> in a derived class, be sure to call the base class's <b>OnBeforeDragResize</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragResize"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnBeforeDragSizeGrip(System.ComponentModel.CancelEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragSizeGrip"/> event before the drag of the size grip for the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> begins
- </summary>
- <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnBeforeDragSizeGrip</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnBeforeDragSizeGrip</b> in a derived class, be sure to call the base class's <b>OnBeforeDragSizeGrip</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:System.ComponentModel.CancelEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragSizeGrip"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnPanelDoubleClick(Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelDoubleClick"/> event when an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> been double clicked.
- </summary>
- <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnPanelDoubleClick</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnPanelDoubleClick</b> in a derived class, be sure to call the base class's <b>OnPanelDoubleClick</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelDoubleClick"/>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnButtonClick(Infragistics.Win.UltraWinStatusBar.PanelEventArgs)">
- <summary>
- Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ButtonClick"/> event when an Button or StateButton style <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> been clicked.
- </summary>
- <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/> that provides data for the event.</param>
- <remarks>
- <p class="body">Raising an event invokes the event handler through a delegate.</p>
- <p class="body">The <b>OnButtonClick</b> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</p>
- <p class="note">Notes to Inheritors: When overriding <b>OnButtonClick</b> in a derived class, be sure to call the base class's <b>OnButtonClick</b> method so that registered delegates receive the event.</p>
- </remarks>
- <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/>
- <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ButtonClick"/>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#UltraWinDock#IDockingArea#PriorityLevel">
- <summary>
- Returns the priority level for the component when docked. A statusbar should reside outside the toolbar area.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#IImageListProvider#ImageList">
- <summary>
- Returns the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageList"/> property.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.About">
- <summary>
- Displays the About dialog for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Shared#IUltraLicensedComponent#License">
- <summary>
- Return the license we cached inside the constructor
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#IStatusBar#AutoSense">
- <summary>
- Gets/sets whether the control should display the <see cref="P:Infragistics.Win.IStatusBar.StatusText"/>
- or the StatusText associated with the control under the mouse.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#IStatusBar#StatusText">
- <summary>
- Gets/sets the status bar text displayed in a StatusText style
- panel when the <see cref="P:Infragistics.Win.IStatusBar.AutoSense"/> property
- is set to false.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#IStatusBar#ToolbarsManager">
- <summary>
- Gets/sets the toolbars manager.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BackColor">
- <summary>
- Backcolor property - use the Appearance property instead.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BackgroundImage">
- <summary>
- BackgroundImage property - use the Appearance property instead.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Font">
- <summary>
- Font property - use the Appearance property instead.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ForeColor">
- <summary>
- ForeColor property - use the Appearance property instead.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Cursor">
- <summary>
- Cursor property - use the Appearance property instead.
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.KeyDown">
- <summary>
- KeyDown event is not used by a status bar.
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.KeyUp">
- <summary>
- KeyUp event is not used by a status bar.
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.KeyPress">
- <summary>
- KeyPress event is not used by a status bar.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ControlUIElement">
- <summary>
- Returns the corresponding control uielement.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.DefaultImeMode">
- <summary>
- Determines the default ImeMode for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImeMode">
- <summary>
- Determines the ImeMode for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.TabStop">
- <summary>
- Determines whether the control will receive focus when tabbing through the controls.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.DefaultSize">
- <summary>
- Returns the default size for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearances">
- <summary>
- Returns the collection of user created appearance objects.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearance">
- <summary>
- Gets/sets the default appearance for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.HasAppearance">
- <summary>
- Returns true if an appearance object has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelAppearance">
- <summary>
- Gets/sets the default appearance for the panels.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.HasPanelAppearance">
- <summary>
- Returns true if the panel appearance object has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResizeStyle">
- <summary>
- Determines how a panel is resized.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BorderStyle">
- <summary>
- Determines the border style for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BorderStyleResolved">
- <summary>
- Returns the resolved border style for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BorderStylePanel">
- <summary>
- Determines the default border style for a panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelsVisible">
- <summary>
- Determines if the panels are displayed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelsVisibleResolved">
- <summary>
- Returns the resolved state indicating whether panels are displayed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.SizeGripVisible">
- <summary>
- Determines if the size grip is displayed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.SizeGripVisibleResolved">
- <summary>
- Returns the resolved SizeGripVisible value.
- </summary>
- <remarks>
- By default, the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.SizeGripVisible"/> property is set to Default. The size grip is only displayed if the container can be resized.
- </remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ButtonStyle">
- <summary>
- Determines the style used for button style panels.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ButtonStyleResolved">
- <summary>
- Returns the resolved button style used by button style panels.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels">
- <summary>
- Returns the collection of panel objects.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Text">
- <summary>
- Determines the text for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UIElement">
- <summary>
- Returns the main UIElement associated with the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Dock">
- <summary>
- The docking location of the control, indicating which borders are
- docked to the container.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageList">
- <summary>
- The imagelist associated with the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaleImages">
- <summary>
- Determines if images will be scaled.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.InterPanelSpacing">
- <summary>
- The amount of horizontal spacing between panels.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaledImageSize">
- <summary>
- Determines the size use to scale images.
- </summary>
- <remarks>When the width and/or height are set to -1, which
- is the default value, the value will be based on the
- size of the panel.</remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ToolTip">
- <summary>
- Returns the tooltip used by the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Padding">
- <summary>
- Gets/sets the amount of space within the control surrounding the panel area.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShowToolTips">
- <summary>
- Returns or sets whether <see cref="T:System.Windows.Forms.Panel"/> tooltips will be displayed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.EventManager">
- <summary>
- The object that enables, disables and controls firing of UltraStatusBar specific events.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.WrapText">
- <summary>
- Gets/sets whether text in the non-autosized panels may wrap across lines.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageTransparentColor">
- <summary>
- Gets/sets the color displayed as transparent in a image.
- </summary>
- <remarks>
- <p class="body">When set to a color other than Color.Transparent (the default), all
- occurrences of the color in the image will be made transparent.</p>
- <p class="body">If an image is supplied by setting an Appearance.Image property
- to an Imagelist index, the ImageLists TransparentColor property is
- looked at first. If that property is set to Color.TransparentColor,
- then the component's ImageTransparentColor is used. If it is set
- to Color.TransparentColor, then no color masking is done.</p>
- <p class="body">If an image is supplied by setting the Appearance.Image property to
- an image, the component's ImageTransparentColor is used. If it is
- set to Color.TransparentColor, then no color masking is done.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UseMnemonic">
- <summary>
- Gets/sets whether the first character preceeded by an ampersand in the text
- of a Button and StateButton style panel will be used as a mnemonic key.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle">
- <summary>
- Gets/sets the view style for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyleResolved">
- <summary>
- Returns the resolved <see cref="T:Infragistics.Win.UltraWinStatusBar.ViewStyle"/>
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterAutoSizePanel">
- <summary>
- Occurs after a <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> has been autosized.
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDisplayCharacterPositionDialog">
- <summary>
- Occurs after the character position dialog is displayed for an UltraStatusPanel whose <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> is set to <b>CharacterPosition</b> and whose <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/> is a <b>RichTextBox</b>
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDragResize">
- <summary>
- Occurs after the splitter bar for a panel is released.
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeAutoSizePanel">
- <summary>
- Occurs when the splitter area of a panel has been double clicked but before the panel has been sized to the size needed to display the item
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDisplayCharacterPositionDialog">
- <summary>
- Occurs before the character position dialog is displayed for an UltraStatusPanel whose <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> is set to <b>CharacterPosition</b> and whose <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/> is a <b>RichTextBox</b>
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragResize">
- <summary>
- Occurs before the splitter bar for a panel is moved.
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragSizeGrip">
- <summary>
- Occurs before the size grip for the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> is dragged
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelDoubleClick">
- <summary>
- Occurs when the user double clicks on an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>.
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ButtonClick">
- <summary>
- Occurs when the button of a Button or StateButton style <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> is clicked.
- </summary>
- </member>
- <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelClick">
- <summary>
- Occurs when an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> is clicked.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject">
- <summary>
- Accessible object representing an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/>
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
- <summary>
- Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject"/>
- </summary>
- <param name="statusBar">Associated statusbar</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject.GetChildCount">
- <summary>
- Returns the number of child accessible object.
- </summary>
- <returns> Returns the number of panes plus one if the size grip is displayed.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject.GetChild(System.Int32)">
- <summary>
- Returns the accessible child with the specified index.
- </summary>
- <param name="index">Index of the child to locate</param>
- <returns>Returns the accessible child at the specified index</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject.HitTest(System.Int32,System.Int32)">
- <summary>
- Returns the accessible child at the specified location
- </summary>
- <param name="x">Horizontal screen coordinate</param>
- <param name="y">Vertical screen coordinate</param>
- <returns></returns>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject.Role">
- <summary>
- Returns the accessible role of the associated <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/>
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement">
- <summary>
- An element used to simulate form resizing areas when merging the UltraToolbarsManager.Ribbon into the caption area.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.Contains(System.Drawing.Point,System.Boolean)">
- <summary>
- Checks if the point is over the element.
- </summary>
- <param name="point">In client coordinates</param>
- <param name="ignoreClipping">Specifies if we should ignore clipping or not</param>
- <returns>Returns true if the point is over the element.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.DrawBorders(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draws the borders of the element
- </summary>
- <param name="drawParams"></param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Renders the themed element
- </summary>
- <param name="drawParams">Structure containing information for the rendering</param>
- <returns>True to prevent further rendering of the element</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.GetNonClientHitTestCode(System.Drawing.Point)">
- <summary>
- Gets the WM_NCHITTEST code for special ui elements that simulate non-client areas, e.g. caption, resizing border etc.
- </summary>
- <param name="point">The <see cref="T:System.Drawing.Point"/> to hit-test.</param>
- <returns>The default implemenation walks up the parent chain until there is no parent and returns HTCLIENT.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the back and border colors used by the element
- </summary>
- <param name="appearance">The appearance structure to initialize</param>
- <param name="requestedProps">The properties that are needed</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.OnMouseDown(System.Windows.Forms.MouseEventArgs,System.Boolean,Infragistics.Win.UIElement@)">
- <summary>
- Invoked when the mouse is pressed on the size grip.
- </summary>
- <param name="e">Mouse event arguments</param>
- <param name="adjustableArea">True if the mouse is in adjustable area of the element</param>
- <param name="captureMouseForElement">By Ref. Used to return the element that should receive mosue capture</param>
- <returns>True if no further processing of the message should occur</returns>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.Cursor">
- <summary>
- Returns the cursor to display when the mouse is over the element.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.BorderSides">
- <summary>
- Returns flags indicating which borders will be drawn
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.BorderStyle">
- <summary>
- Returns the appropriate border style.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner">
- <summary>
- Provides design-time services for the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.ActionLists">
- <summary>
- Gets the <see cref="T:System.ComponentModel.Design.DesignerActionListCollection"/> for this designer's control/component.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.UltraStatusBarActionList">
- <summary>
- Provides DesignerActionItems for the SmartTag associated with the UltraStatusBar.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.UltraStatusBarActionList.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
- <summary>
- Constructor
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.UltraStatusBarActionList.CreateActionItems(System.ComponentModel.Design.DesignerActionItemCollection)">
- <summary>
- Overrides CreateActionItems.
- </summary>
- <param name="actionItems">The list to populate.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.UltraStatusBarActionList.EditPanels">
- <summary>
- Used by SmartTag Panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.UltraStatusBarActionList.ViewStyle">
- <summary>
- Used by SmartTag Panel.
- </summary>
- </member>
- <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement">
- <summary>
- Main UIElement for the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.UltraStatusBar"/> control.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
- <summary>
- Initializes a new UltraStatusBarUIElement owned by the specified UltraStatusBar control.
- </summary>
- <param name="owner">Owning control.</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.GetNonClientHitTestCode(System.Drawing.Point)">
- <summary>
- Gets the WM_NCHITTEST code for special ui elements that simulate non-client areas, e.g. caption, resizing border etc.
- </summary>
- <param name="point">The <see cref="T:System.Drawing.Point"/> to hit-test.</param>
- <returns>The default implemenation walks up the parent chain until there is no parent and returns HTCLIENT.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the control element.
- </summary>
- <param name="appearance">The appearance structure to initialize</param>
- <param name="requestedProps">The properties that are needed</param>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.PositionChildElements">
- <summary>
- Handles positioning child elements.
- </summary>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Renders the themed status bar area.
- </summary>
- <param name="drawParams">UIElementDrawParams</param>
- <returns>True if the themed element could be rendered.</returns>
- </member>
- <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Renders the back color of the status bar.
- </summary>
- <param name="drawParams">UIElementDrawParams</param>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.UltraStatusBar">
- <summary>
- Returns the owning UltraStatusBar control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.BorderSides">
- <summary>
- Returns bitflags that determine which sides to draw the borders on.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.BorderStyle">
- <summary>
- Returns the border style for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.UIRole">
- <summary>
- Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
- </summary>
- </member>
- </members>
- </doc>
|