Infragistics2.Win.UltraWinStatusBar.v9.2.xml 239 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Infragistics2.Win.UltraWinStatusBar.v9.2</name>
  5. </assembly>
  6. <members>
  7. <member name="M:Infragistics.Shared.LocalizedCategoryAttribute.GetLocalizedString(System.String)">
  8. <summary>
  9. Returns the localized category name
  10. </summary>
  11. <param name="value">Name of the category to retreive</param>
  12. <returns>The localized string value</returns>
  13. </member>
  14. <member name="M:Infragistics.Shared.UltraLicenseAttribute.GetLicensedWithProducts">
  15. <summary>
  16. Return the list of products that this control can be licensed with
  17. </summary>
  18. </member>
  19. <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole">
  20. <summary>
  21. Component role class used to manage the style settings for an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole"/>
  22. </summary>
  23. </member>
  24. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
  25. <summary>
  26. Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole"/>
  27. </summary>
  28. <param name="statusBar">UltraStatusBar associated with the component</param>
  29. </member>
  30. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole.GetRoleNames">
  31. <summary>
  32. 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.
  33. </summary>
  34. <returns>An array of strings containing the names of the role names that should be cached.</returns>
  35. </member>
  36. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole.OnStyleChanged">
  37. <summary>
  38. Invoked when the style information has been changed.
  39. </summary>
  40. </member>
  41. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarRole.SynchronizingObject">
  42. <summary>
  43. Object used to synchronize the style change notifications with the ui thread
  44. </summary>
  45. </member>
  46. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.StatusBar">
  47. <summary>
  48. The control area for the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/>
  49. </summary>
  50. </member>
  51. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.Panel">
  52. <summary>
  53. An <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
  54. </summary>
  55. </member>
  56. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.Button">
  57. <summary>
  58. The base button role for a button within a statusbar
  59. </summary>
  60. </member>
  61. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelButtonElement">
  62. <summary>
  63. The button within a button panel
  64. </summary>
  65. </member>
  66. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelStateButtonElement">
  67. <summary>
  68. The button within a state button panel
  69. </summary>
  70. </member>
  71. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelMdiButton">
  72. <summary>
  73. An mdi button in an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> whose type is MdiList
  74. </summary>
  75. </member>
  76. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.SizeGrip">
  77. <summary>
  78. The size grip area
  79. </summary>
  80. </member>
  81. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelAutoStatusText">
  82. <summary>
  83. A panel whose style is AutoStatusText
  84. </summary>
  85. </member>
  86. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelButton">
  87. <summary>
  88. A panel whose style is Button
  89. </summary>
  90. </member>
  91. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelCharacterPosition">
  92. <summary>
  93. A panel whose style is CharacterPosition
  94. </summary>
  95. </member>
  96. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelCursorPosition">
  97. <summary>
  98. A panel whose style is CursorPosition
  99. </summary>
  100. </member>
  101. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelControlContainer">
  102. <summary>
  103. A panel whose style is ControlContainer
  104. </summary>
  105. </member>
  106. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelDate">
  107. <summary>
  108. A panel whose style is Date
  109. </summary>
  110. </member>
  111. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelKeyState">
  112. <summary>
  113. A panel whose style is KeyState
  114. </summary>
  115. </member>
  116. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelMarquee">
  117. <summary>
  118. A panel whose style is Marquee
  119. </summary>
  120. </member>
  121. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelMdiList">
  122. <summary>
  123. A panel whose style is MdiList
  124. </summary>
  125. </member>
  126. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelProgress">
  127. <summary>
  128. A panel whose style is Progress
  129. </summary>
  130. </member>
  131. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelStateButton">
  132. <summary>
  133. A panel whose style is StateButton
  134. </summary>
  135. </member>
  136. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelText">
  137. <summary>
  138. A panel whose style is Text
  139. </summary>
  140. </member>
  141. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelTime">
  142. <summary>
  143. A panel whose style is Time
  144. </summary>
  145. </member>
  146. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.PanelSplitter">
  147. <summary>
  148. The splitter bar used to resize a panel.
  149. </summary>
  150. </member>
  151. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.Role.ProgressBar">
  152. <summary>
  153. The progress bar area for a progress bar panel.
  154. </summary>
  155. </member>
  156. <member name="F:Infragistics.Win.UltraWinStatusBar.StyleUtils.CachedProperty.BorderStatusBar">
  157. <summary>
  158. [Value Only] BorderStyle for the panel.
  159. </summary>
  160. </member>
  161. <member name="T:Infragistics.Win.UltraWinStatusBar.UltraWinStatusBarAssemblyStyleInfo">
  162. <summary>
  163. A class that provides the application styling definitions for the UltraWinStatusBar assembly.
  164. </summary>
  165. </member>
  166. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraWinStatusBarAssemblyStyleInfo.GetRoles">
  167. <summary>
  168. Returns an array of objects that define the roles provided by an assembly.
  169. </summary>
  170. <returns>An array of objects that define the roles.</returns>
  171. <seealso cref="T:Infragistics.Win.AppStyling.Definitions.UIRoleDefinition"/>
  172. </member>
  173. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraWinStatusBarAssemblyStyleInfo.GetComponents">
  174. <summary>
  175. Returns an array of objects that define the component roles provided by an assembly.
  176. </summary>
  177. <returns>An array of object that define the component roles.</returns>
  178. </member>
  179. <member name="T:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog">
  180. <summary>
  181. Dialog used to change the position of the caret within the associated
  182. <see cref="T:System.Windows.Forms.RichTextBox"/> control of a
  183. <b>CharacterPosition</b> <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> <b>UltraStatusPanel</b>.
  184. </summary>
  185. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDisplayCharacterPositionDialog"/>
  186. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDisplayCharacterPositionDialog"/>
  187. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  188. </member>
  189. <member name="F:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog.components">
  190. <summary>
  191. Required designer variable.
  192. </summary>
  193. </member>
  194. <member name="M:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog.#ctor">
  195. <summary>
  196. Initializes a new CaretPositionDialog.
  197. </summary>
  198. </member>
  199. <member name="M:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog.Dispose(System.Boolean)">
  200. <summary>
  201. Clean up any resources being used.
  202. </summary>
  203. </member>
  204. <member name="M:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog.InitializeComponent">
  205. <summary>
  206. Required method for Designer support - do not modify
  207. the contents of this method with the code editor.
  208. </summary>
  209. </member>
  210. <member name="M:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog.InitializeDialog(System.Windows.Forms.RichTextBox)">
  211. <summary>
  212. Initializes the dialog with the specified RichTextBox.
  213. </summary>
  214. <param name="richText">RichTextBox associated with the dialog.</param>
  215. </member>
  216. <member name="T:Infragistics.Win.UltraWinStatusBar.NumericTextBox">
  217. <summary>
  218. Class derived from TextBox to accept numeric input.
  219. </summary>
  220. </member>
  221. <member name="M:Infragistics.Win.UltraWinStatusBar.NumericTextBox.#ctor">
  222. <summary>
  223. Initializes a new NumericTextBox
  224. </summary>
  225. </member>
  226. <member name="P:Infragistics.Win.UltraWinStatusBar.NumericTextBox.CreateParams">
  227. <summary>
  228. Overriden. Modifies the base creation parameters to limit the style to numeric.
  229. </summary>
  230. </member>
  231. <member name="T:Infragistics.Win.UltraWinStatusBar.ClockUIElement">
  232. <summary>
  233. UIElement for representing a time as a clock.
  234. </summary>
  235. </member>
  236. <member name="M:Infragistics.Win.UltraWinStatusBar.ClockUIElement.#ctor(System.Boolean,Infragistics.Win.UIElement)">
  237. <summary>
  238. Initializes a new ClockUIElement.
  239. </summary>
  240. <param name="autoUpdate">Boolean indicating if the element should update its own display.</param>
  241. <param name="parent">Parent uielement</param>
  242. </member>
  243. <member name="M:Infragistics.Win.UltraWinStatusBar.ClockUIElement.DrawImage(Infragistics.Win.UIElementDrawParams@)">
  244. <summary>
  245. Renders the clock image for the element.
  246. </summary>
  247. <param name="drawParams">UIElementDrawParams</param>
  248. </member>
  249. <member name="M:Infragistics.Win.UltraWinStatusBar.ClockUIElement.DrawClockImage(Infragistics.Win.UIElementDrawParams@,System.DateTime)">
  250. <summary>
  251. Return a clock similar to that of Outlook based on the time passed in.
  252. </summary>
  253. <param name="drawParams">DrawParams containing the information for rendering the clock.</param>
  254. <param name="time">Time rendered on the clock image.</param>
  255. </member>
  256. <member name="P:Infragistics.Win.UltraWinStatusBar.ClockUIElement.Time">
  257. <summary>
  258. Determines the time displayed by the uielement.
  259. </summary>
  260. </member>
  261. <member name="T:Infragistics.Win.UltraWinStatusBar.Direction">
  262. <summary>
  263. Enumeration of directions.
  264. </summary>
  265. </member>
  266. <member name="F:Infragistics.Win.UltraWinStatusBar.Direction.LeftToRight">
  267. <summary>
  268. Left to right.
  269. </summary>
  270. </member>
  271. <member name="F:Infragistics.Win.UltraWinStatusBar.Direction.RightToLeft">
  272. <summary>
  273. Right to left.
  274. </summary>
  275. </member>
  276. <member name="F:Infragistics.Win.UltraWinStatusBar.Direction.TopToBottom">
  277. <summary>
  278. Top to bottom.
  279. </summary>
  280. </member>
  281. <member name="F:Infragistics.Win.UltraWinStatusBar.Direction.BottomToTop">
  282. <summary>
  283. Bottom to top.
  284. </summary>
  285. </member>
  286. <member name="T:Infragistics.Win.UltraWinStatusBar.MarqueeStyle">
  287. <summary>
  288. Enumeration of marquee styles.
  289. </summary>
  290. </member>
  291. <member name="F:Infragistics.Win.UltraWinStatusBar.MarqueeStyle.Scrolling">
  292. <summary>
  293. The marquee continuously runs in the specified direction.
  294. </summary>
  295. </member>
  296. <member name="F:Infragistics.Win.UltraWinStatusBar.MarqueeStyle.Sliding">
  297. <summary>
  298. The marquee slides into place.
  299. </summary>
  300. </member>
  301. <member name="F:Infragistics.Win.UltraWinStatusBar.MarqueeStyle.Bouncing">
  302. <summary>
  303. The marquee bounces in the orientation specified by the direction.
  304. </summary>
  305. </member>
  306. <member name="F:Infragistics.Win.UltraWinStatusBar.MarqueeStyle.Typing">
  307. <summary>
  308. Characters added one at a time.
  309. </summary>
  310. </member>
  311. <member name="F:Infragistics.Win.UltraWinStatusBar.MarqueeStyle.Flashing">
  312. <summary>
  313. Text for the panel flashes at a specified interval.
  314. </summary>
  315. </member>
  316. <member name="T:Infragistics.Win.UltraWinStatusBar.PanelStyle">
  317. <summary>
  318. Enumeration of panel styles
  319. </summary>
  320. </member>
  321. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.AutoStatusText">
  322. <summary>
  323. Displays the StatusBarText property of the control or menu item based on the mouse position.
  324. </summary>
  325. </member>
  326. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Button">
  327. <summary>
  328. Displays a standard push button.
  329. </summary>
  330. </member>
  331. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.CharacterPosition">
  332. <summary>
  333. Displays the position of the caret in the associated control. This
  334. only works with RichTextBox controls and controls that derive from
  335. RichTextBox.
  336. </summary>
  337. </member>
  338. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.CursorPosition">
  339. <summary>
  340. Displays the position of the mouse in relation to the associated control when
  341. the mouse is over the control.
  342. </summary>
  343. </member>
  344. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.ControlContainer">
  345. <summary>
  346. Positions a custom control in the location of the panel.
  347. </summary>
  348. </member>
  349. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Date">
  350. <summary>
  351. Displays the date based on the DateTimeFormat.
  352. </summary>
  353. </member>
  354. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.KeyState">
  355. <summary>
  356. Displays the status of the key indicated by the Key property.
  357. </summary>
  358. </member>
  359. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Marquee">
  360. <summary>
  361. Displays animated text.
  362. </summary>
  363. </member>
  364. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.MDIList">
  365. <summary>
  366. Displays a task bar style list of buttons representing an mdi window.
  367. </summary>
  368. </member>
  369. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Progress">
  370. <summary>
  371. Displays a progress bar and its associated label.
  372. </summary>
  373. </member>
  374. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.StateButton">
  375. <summary>
  376. Displays a state button.
  377. </summary>
  378. </member>
  379. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Text">
  380. <summary>
  381. Displays the text of the panel.
  382. </summary>
  383. </member>
  384. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelStyle.Time">
  385. <summary>
  386. Displays the time based on the DateTimeFormat.
  387. </summary>
  388. </member>
  389. <member name="T:Infragistics.Win.UltraWinStatusBar.PanelSizingMode">
  390. <summary>
  391. Enumeration of the panel sizing options.
  392. </summary>
  393. </member>
  394. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelSizingMode.Fixed">
  395. <summary>
  396. The panel's size is controlled by the width.
  397. </summary>
  398. </member>
  399. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelSizingMode.Automatic">
  400. <summary>
  401. The panel's size is based on its contents.
  402. </summary>
  403. </member>
  404. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelSizingMode.Adjustable">
  405. <summary>
  406. The panel's base size is controlled by the width but the panel may be
  407. resized.
  408. </summary>
  409. </member>
  410. <member name="F:Infragistics.Win.UltraWinStatusBar.PanelSizingMode.Spring">
  411. <summary>
  412. The panel size is based on the remaining size remaining after the other
  413. visible panes have been sized.
  414. </summary>
  415. </member>
  416. <member name="T:Infragistics.Win.UltraWinStatusBar.ResizeStyle">
  417. <summary>
  418. Enumeration of resize styles.
  419. </summary>
  420. </member>
  421. <member name="F:Infragistics.Win.UltraWinStatusBar.ResizeStyle.None">
  422. <summary>
  423. No resizing is allowed.
  424. </summary>
  425. </member>
  426. <member name="F:Infragistics.Win.UltraWinStatusBar.ResizeStyle.Immediate">
  427. <summary>
  428. Resizing occurs as the mouse is dragged.
  429. </summary>
  430. </member>
  431. <member name="F:Infragistics.Win.UltraWinStatusBar.ResizeStyle.Deferred">
  432. <summary>
  433. Resizing occurs when the mouse is released.
  434. </summary>
  435. </member>
  436. <member name="T:Infragistics.Win.UltraWinStatusBar.KeyState">
  437. <summary>
  438. Enumeration of Keys whose state may be monitored.
  439. </summary>
  440. </member>
  441. <member name="F:Infragistics.Win.UltraWinStatusBar.KeyState.NumLock">
  442. <summary>
  443. Number Lock key
  444. </summary>
  445. </member>
  446. <member name="F:Infragistics.Win.UltraWinStatusBar.KeyState.CapsLock">
  447. <summary>
  448. CapsLock key
  449. </summary>
  450. </member>
  451. <member name="F:Infragistics.Win.UltraWinStatusBar.KeyState.ScrollLock">
  452. <summary>
  453. Scroll Lock key
  454. </summary>
  455. </member>
  456. <member name="F:Infragistics.Win.UltraWinStatusBar.KeyState.InsertMode">
  457. <summary>
  458. Insert key.
  459. </summary>
  460. <remarks>
  461. <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>
  462. </remarks>
  463. </member>
  464. <member name="F:Infragistics.Win.UltraWinStatusBar.KeyState.Kana">
  465. <summary>
  466. IME Kana mode
  467. </summary>
  468. </member>
  469. <member name="T:Infragistics.Win.UltraWinStatusBar.KeyStateDisplayStyle">
  470. <summary>
  471. Enumeration of display styles for the KeyState style panels.
  472. </summary>
  473. </member>
  474. <member name="F:Infragistics.Win.UltraWinStatusBar.KeyStateDisplayStyle.Dim">
  475. <summary>
  476. The panel is displayed using its disabled appearance when the associated key is not toggled.
  477. </summary>
  478. </member>
  479. <member name="F:Infragistics.Win.UltraWinStatusBar.KeyStateDisplayStyle.ChangeText">
  480. <summary>
  481. The text changes to reflect the state of the key.
  482. </summary>
  483. </member>
  484. <member name="T:Infragistics.Win.UltraWinStatusBar.ViewStyle">
  485. <summary>
  486. Determines the view style for the control.
  487. </summary>
  488. </member>
  489. <member name="F:Infragistics.Win.UltraWinStatusBar.ViewStyle.Default">
  490. <summary>
  491. Default. When otherwise unspecified, the default view style is <b>Standard</b>.
  492. </summary>
  493. </member>
  494. <member name="F:Infragistics.Win.UltraWinStatusBar.ViewStyle.Office2003">
  495. <summary>
  496. Controls will emulate the visual appearance seen in Office2003 applications.
  497. </summary>
  498. </member>
  499. <member name="F:Infragistics.Win.UltraWinStatusBar.ViewStyle.VisualStudio2005">
  500. <summary>
  501. Controls will emulate the visual appearance seen in Visual Studio 2005.
  502. </summary>
  503. </member>
  504. <member name="F:Infragistics.Win.UltraWinStatusBar.ViewStyle.Standard">
  505. <summary>
  506. Controls will appear as they did in previous versions.
  507. </summary>
  508. </member>
  509. <member name="F:Infragistics.Win.UltraWinStatusBar.ViewStyle.Office2007">
  510. <summary>
  511. Controls will appear as they did in previous versions.
  512. </summary>
  513. </member>
  514. <member name="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager">
  515. <summary>
  516. Class for managing the events of an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> object. It maintains an
  517. enabled flag for each event as well as a nested 'in progress' count.
  518. </summary>
  519. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/>
  520. </member>
  521. <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
  522. <summary>
  523. Initializes a new <b>StatusBarEventManager</b>
  524. </summary>
  525. <param name="control">Owning UltraStatusBar control</param>
  526. </member>
  527. <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.InProgress(Infragistics.Win.UltraWinStatusBar.StatusBarEventIds)">
  528. <summary>
  529. Indicates whether the event identified by the <paramref name="eventid"/> is in progress.
  530. </summary>
  531. <param name="eventid">Identifies the event to check.</param>
  532. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/>
  533. </member>
  534. <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.IsEnabled(Infragistics.Win.UltraWinStatusBar.StatusBarEventIds)">
  535. <summary>
  536. Indicates whether the event identified by the <paramref name="eventid"/> may be raised.
  537. </summary>
  538. <param name="eventid">Identifies the event to check.</param>
  539. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/>
  540. <returns>true if the event is enabled; otherwise, false.</returns>
  541. </member>
  542. <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.SetEnabled(Infragistics.Win.UltraWinStatusBar.StatusBarEventIds,System.Boolean)">
  543. <summary>
  544. Enables or disables the event identified by the <paramref name="eventid"/>.
  545. </summary>
  546. <param name="eventid">One of the <see cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/> indicating which event to update.</param>
  547. <param name="enabled">True if the event should enabled. False to prevent the event from being raised.</param>
  548. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/>
  549. </member>
  550. <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.IsEnabled(Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups)">
  551. <summary>
  552. Returns true if all events in the specified group are enabled.
  553. </summary>
  554. <param name="group">One of the StatusBarEventGroups which identifies the group to check.</param>
  555. <returns>True if the event is currently enabled.</returns>
  556. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups"/>
  557. <returns>true if the event group is enabled; otherwise, false.</returns>
  558. </member>
  559. <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.SetEnabled(Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups,System.Boolean)">
  560. <summary>
  561. Enables or disables all the events associated with the specified group.
  562. </summary>
  563. <param name="group">One of the StatusBarEventGroups identifying the group to modify.</param>
  564. <param name="enabled">The new enabled state of the group of events.</param>
  565. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups"/>
  566. </member>
  567. <member name="M:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.CanFireEvent(Infragistics.Win.UltraWinStatusBar.StatusBarEventIds)">
  568. <summary>
  569. Indicates whether the event identified by the <see cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/> can be fired.
  570. </summary>
  571. <param name="eventid">Identifies which event to check.</param>
  572. <returns>True if the specified event can be fired.</returns>
  573. </member>
  574. <member name="P:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.StatusBar">
  575. <summary>
  576. Returns the owning <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> control
  577. </summary>
  578. </member>
  579. <member name="P:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.AfterEventIndexes">
  580. <summary>
  581. Returns a lazily loaded array of indexes for all the 'After' events.
  582. </summary>
  583. <value>Array of integer for the StatusBarEventIds representing the 'After' events.</value>
  584. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/>
  585. </member>
  586. <member name="P:Infragistics.Win.UltraWinStatusBar.StatusBarEventManager.BeforeEventIndexes">
  587. <summary>
  588. Returns a lazily loaded array of indexes for all the 'Before' events.
  589. </summary>
  590. <value>Array of integer for the StatusBarEventIds representing the 'Before' events.</value>
  591. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds"/>
  592. </member>
  593. <member name="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds">
  594. <summary>
  595. Enumeration of event identifiers for the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> component.
  596. </summary>
  597. </member>
  598. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.MouseEnterElement">
  599. <summary>
  600. Event id that identifies the MouseEnterElement event
  601. </summary>
  602. </member>
  603. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.MouseLeaveElement">
  604. <summary>
  605. Event id that identifies the MouseLeaveElement event
  606. </summary>
  607. </member>
  608. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.BeforeAutoSizePanel">
  609. <summary>
  610. Event id that identifies the BeforeAutoSizePanel event
  611. </summary>
  612. </member>
  613. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.AfterAutoSizePanel">
  614. <summary>
  615. Event id that identifies the AfterAutoSizePanel event
  616. </summary>
  617. </member>
  618. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.BeforeDisplayCharacterPositionDialog">
  619. <summary>
  620. Event id that identifies the BeforeDisplayCharacterPositionDialog event
  621. </summary>
  622. </member>
  623. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.AfterDisplayCharacterPositionDialog">
  624. <summary>
  625. Event id that identifies the AfterDisplayCharacterPositionDialog event
  626. </summary>
  627. </member>
  628. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.PanelDoubleClick">
  629. <summary>
  630. Event id that identifies the PanelDoubleClick event
  631. </summary>
  632. </member>
  633. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.ButtonClick">
  634. <summary>
  635. Event id that identifies the ButtonClick event
  636. </summary>
  637. </member>
  638. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.AfterDragResize">
  639. <summary>
  640. Event id that identifies the AfterDragResize event
  641. </summary>
  642. </member>
  643. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.BeforeDragResize">
  644. <summary>
  645. Event id that identifies the BeforeDragResize event
  646. </summary>
  647. </member>
  648. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.BeforeDragSizeGrip">
  649. <summary>
  650. Event id that identifies the BeforeDragSizeGrip event
  651. </summary>
  652. </member>
  653. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventIds.PanelClick">
  654. <summary>
  655. Event id that identifies the PanelClick event
  656. </summary>
  657. </member>
  658. <member name="T:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups">
  659. <summary>
  660. Identifies groups of <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> events
  661. </summary>
  662. </member>
  663. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups.AllEvents">
  664. <summary>
  665. All events
  666. </summary>
  667. </member>
  668. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups.BeforeEvents">
  669. <summary>
  670. Before events
  671. </summary>
  672. </member>
  673. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarEventGroups.AfterEvents">
  674. <summary>
  675. After events
  676. </summary>
  677. </member>
  678. <member name="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs">
  679. <summary>
  680. Event parameters used for events which pass a single <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>.
  681. </summary>
  682. </member>
  683. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelEventArgs.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
  684. <summary>
  685. Initializes a new PanelEventArgs with the specified <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
  686. </summary>
  687. <param name="panel">A panel object</param>
  688. </member>
  689. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelEventArgs.Panel">
  690. <summary>
  691. <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> instance associated with the event. This property is read-only.
  692. </summary>
  693. </member>
  694. <member name="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs">
  695. <summary>
  696. Event parameters used for a cancelable event which pass a single <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>.
  697. </summary>
  698. </member>
  699. <member name="M:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
  700. <summary>
  701. Initializes a new CancelablePaneEventArgs with the specified <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
  702. </summary>
  703. <param name="panel">A panel object</param>
  704. </member>
  705. <member name="P:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs.Panel">
  706. <summary>
  707. <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> instance associated with the event. This property is read-only.
  708. </summary>
  709. </member>
  710. <member name="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs">
  711. <summary>
  712. Event parameters used for the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelClick"/> and <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelDoubleClick"/> events
  713. </summary>
  714. </member>
  715. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel,System.Windows.Forms.MouseButtons,System.Int32,System.Int32,System.Int32)">
  716. <summary>
  717. Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs"/>
  718. </summary>
  719. <param name="panel">Panel associated with the event</param>
  720. <param name="button">Indicates which mouse button was released.</param>
  721. <param name="clicks">Number of times the mouse was pressed</param>
  722. <param name="x">X coordinate in client coordinates</param>
  723. <param name="y">Y coordinate in client coordinates</param>
  724. </member>
  725. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs.Panel">
  726. <summary>
  727. Returns the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> associated with the event
  728. </summary>
  729. </member>
  730. <member name="T:Infragistics.Win.UltraWinStatusBar.PanelEventHandler">
  731. <summary>
  732. Delegate for handling an event involving an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>.
  733. </summary>
  734. </member>
  735. <member name="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventHandler">
  736. <summary>
  737. Delegate for handling a cancelable event involving an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>.
  738. </summary>
  739. </member>
  740. <member name="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventHandler">
  741. <summary>
  742. Delegate for handling a click event involving an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
  743. </summary>
  744. </member>
  745. <member name="T:Infragistics.Win.UltraWinStatusBar.KeyStateInfo">
  746. <summary>
  747. Represents the settings for a <b>KeyState</b> <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> panel.
  748. </summary>
  749. <remarks>
  750. <p class="body">The <b>KeyStateInfo</b> maintains the information used when rendering a key state style panel. A key
  751. state style panel indicates the status of certain togglable keys such as the number lock and caps lock keys. The
  752. <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
  753. 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
  754. 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>
  755. </remarks>
  756. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/>
  757. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  758. </member>
  759. <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.#ctor">
  760. <summary>
  761. Constructor
  762. </summary>
  763. </member>
  764. <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.ShouldSerialize">
  765. <summary>
  766. Returns whether any of the property values for the <b>KeyStateInfo</b> differ from the default values.
  767. </summary>
  768. <returns>True if the object needs to be serialized.</returns>
  769. </member>
  770. <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.Reset">
  771. <summary>
  772. Resets the properties of the object info to their default values.
  773. </summary>
  774. </member>
  775. <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.ToString">
  776. <summary>
  777. Returns a string representation of the object.
  778. </summary>
  779. <returns>A string containing the key and display style.</returns>
  780. </member>
  781. <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.DisplayStyle">
  782. <summary>
  783. Returns or sets the display style of the key style panel.
  784. </summary>
  785. </member>
  786. <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.Toggled">
  787. <summary>
  788. Returns the current toggle state of the key.
  789. </summary>
  790. </member>
  791. <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.Key">
  792. <summary>
  793. Returns or sets the key being whose state is displayed in a KeyState style UltraPanel.
  794. </summary>
  795. </member>
  796. <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OnTextResolved">
  797. <summary>
  798. Returns the text that will be displayed for the on state of the current key.
  799. </summary>
  800. </member>
  801. <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OnText">
  802. <summary>
  803. Returns or sets the text to be displayed when the current key state is toggled (on).
  804. </summary>
  805. <remarks>
  806. <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>
  807. <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>
  808. </remarks>
  809. </member>
  810. <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OffText">
  811. <summary>
  812. Returns or sets the text to be displayed when the current key state is off.
  813. </summary>
  814. <remarks>
  815. <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>
  816. <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>
  817. </remarks>
  818. </member>
  819. <member name="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OffTextResolved">
  820. <summary>
  821. Returns the text that will be displayed for the off state of the current key.
  822. </summary>
  823. </member>
  824. <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateManager.GetKeyState(Infragistics.Win.UltraWinStatusBar.KeyState)">
  825. <summary>
  826. Returns the current state of the specified key.
  827. </summary>
  828. <param name="vKey">Key to check the state of.</param>
  829. <returns>True if the key is toggled (on).</returns>
  830. </member>
  831. <member name="M:Infragistics.Win.UltraWinStatusBar.KeyStateManager.OnDispose">
  832. <summary>
  833. Invoked when the object must release all resources.
  834. </summary>
  835. </member>
  836. <member name="T:Infragistics.Win.UltraWinStatusBar.UIElementMargins">
  837. <summary>
  838. Stores the margin information for a region.
  839. </summary>
  840. </member>
  841. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.#ctor">
  842. <summary>
  843. Constructor
  844. </summary>
  845. </member>
  846. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
  847. <summary>
  848. Constructor
  849. </summary>
  850. <param name="left">Left margin</param>
  851. <param name="top">Top margin</param>
  852. <param name="right">Right margin</param>
  853. <param name="bottom">Bottom margin</param>
  854. </member>
  855. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Reset">
  856. <summary>
  857. Resets the members to their default values.
  858. </summary>
  859. </member>
  860. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Clone">
  861. <summary>
  862. Returns a clone of this object.
  863. </summary>
  864. <returns>A new UIElementMargins object with the same values.</returns>
  865. </member>
  866. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.ToString">
  867. <summary>
  868. Returns a string representation of the object.
  869. </summary>
  870. <returns>A string containing the key and display style.</returns>
  871. </member>
  872. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Equals(System.Object)">
  873. <summary>
  874. Used to determine if the specified object is the same as this instance.
  875. </summary>
  876. <param name="obj">Object to compare against.</param>
  877. <returns>True if the values for the objects are the same.</returns>
  878. </member>
  879. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.GetHashCode">
  880. <summary>
  881. Returns the hashcode for the UIElementMargins object.
  882. </summary>
  883. <returns>A hash code for the structure.</returns>
  884. </member>
  885. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Addition(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
  886. <summary>
  887. Increases the specified rectangle by the margins supplied.
  888. </summary>
  889. <param name="margins">Margins to increase by.</param>
  890. <param name="rect">Rectangle to increase.</param>
  891. <returns>Increased rectangle.</returns>
  892. </member>
  893. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Addition(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
  894. <summary>
  895. Increases the specified rectangle by the margins supplied.
  896. </summary>
  897. <param name="margins">Margins to increase by.</param>
  898. <param name="rect">Rectangle to increase.</param>
  899. <returns>Increased rectangle.</returns>
  900. </member>
  901. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Subtraction(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
  902. <summary>
  903. Reduces the specified rectangle by the margins supplied.
  904. </summary>
  905. <param name="margins">Margins to reduce by.</param>
  906. <param name="rect">Rectangle to reduce</param>
  907. <returns>Reduced rectangle.</returns>
  908. </member>
  909. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Subtraction(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
  910. <summary>
  911. Reduces the specified rectangle by the margins supplied.
  912. </summary>
  913. <param name="margins">Margins to reduce by.</param>
  914. <param name="rect">Rectangle to reduce</param>
  915. <returns>Reduced rectangle.</returns>
  916. </member>
  917. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Equality(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
  918. <summary>
  919. Used to determine if the margin structure and rectangle have the same values.
  920. </summary>
  921. <param name="margins">UIElementMargins</param>
  922. <param name="rect">Rectangle</param>
  923. <returns>True if the objects have the same values.</returns>
  924. </member>
  925. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Inequality(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
  926. <summary>
  927. Used to test that at least one part of the objects differs between the specified items.
  928. </summary>
  929. <param name="margins">UIElementMargins</param>
  930. <param name="rect">Rectangle</param>
  931. <returns>True if at least one value differs between the two objects.</returns>
  932. </member>
  933. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Equality(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
  934. <summary>
  935. Used to determine if the margin structure and rectangle have the same values.
  936. </summary>
  937. <param name="margins">UIElementMargins</param>
  938. <param name="rect">Rectangle</param>
  939. <returns>True if the objects have the same values.</returns>
  940. </member>
  941. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.op_Inequality(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
  942. <summary>
  943. Used to test that at least one part of the objects differs between the specified items.
  944. </summary>
  945. <param name="margins">UIElementMargins</param>
  946. <param name="rect">Rectangle</param>
  947. <returns>True if at least one value differs between the two objects.</returns>
  948. </member>
  949. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Add(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
  950. <summary>
  951. Increases the specified rectangle by the margins supplied.
  952. </summary>
  953. <param name="margins">Margins to increase by.</param>
  954. <param name="rect">Rectangle to increase.</param>
  955. <returns>Increased rectangle.</returns>
  956. </member>
  957. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Add(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
  958. <summary>
  959. Increases the specified rectangle by the margins supplied.
  960. </summary>
  961. <param name="margins">Margins to increase by.</param>
  962. <param name="rect">Rectangle to increase.</param>
  963. <returns>Increased rectangle.</returns>
  964. </member>
  965. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Subtract(Infragistics.Win.UltraWinStatusBar.UIElementMargins,System.Drawing.Rectangle)">
  966. <summary>
  967. Reduces the specified rectangle by the margins supplied.
  968. </summary>
  969. <param name="margins">Margins to reduce by.</param>
  970. <param name="rect">Rectangle to reduce</param>
  971. <returns>Reduced rectangle.</returns>
  972. </member>
  973. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Subtract(System.Drawing.Rectangle,Infragistics.Win.UltraWinStatusBar.UIElementMargins)">
  974. <summary>
  975. Reduces the specified rectangle by the margins supplied.
  976. </summary>
  977. <param name="margins">Margins to reduce by.</param>
  978. <param name="rect">Rectangle to reduce</param>
  979. <returns>Reduced rectangle.</returns>
  980. </member>
  981. <member name="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Left">
  982. <summary>
  983. Left margin
  984. </summary>
  985. </member>
  986. <member name="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Top">
  987. <summary>
  988. Top Margin
  989. </summary>
  990. </member>
  991. <member name="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Right">
  992. <summary>
  993. Right Margin
  994. </summary>
  995. </member>
  996. <member name="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Bottom">
  997. <summary>
  998. Bottom Margin
  999. </summary>
  1000. </member>
  1001. <member name="T:Infragistics.Win.UltraWinStatusBar.UIElementMargins.UIElementMarginsTypeConverter">
  1002. <summary>
  1003. UIElementMarginsTypeConverter
  1004. </summary>
  1005. </member>
  1006. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.UIElementMarginsTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  1007. <summary>
  1008. Returns whether this converter can convert the object to the specified type, using the specified context.
  1009. </summary>
  1010. <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
  1011. <param name="destinationType">A System.Type that represents the type you want to convert to.</param>
  1012. <returns>true if this converter can perform the conversion; otherwise, false.</returns>
  1013. </member>
  1014. <member name="M:Infragistics.Win.UltraWinStatusBar.UIElementMargins.UIElementMarginsTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  1015. <summary>
  1016. Converts the given value object to the specified type, using the specified
  1017. context and culture information.
  1018. </summary>
  1019. <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
  1020. <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture is assumed.</param>
  1021. <param name="value">The System.Object to convert.</param>
  1022. <param name="destinationType">The System.Type to convert the value parameter to.</param>
  1023. <returns>An System.Object that represents the converted value.</returns>
  1024. </member>
  1025. <member name="T:Infragistics.Win.UltraWinStatusBar.MarqueeInfo">
  1026. <summary>
  1027. Represents the settings for a <b>Marquee</b> <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> panel.
  1028. </summary>
  1029. <remarks>
  1030. <p class="body">The <b>MarqueeInfo</b> maintains the information used when rendering a marquee style panel. The
  1031. <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"/>
  1032. and <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Delay"/> are all configurable.</p>
  1033. <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
  1034. marquee runs.</p>
  1035. </remarks>
  1036. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/>
  1037. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  1038. </member>
  1039. <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
  1040. <summary>
  1041. Initializes a new MarqueeInfo instance
  1042. </summary>
  1043. <param name="parentPanel">The parent panel.</param>
  1044. </member>
  1045. <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Start">
  1046. <summary>
  1047. Starts the execution of the marquee
  1048. </summary>
  1049. </member>
  1050. <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Stop">
  1051. <summary>
  1052. Stops the execution of the marquee
  1053. </summary>
  1054. </member>
  1055. <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.OnDispose">
  1056. <summary>
  1057. Invoked when the object is disposed
  1058. </summary>
  1059. </member>
  1060. <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.ShouldSerialize">
  1061. <summary>
  1062. Returns whether any of the property values for the <b>MarqueeInfo</b> differ from the default values.
  1063. </summary>
  1064. <returns>True if the object needs to be serialized.</returns>
  1065. </member>
  1066. <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Reset">
  1067. <summary>
  1068. Resets the properties of the object info to their default values.
  1069. </summary>
  1070. </member>
  1071. <member name="M:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.ToString">
  1072. <summary>
  1073. Returns a string representation of the object.
  1074. </summary>
  1075. <returns>A string containing the type and direction of the marquee.</returns>
  1076. </member>
  1077. <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeStyle">
  1078. <summary>
  1079. Determines the type of marquee displayed when the style is set to Marquee.
  1080. </summary>
  1081. </member>
  1082. <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeDirection">
  1083. <summary>
  1084. Determines the direction of the marquee.
  1085. </summary>
  1086. </member>
  1087. <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.IsActive">
  1088. <summary>
  1089. Indicates if the marquee is currently active.
  1090. </summary>
  1091. </member>
  1092. <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeScrollAmount">
  1093. <summary>
  1094. Determines the amount of pixels the marquee will scroll during an animation.
  1095. </summary>
  1096. </member>
  1097. <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Delay">
  1098. <summary>
  1099. Determines the delay between changes for a marquee or animation
  1100. style panel.
  1101. </summary>
  1102. </member>
  1103. <member name="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.CurrentText">
  1104. <summary>
  1105. Returns the current text displayed by the marquee.
  1106. </summary>
  1107. </member>
  1108. <member name="T:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement">
  1109. <summary>
  1110. A state button element for representing an mdi child.
  1111. </summary>
  1112. </member>
  1113. <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.#ctor(System.Boolean,Infragistics.Win.IUIElementImageAndTextProvider,Infragistics.Win.UIElement)">
  1114. <summary>
  1115. Initializes a new MDIButtonUIElement
  1116. </summary>
  1117. <param name="isActive">True if the associated form is active.</param>
  1118. <param name="provider">Class providing the rendering information for the element.</param>
  1119. <param name="parent">Parent UIElement</param>
  1120. </member>
  1121. <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.RefreshIcon">
  1122. <summary>
  1123. Releases the previous image if there was one and recreates the image
  1124. based on the form's icon.
  1125. </summary>
  1126. </member>
  1127. <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.OnCheckStateChange">
  1128. <summary>
  1129. Invoked when the check state of the button changes.
  1130. </summary>
  1131. </member>
  1132. <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.OnDispose">
  1133. <summary>
  1134. Invoked when the element is being disposed to allow the element to free
  1135. any resources being used.
  1136. </summary>
  1137. </member>
  1138. <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.OnMouseHover">
  1139. <summary>
  1140. Overrides the OnMouseHover to display a tooltip to the user.
  1141. </summary>
  1142. </member>
  1143. <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.OnMouseLeave">
  1144. <summary>
  1145. Overrides the OnMouseLeave method
  1146. </summary>
  1147. </member>
  1148. <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.Form">
  1149. <summary>
  1150. Gets or sets the associated form.
  1151. </summary>
  1152. </member>
  1153. <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.FormImage">
  1154. <summary>
  1155. Returns the bitmap representing the form. The image was obtained
  1156. from the form's icon.
  1157. </summary>
  1158. </member>
  1159. <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.ButtonStyle">
  1160. <summary>
  1161. Returns the style of button displayed.
  1162. </summary>
  1163. </member>
  1164. <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.IsAccessibleElement">
  1165. <summary>
  1166. Indicates if the element supports accessibility.
  1167. </summary>
  1168. </member>
  1169. <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.AccessibilityInstance">
  1170. <summary>
  1171. Returns the accessible object associated with the element.
  1172. </summary>
  1173. <remarks>
  1174. <p class="note"><b>Note</b> Derived elements that plan to return an accessible object must override
  1175. the <see cref="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.IsAccessibleElement"/> member.</p>
  1176. </remarks>
  1177. </member>
  1178. <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.Enabled">
  1179. <summary>
  1180. Gets/sets whether the element is enabled.
  1181. </summary>
  1182. </member>
  1183. <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.UIRole">
  1184. <summary>
  1185. Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
  1186. </summary>
  1187. </member>
  1188. <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.CanClickButton">
  1189. <summary>
  1190. Returns whether the checked state of the element can be changed.
  1191. </summary>
  1192. </member>
  1193. <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.WantsMouseHoverNotification">
  1194. <summary>
  1195. Overriden. Indicates that the element wants to receive mouse hover notifications.
  1196. </summary>
  1197. </member>
  1198. <member name="T:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.MdiButtonAccessibleObject">
  1199. <summary>
  1200. Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.MdiButtonAccessibleObject"/>
  1201. </summary>
  1202. </member>
  1203. <member name="M:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.MdiButtonAccessibleObject.#ctor(Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement)">
  1204. <summary>
  1205. Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.MdiButtonAccessibleObject"/>
  1206. </summary>
  1207. <param name="element">Associated element</param>
  1208. </member>
  1209. <member name="P:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement.MdiButtonAccessibleObject.Name">
  1210. <summary>
  1211. Returns the name of the accessible object.
  1212. </summary>
  1213. </member>
  1214. <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel">
  1215. <summary>
  1216. Represents a single section of an <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusBar"/> control.
  1217. </summary>
  1218. <remarks>
  1219. <p class="body">The <b>UltraStatusPanel</b> supports 13 custom styles representing the most
  1220. common uses of a StatusBar.</p>
  1221. <p class="body">Many of the properties apply to all panel styles but some are only used when
  1222. 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
  1223. used by a <b>CharacterPosition</b> style panel and determines the information displayed as the selection changes in
  1224. an associated <see cref="T:System.Windows.Forms.RichTextBox"/> control (associated via the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/> property).</p>
  1225. <list type="table">
  1226. <listheader><term>Panel Styles:</term></listheader>
  1227. <item><term>AutoStatusText</term><description>Displays the value of the StatusBarText extender property of the control under the mouse.</description></item>
  1228. <item><term>Button</term><description>A standard push button element with image and text</description></item>
  1229. <item><term>CharacterPosition</term><description>Displays the current line and character number of a <b>RichTextBox</b> control.</description></item>
  1230. <item><term>CursorPosition</term><description>Displays the position of the mouse within the associated <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/></description></item>
  1231. <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>
  1232. <item><term>Date</term><description>The current date</description></item>
  1233. <item><term>KeyState</term><description>The state of a specific key (e.g. NumLock)</description></item>
  1234. <item><term>Marquee</term><description>Animated (scrolling, sliding, etc.) text and image</description></item>
  1235. <item><term>MDIList</term><description>A state button for each MDIChild form</description></item>
  1236. <item><term>Progress</term><description>A progress bar to convey the percentage of a task</description></item>
  1237. <item><term>StateButton</term><description>A standard state button with image and text</description></item>
  1238. <item><term>Text</term><description>Displays image and text</description></item>
  1239. <item><term>Time</term><description>Displays the current time</description></item>
  1240. </list>
  1241. </remarks>
  1242. </member>
  1243. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.#ctor">
  1244. <summary>
  1245. Constructor
  1246. </summary>
  1247. </member>
  1248. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.InitControl(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
  1249. <summary>
  1250. Initializes the backwards reference to the owning UltraStatusBar control.
  1251. </summary>
  1252. <param name="owningControl">Owning UltraStatusBar control</param>
  1253. <exception cref="T:System.NotSupportedException">The UltraStatusPanel's owning control has already been initialized and the specified owningControl is a different control.</exception>
  1254. </member>
  1255. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
  1256. <summary>
  1257. Listens for property change notifications of the object's sub objects.
  1258. </summary>
  1259. <param name="propChangeInfo">Information regarding the property change.</param>
  1260. </member>
  1261. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.OnDispose">
  1262. <summary>
  1263. Handles disposing of the control's resources when the control is disposed.
  1264. </summary>
  1265. </member>
  1266. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DoDefaultAction">
  1267. <summary>
  1268. Used to perform the default action for the panel.
  1269. </summary>
  1270. <remarks>
  1271. <p class="body">This method is invoked from the associated accessible object when the <b>DoDefaultAction</b> of the accessible object is invoked.</p>
  1272. </remarks>
  1273. </member>
  1274. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResolveAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
  1275. <summary>
  1276. Resolves the appearance for the panel.
  1277. </summary>
  1278. <param name="appearance">Structure to update with the appearance info.</param>
  1279. <param name="requestedProps">Appearance properties to resolve.</param>
  1280. </member>
  1281. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ToString">
  1282. <summary>
  1283. Returns a string representation of the object.
  1284. </summary>
  1285. <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>
  1286. </member>
  1287. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShowCaretPositionDialog">
  1288. <summary>
  1289. Used to display the <see cref="T:Infragistics.Win.UltraWinStatusBar.CaretPositionDialog"/>
  1290. </summary>
  1291. <remarks>
  1292. <p class="body">The <b>CaretPositionDialog</b> may be displayed for a
  1293. CharacterPosition style panel whose <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/>
  1294. is a <see cref="T:System.Windows.Forms.RichTextBox"/>. The dialog is similar to the
  1295. one displayed by Visual Studio .Net when you double click on the character position
  1296. status panel.</p>
  1297. </remarks>
  1298. <returns>False if the <b>Control</b> property is not a RichTextBox or if the panel is not
  1299. a CharacterPosition style pane. Otherwise true if the dialog was displayed.</returns>
  1300. </member>
  1301. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CreateAccessibilityInstance">
  1302. <summary>
  1303. Creates a new accessibility object for this panel.
  1304. </summary>
  1305. <returns>The <see cref="T:System.Windows.Forms.AccessibleObject"/> for this panel.</returns>
  1306. </member>
  1307. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeAppearance">
  1308. <summary>
  1309. <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>
  1310. </summary>
  1311. <remarks>
  1312. <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>
  1313. <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>
  1314. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetAppearance"/> method to reset this property to its default value.</p>
  1315. </remarks>
  1316. <returns>Returns true if this property is not set to its default value</returns>
  1317. </member>
  1318. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetAppearance">
  1319. <summary>
  1320. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Appearance"/> property to its default value.
  1321. </summary>
  1322. <remarks>
  1323. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Appearance"/> property to its default value.</p>
  1324. <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>
  1325. </remarks>
  1326. </member>
  1327. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeCharacterPositionFormat">
  1328. <summary>
  1329. <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>
  1330. </summary>
  1331. <remarks>
  1332. <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>
  1333. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetCharacterPositionFormat"/> method to reset this property to its default value.</p>
  1334. </remarks>
  1335. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/>
  1336. <returns>Returns true if this property is not set to its default value</returns>
  1337. </member>
  1338. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetCharacterPositionFormat">
  1339. <summary>
  1340. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/> property to its default value.
  1341. </summary>
  1342. <remarks>
  1343. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/> property to its default value.</p>
  1344. <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>
  1345. </remarks>
  1346. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/>
  1347. </member>
  1348. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeProgressBarInfo">
  1349. <summary>
  1350. <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>
  1351. </summary>
  1352. <remarks>
  1353. <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>
  1354. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetProgressBarInfo"/> method to reset this property to its default value.</p>
  1355. </remarks>
  1356. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/>
  1357. <returns>Returns true if this property is not set to its default value</returns>
  1358. </member>
  1359. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetProgressBarInfo">
  1360. <summary>
  1361. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/> property to its default value.
  1362. </summary>
  1363. <remarks>
  1364. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/> property to its default value.</p>
  1365. <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>
  1366. </remarks>
  1367. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/>
  1368. </member>
  1369. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeKeyStateInfo">
  1370. <summary>
  1371. <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>
  1372. </summary>
  1373. <remarks>
  1374. <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>
  1375. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetKeyStateInfo"/> method to reset this property to its default value.</p>
  1376. </remarks>
  1377. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/>
  1378. <returns>Returns true if this property is not set to its default value</returns>
  1379. </member>
  1380. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetKeyStateInfo">
  1381. <summary>
  1382. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/> property to its default value.
  1383. </summary>
  1384. <remarks>
  1385. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/> property to its default value.</p>
  1386. <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>
  1387. </remarks>
  1388. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/>
  1389. </member>
  1390. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializePadding">
  1391. <summary>
  1392. <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>
  1393. </summary>
  1394. <remarks>
  1395. <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>
  1396. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetPadding"/> method to reset this property to its default value.</p>
  1397. </remarks>
  1398. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/>
  1399. <returns>Returns true if this property is not set to its default value</returns>
  1400. </member>
  1401. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetPadding">
  1402. <summary>
  1403. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/> property to its default value.
  1404. </summary>
  1405. <remarks>
  1406. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/> property to its default value.</p>
  1407. <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>
  1408. </remarks>
  1409. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/>
  1410. </member>
  1411. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ShouldSerializeMarqueeInfo">
  1412. <summary>
  1413. <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>
  1414. </summary>
  1415. <remarks>
  1416. <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>
  1417. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetMarqueeInfo"/> method to reset this property to its default value.</p>
  1418. </remarks>
  1419. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/>
  1420. <returns>Returns true if this property is not set to its default value</returns>
  1421. </member>
  1422. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ResetMarqueeInfo">
  1423. <summary>
  1424. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/> property to its default value.
  1425. </summary>
  1426. <remarks>
  1427. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/> property to its default value.</p>
  1428. <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>
  1429. </remarks>
  1430. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/>
  1431. </member>
  1432. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusBar">
  1433. <summary>
  1434. Returns the owning UltraStatusBar control.
  1435. </summary>
  1436. </member>
  1437. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UIElement">
  1438. <summary>
  1439. Returns the <see cref="T:Infragistics.Win.UIElement"/> used to render the panel.
  1440. </summary>
  1441. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelUIElement"/>
  1442. </member>
  1443. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Appearance">
  1444. <summary>
  1445. Returns or sets the appearance for the panel.
  1446. </summary>
  1447. </member>
  1448. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.HasAppearance">
  1449. <summary>
  1450. Returns true if an appearance object has been created.
  1451. </summary>
  1452. </member>
  1453. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Width">
  1454. <summary>
  1455. Returns or sets the width of the panel.
  1456. </summary>
  1457. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.SizingMode"/>
  1458. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>
  1459. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResizeStyle"/>
  1460. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.WidthResolved"/>
  1461. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>
  1462. </member>
  1463. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.WidthResolved">
  1464. <summary>
  1465. Return the current width of the panel.
  1466. </summary>
  1467. <returns>The current width of the panel.</returns>
  1468. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Width"/>
  1469. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>
  1470. </member>
  1471. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth">
  1472. <summary>
  1473. Returns the width required for an autosized panel.
  1474. </summary>
  1475. <remarks>
  1476. <p class="note">The size for some panel styles (i.e. Progress, ControlContainer and MDIList) cannot be calculated.</p>
  1477. </remarks>
  1478. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Width"/>
  1479. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.WidthResolved"/>
  1480. </member>
  1481. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MinWidth">
  1482. <summary>
  1483. Returns or sets the minimum width for the panel.
  1484. </summary>
  1485. </member>
  1486. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ToolTipText">
  1487. <summary>
  1488. Returns or sets the tooltip for the panel.
  1489. </summary>
  1490. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShowToolTips"/>
  1491. </member>
  1492. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style">
  1493. <summary>
  1494. Returns or sets the style of the panel.
  1495. </summary>
  1496. <remarks>
  1497. <list type="table">
  1498. <listheader><term>Panel Styles:</term></listheader>
  1499. <item><term>AutoStatusText</term><description>Displays the value of the StatusBarText extender property of the control under the mouse.</description></item>
  1500. <item><term>Button</term><description>A standard push button element with image and text</description></item>
  1501. <item><term>CharacterPosition</term><description>Displays the current line and character number of a <b>RichTextBox</b> control.</description></item>
  1502. <item><term>CursorPosition</term><description>Displays the position of the mouse within the associated <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/></description></item>
  1503. <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>
  1504. <item><term>Date</term><description>The current date</description></item>
  1505. <item><term>KeyState</term><description>The state of a specific key (e.g. NumLock)</description></item>
  1506. <item><term>Marquee</term><description>Animated (scrolling, sliding, etc.) text and image</description></item>
  1507. <item><term>MDIList</term><description>A state button for each MDIChild form</description></item>
  1508. <item><term>Progress</term><description>A progress bar to convey the percentage of a task</description></item>
  1509. <item><term>StateButton</term><description>A standard state button with image and text</description></item>
  1510. <item><term>Text</term><description>Displays image and text</description></item>
  1511. <item><term>Time</term><description>Displays the current time</description></item>
  1512. </list>
  1513. </remarks>
  1514. </member>
  1515. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.BorderStyle">
  1516. <summary>
  1517. Returns or sets the border style for a panel.
  1518. </summary>
  1519. <remarks>
  1520. <p class="note">The border style is not used for Button and StateButton style panels.</p>
  1521. </remarks>
  1522. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.BorderStyleResolved"/>
  1523. </member>
  1524. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.BorderStyleResolved">
  1525. <summary>
  1526. Returns the fully resolved border style currently used for the panel.
  1527. </summary>
  1528. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.BorderStyle"/>
  1529. </member>
  1530. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Index">
  1531. <summary>
  1532. Determines the index of the object in the collection.
  1533. </summary>
  1534. <remarks>
  1535. <p class="body">The <b>Index</b> property returns the position of the panel
  1536. within the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/> collection. Panels are displayed in
  1537. order based on their position within the collection.</p>
  1538. </remarks>
  1539. </member>
  1540. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control">
  1541. <summary>
  1542. Returns or sets the control associated with the panel.
  1543. </summary>
  1544. <remarks>
  1545. <p class="body">The <b>Control</b> property determines the control associated with the panel. This
  1546. property is used in different ways depending upon the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>.</p>
  1547. <list type="table">
  1548. <listheader><term>Panel Style:</term></listheader>
  1549. <item><term>CursorPosition</term><description>Uses the control's MouseMove to display the position of the cursor within the control's bounds.</description></item>
  1550. <item><term>CharacterPosition</term><description>Requires a RichTextBox control to display the line and character number within the RichTextBox</description></item>
  1551. <item><term>ContainerControl</term><description>Control to size and position</description></item>
  1552. </list>
  1553. </remarks>
  1554. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  1555. </member>
  1556. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Text">
  1557. <summary>
  1558. Returns or sets the text associated with the panel.
  1559. </summary>
  1560. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DisplayText"/>
  1561. </member>
  1562. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DisplayText">
  1563. <summary>
  1564. Returns the formatted text displayed.
  1565. </summary>
  1566. <remarks>
  1567. <p class="body">For some panel styles, the information displayed by a panel is calculated or changed based on other values.
  1568. The <b>DisplayText</b> returns the text that is currently displayed by the panel taking all formatting into account.</p>
  1569. </remarks>
  1570. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Text"/>
  1571. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DateTimeFormat"/>
  1572. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/>
  1573. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CursorPositionFormat"/>
  1574. </member>
  1575. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Enabled">
  1576. <summary>
  1577. Returns or sets if the panel is enabled.
  1578. </summary>
  1579. </member>
  1580. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Visible">
  1581. <summary>
  1582. Returns or sets if the panel is visible.
  1583. </summary>
  1584. </member>
  1585. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.SizingMode">
  1586. <summary>
  1587. Returns or sets how the panel can be sized.
  1588. </summary>
  1589. <remarks>
  1590. <p class="body">A panel supports 4 sizing modes.</p>
  1591. <list type="table">
  1592. <listheader><term>Sizing Modes</term></listheader>
  1593. <item><term>Automatic</term><description>The width is based on the contents (<see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>)</description></item>
  1594. <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>
  1595. <item><term>Fixed</term><description>The <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Width"/> property is used</description></item>
  1596. <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>
  1597. </list>
  1598. <p class="note">Automatic is invalid for some panel styles (i.e. Progress, ControlContainer and MDIList) cannot be calculated.</p>
  1599. </remarks>
  1600. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>
  1601. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MinWidth"/>
  1602. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResizeStyle"/>
  1603. </member>
  1604. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat">
  1605. <summary>
  1606. Returns or sets the format for the CharacterPosition type panel.
  1607. </summary>
  1608. <remarks>
  1609. <p class="body">The label may include special characters to insert the different values.</p>
  1610. <p class="body">e.g.</p>
  1611. <list type="table">
  1612. <item><term>[Line]</term><description>The current line number</description></item>
  1613. <item><term>[LineCount]</term><description>The total number of lines</description></item>
  1614. <item><term>[Char]</term><description>The character number within the current line</description></item>
  1615. <item><term>[CharCount]</term><description>The total number of characters up to the position of the caret</description></item>
  1616. </list>
  1617. </remarks>
  1618. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DisplayText"/>
  1619. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  1620. </member>
  1621. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CursorPositionFormat">
  1622. <summary>
  1623. Determines the format for the MousePosition type panel.
  1624. </summary>
  1625. <remarks>
  1626. <p class="body">The label may include special characters to insert the different values.</p>
  1627. <p class="body">e.g.</p>
  1628. <list type="table">
  1629. <item><term>[X]</term><description>The current X coordinate</description></item>
  1630. <item><term>[Y]</term><description>The current Y coordinate</description></item>
  1631. <item><term>[Width]</term><description>The width of the associated control</description></item>
  1632. <item><term>[Height]</term><description>The height of the associated control</description></item>
  1633. </list>
  1634. </remarks>
  1635. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DisplayText"/>
  1636. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  1637. </member>
  1638. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DateTimeFormat">
  1639. <summary>
  1640. Returns or sets the format used to display the current <see cref="T:System.DateTime"/> for a Date or Time style panel.
  1641. </summary>
  1642. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DisplayText"/>
  1643. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  1644. </member>
  1645. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo">
  1646. <summary>
  1647. Property settings for a progress bar style panel.
  1648. </summary>
  1649. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  1650. </member>
  1651. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo">
  1652. <summary>
  1653. Property settings for a KeyState style panel.
  1654. </summary>
  1655. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  1656. </member>
  1657. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding">
  1658. <summary>
  1659. Returns or sets the amount of padding between the panel contents and its border
  1660. </summary>
  1661. </member>
  1662. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Checked">
  1663. <summary>
  1664. Returns or sets whether a StateButton style panel is checked.
  1665. </summary>
  1666. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  1667. </member>
  1668. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo">
  1669. <summary>
  1670. Property settings for a marquee style panel.
  1671. </summary>
  1672. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  1673. </member>
  1674. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.WrapText">
  1675. <summary>
  1676. Gets/sets whether text in the non-autosized panels may wrap across lines.
  1677. </summary>
  1678. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.WrapText"/>
  1679. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.SizingMode"/>
  1680. </member>
  1681. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.FormatInfo">
  1682. <summary>
  1683. Gets or sets the culture specific information used to determine how values are formatted.
  1684. </summary>
  1685. </member>
  1686. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AccessibilityObject">
  1687. <summary>
  1688. Returns the <see cref="T:System.Windows.Forms.AccessibleObject"/> for this panel.
  1689. </summary>
  1690. </member>
  1691. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AccessibleDescription">
  1692. <summary>
  1693. Returns or sets the description of the panel displayed by accessibility clients.
  1694. </summary>
  1695. </member>
  1696. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AccessibleName">
  1697. <summary>
  1698. Returns or sets the name of the panel displayed by accessibility clients.
  1699. </summary>
  1700. <remarks>
  1701. <p class="body">By default, the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Text"/> of the panel is used as the name.</p>
  1702. </remarks>
  1703. </member>
  1704. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DefaultAction">
  1705. <summary>
  1706. Returns the accessible action that occurs when the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DoDefaultAction"/> method is invoked via an accessibility client.
  1707. </summary>
  1708. </member>
  1709. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UIRole">
  1710. <summary>
  1711. Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this panel.
  1712. </summary>
  1713. </member>
  1714. <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelTypeConverter">
  1715. <summary>
  1716. UltraStatusPanelTypeConverter.
  1717. </summary>
  1718. </member>
  1719. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  1720. <summary>
  1721. Returns whether this converter can convert the object to the specified type, using the specified context.
  1722. </summary>
  1723. <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
  1724. <param name="destinationType">A System.Type that represents the type you want to convert to.</param>
  1725. <returns>true if this converter can perform the conversion; otherwise, false.</returns>
  1726. </member>
  1727. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  1728. <summary>
  1729. Converts the given value object to the specified type, using the specified
  1730. context and culture information.
  1731. </summary>
  1732. <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
  1733. <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture is assumed.</param>
  1734. <param name="value">The System.Object to convert.</param>
  1735. <param name="destinationType">The System.Type to convert the value parameter to.</param>
  1736. <returns>An System.Object that represents the converted value.</returns>
  1737. </member>
  1738. <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject">
  1739. <summary>
  1740. Accessible object representing a <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject"/>
  1741. </summary>
  1742. </member>
  1743. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
  1744. <summary>
  1745. Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject"/>
  1746. </summary>
  1747. <param name="panel">Associated panel</param>
  1748. </member>
  1749. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.GetMarshallingControl">
  1750. <summary>
  1751. Returns the control used to synchronize accessibility calls.
  1752. </summary>
  1753. <returns>The <see cref="T:System.Windows.Forms.Control"/> used to synchronize accessibility calls.</returns>
  1754. </member>
  1755. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.GetChild(System.Int32)">
  1756. <summary>
  1757. Retrieves the accessible child corresponding to the specified index
  1758. </summary>
  1759. <param name="index">The zero-based index of the accessible child</param>
  1760. <returns>An AccessibleObject that represents the accessible child corresponding to the specified index</returns>
  1761. </member>
  1762. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.GetChildCount">
  1763. <summary>
  1764. Retrieves the number of children belonging to an accessible object.
  1765. </summary>
  1766. <returns>The number of children belonging to an accessible object.</returns>
  1767. </member>
  1768. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.HitTest(System.Int32,System.Int32)">
  1769. <summary>
  1770. Retrieves the child object at the specified screen coordinates.
  1771. </summary>
  1772. <param name="x">The horizontal screen coordinate</param>
  1773. <param name="y">The vertical screen coordinate.</param>
  1774. <returns>The child object at the specified screen coordinates.</returns>
  1775. </member>
  1776. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Navigate(System.Windows.Forms.AccessibleNavigation)">
  1777. <summary>
  1778. Navigates to another accessible object
  1779. </summary>
  1780. <param name="navdir">One of the <b>AccessibleNavigation</b> values</param>
  1781. <returns>An <b>AccessibleObject</b> that represents one of the <b>AccessibleNavigation</b> values</returns>
  1782. </member>
  1783. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.DoDefaultAction">
  1784. <summary>
  1785. Performs the default action associated with this accessible object.
  1786. </summary>
  1787. </member>
  1788. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.DefaultAction">
  1789. <summary>
  1790. Gets a string that describes the default action of the object. Not all objects have a default action.
  1791. </summary>
  1792. </member>
  1793. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Bounds">
  1794. <summary>
  1795. Gets the location and size of the accessible object
  1796. </summary>
  1797. </member>
  1798. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.KeyboardShortcut">
  1799. <summary>
  1800. Gets the shortcut key or access key for the accessible object
  1801. </summary>
  1802. </member>
  1803. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Name">
  1804. <summary>
  1805. Returns the name of the accessible object.
  1806. </summary>
  1807. </member>
  1808. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Parent">
  1809. <summary>
  1810. Gets the parent of an accessible object
  1811. </summary>
  1812. </member>
  1813. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Role">
  1814. <summary>
  1815. Returns the role of the accessible object.
  1816. </summary>
  1817. </member>
  1818. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.State">
  1819. <summary>
  1820. Returns the state of the accessible object.
  1821. </summary>
  1822. </member>
  1823. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.UltraStatusPanelAccessibleObject.Value">
  1824. <summary>
  1825. Gets or sets the value of an accessible object.
  1826. </summary>
  1827. </member>
  1828. <member name="T:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement">
  1829. <summary>
  1830. Button uielement for a Button or StateButton style panel
  1831. </summary>
  1832. </member>
  1833. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.#ctor(Infragistics.Win.IUIElementImageAndTextProvider,Infragistics.Win.UIElement)">
  1834. <summary>
  1835. Initializes a new <b>PanelButtonUIElement</b>
  1836. </summary>
  1837. <param name="provider">Class implementing the IUIElementImageAndTextProvider interface</param>
  1838. <param name="parent">Parent uielement</param>
  1839. </member>
  1840. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.OnClick">
  1841. <summary>
  1842. Invoked when the button has been clicked.
  1843. </summary>
  1844. </member>
  1845. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.OnCheckStateChange">
  1846. <summary>
  1847. Invoked when the checked state of the button changes other than when it is initialized.
  1848. </summary>
  1849. </member>
  1850. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.InitializeDefaultAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
  1851. <summary>
  1852. Invoked during the <see cref="M:Infragistics.Win.ButtonUIElementBase.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)"/> to resolve any remaining appearance values
  1853. after the style specific appearance information has been initialized.
  1854. </summary>
  1855. <param name="appearanceData">AppearanceData structure to update</param>
  1856. <param name="requestedProps">Appearance properties to resolve</param>
  1857. </member>
  1858. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
  1859. <summary>
  1860. Initializes the appearance for the button.
  1861. </summary>
  1862. <param name="appearance">The appearance structure to initialize</param>
  1863. <param name="requestedProps">The properties that are needed</param>
  1864. </member>
  1865. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.Panel">
  1866. <summary>
  1867. Returns the associated UltraStatusPanel
  1868. </summary>
  1869. </member>
  1870. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelButtonUIElement.UIRole">
  1871. <summary>
  1872. Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
  1873. </summary>
  1874. </member>
  1875. <member name="T:Infragistics.Win.UltraWinStatusBar.Design.PanelControlConverter">
  1876. <summary>
  1877. Typeconverter used to determine which controls may be contained by a <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
  1878. </summary>
  1879. </member>
  1880. <member name="M:Infragistics.Win.UltraWinStatusBar.Design.PanelControlConverter.#ctor(System.Type)">
  1881. <summary>
  1882. Initializes a new <b>PanelControlConverter</b>
  1883. </summary>
  1884. <param name="type">Type</param>
  1885. </member>
  1886. <member name="M:Infragistics.Win.UltraWinStatusBar.Design.PanelControlConverter.IsValueAllowed(System.ComponentModel.ITypeDescriptorContext,System.Object)">
  1887. <summary>
  1888. Returns a value indicating whether a particular value can be added to the standard values collection.
  1889. </summary>
  1890. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides an additional context.</param>
  1891. <param name="value">The value to check.</param>
  1892. <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>
  1893. </member>
  1894. <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection">
  1895. <summary>
  1896. Represents a collection of <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> objects.
  1897. </summary>
  1898. <remarks>
  1899. <p class="note">When the panels are displayed based on the order of the items
  1900. within the collection.</p>
  1901. </remarks>
  1902. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/>
  1903. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Index"/>
  1904. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
  1905. </member>
  1906. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
  1907. <summary>
  1908. Initializes a new UltraStatusPanels collection.
  1909. </summary>
  1910. </member>
  1911. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
  1912. <summary>
  1913. Passes along property change notifications from the items in the colleciton.
  1914. </summary>
  1915. <param name="propChangeInfo">Information regarding the property change.</param>
  1916. </member>
  1917. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.CreateArray">
  1918. <summary>
  1919. Virtual method used by the All 'get' method to
  1920. create the array it returns.
  1921. </summary>
  1922. <returns>The newly created object array</returns>
  1923. <remarks>This is normally overridden in a derived class to allocate a type safe array.</remarks>
  1924. </member>
  1925. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add">
  1926. <summary>
  1927. Adds a new UltraStatusPanel to the collection.
  1928. </summary>
  1929. <returns>New panel object</returns>
  1930. </member>
  1931. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(System.String)">
  1932. <summary>
  1933. Adds a new UltraStatusPanel to the collection.
  1934. </summary>
  1935. <param name="key">Key for the panel.</param>
  1936. <returns>New panel object</returns>
  1937. </member>
  1938. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(Infragistics.Win.UltraWinStatusBar.PanelStyle)">
  1939. <summary>
  1940. Adds a new UltraStatusPanel to the collection.
  1941. </summary>
  1942. <param name="style">Style of the panel.</param>
  1943. <returns>New panel object</returns>
  1944. </member>
  1945. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(System.String,System.String)">
  1946. <summary>
  1947. Adds a new UltraStatusPanel to the collection.
  1948. </summary>
  1949. <param name="key">Key for the panel.</param>
  1950. <param name="text">Text for the panel.</param>
  1951. <returns>New panel object</returns>
  1952. </member>
  1953. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(System.String,Infragistics.Win.UltraWinStatusBar.PanelStyle)">
  1954. <summary>
  1955. Adds a new UltraStatusPanel to the collection.
  1956. </summary>
  1957. <param name="key">Key for the panel.</param>
  1958. <param name="style">Style of the panel.</param>
  1959. <returns>New panel object</returns>
  1960. </member>
  1961. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(System.String,System.String,Infragistics.Win.UltraWinStatusBar.PanelStyle)">
  1962. <summary>
  1963. Adds a new UltraStatusPanel to the collection.
  1964. </summary>
  1965. <param name="key">Key for the panel.</param>
  1966. <param name="text">Text of the panel.</param>
  1967. <param name="style">Style of the panel.</param>
  1968. <returns>New panel object</returns>
  1969. </member>
  1970. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Add(System.Object)">
  1971. <summary>
  1972. Adds the specified panel object to the collection.
  1973. </summary>
  1974. <param name="value">Panel object to add.</param>
  1975. <returns>Index of the item in the collection.</returns>
  1976. </member>
  1977. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.AddHelper(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel,System.Boolean)">
  1978. <summary>
  1979. Internal method for adding a new panel to the collection.
  1980. </summary>
  1981. <param name="panel">Panel object to add.</param>
  1982. <param name="notify">True if a notification should be sent when the object is added to the collection.</param>
  1983. <returns>Index of the item in the collection.</returns>
  1984. </member>
  1985. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.AddHelper(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel,System.Boolean,System.Int32)">
  1986. <summary>
  1987. Internal method for adding a new panel to the collection.
  1988. </summary>
  1989. <param name="panel">Panel object to add.</param>
  1990. <param name="notify">True if a notification should be sent when the object is added to the collection.</param>
  1991. <param name="newIndex">New index of the item to insert.</param>
  1992. <returns>Index of the item in the collection.</returns>
  1993. </member>
  1994. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Insert(System.Int32,Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
  1995. <summary>
  1996. Inserts the specified <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> at the specified index.
  1997. </summary>
  1998. <param name="index">Index at which to insert the panel</param>
  1999. <param name="panel">Panel to insert into the collection</param>
  2000. </member>
  2001. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Clear">
  2002. <summary>
  2003. Clears the collection.
  2004. </summary>
  2005. </member>
  2006. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Remove(System.Object)">
  2007. <summary>
  2008. Removes the specified object from the collection.
  2009. </summary>
  2010. <param name="obj">Object to remove</param>
  2011. </member>
  2012. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Remove(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
  2013. <summary>
  2014. Removes the specified <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> from the collection.
  2015. </summary>
  2016. <param name="panel">Panel to remove</param>
  2017. </member>
  2018. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.RemoveAt(System.Int32)">
  2019. <summary>
  2020. Removes the item at the specified index.
  2021. </summary>
  2022. <param name="index">Index of the item to remove.</param>
  2023. </member>
  2024. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.System#Collections#IList#Insert(System.Int32,System.Object)">
  2025. <summary>
  2026. Inserts the object at the specified index.
  2027. </summary>
  2028. <param name="index">Index at which to insert the item.</param>
  2029. <param name="obj">Object to insert.</param>
  2030. </member>
  2031. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.AddRange(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel[])">
  2032. <summary>
  2033. Adds multiple panel objects to the collection.
  2034. </summary>
  2035. <param name="panels">Array of panel objects to add.</param>
  2036. </member>
  2037. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.GetEnumerator">
  2038. <summary>
  2039. Returns the type-safe enumerator for iterating through the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> objects in the collection.
  2040. </summary>
  2041. <returns>A type safe enumerator for iterating through the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>objects in the collection.</returns>
  2042. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelsEnumerator"/>
  2043. </member>
  2044. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.System#Collections#IList#Contains(System.Object)">
  2045. <summary>
  2046. Represents a collection of <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> objects.
  2047. </summary>
  2048. <remarks>
  2049. <p class="note">When the panels are displayed based on the order of the items
  2050. within the collection.</p>
  2051. </remarks>
  2052. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/>
  2053. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Index"/>
  2054. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
  2055. </member>
  2056. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.All">
  2057. <summary>
  2058. The collection as an array of objects
  2059. </summary>
  2060. </member>
  2061. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.InitialCapacity">
  2062. <summary>
  2063. Returns the initial capacity of the collection.
  2064. </summary>
  2065. </member>
  2066. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.IsReadOnly">
  2067. <summary>
  2068. Returns whether the collection may be modified.
  2069. </summary>
  2070. </member>
  2071. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.System#Collections#IList#IsFixedSize">
  2072. <summary>
  2073. Indicates if the collection is a fixed size collection.
  2074. </summary>
  2075. </member>
  2076. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.System#Collections#IList#Item(System.Int32)">
  2077. <summary>
  2078. Gets/sets the object at the specified index.
  2079. </summary>
  2080. </member>
  2081. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Item(System.Int32)">
  2082. <summary>
  2083. Returns the panel object at the specified index.
  2084. </summary>
  2085. </member>
  2086. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection.Item(System.String)">
  2087. <summary>
  2088. Returns the panel object with the specified key.
  2089. </summary>
  2090. </member>
  2091. <member name="T:Infragistics.Win.UltraWinStatusBar.PanelsEnumerator">
  2092. <summary>
  2093. Type-specific enumerator class for enumerating over the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> objects of the
  2094. <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection"/>.
  2095. </summary>
  2096. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanelsCollection"/>
  2097. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>
  2098. </member>
  2099. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelsEnumerator.Current">
  2100. <summary>
  2101. Returns the current <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> object in the enumerator.
  2102. </summary>
  2103. </member>
  2104. <member name="T:Infragistics.Win.UltraWinStatusBar.Design.PanelsCollectionEditor">
  2105. <summary>
  2106. UITypeEditor for the UltraStatusPanelsCollection
  2107. </summary>
  2108. </member>
  2109. <member name="M:Infragistics.Win.UltraWinStatusBar.Design.PanelsCollectionEditor.#ctor(System.Type)">
  2110. <summary>
  2111. Initializes a new PanelsCollectionEditor for the specified type.
  2112. </summary>
  2113. <param name="type">The type of the collection for this editor to edit.</param>
  2114. </member>
  2115. <member name="M:Infragistics.Win.UltraWinStatusBar.Design.PanelsCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
  2116. <summary>
  2117. Edits the value of the specified object using the editor style indicated by <b>GetEditStyle</b>
  2118. </summary>
  2119. <param name="context">ITypeDescriptorContext</param>
  2120. <param name="provider">IServiceProvider</param>
  2121. <param name="value">Object being edited</param>
  2122. <returns>Edited value</returns>
  2123. </member>
  2124. <member name="M:Infragistics.Win.UltraWinStatusBar.Design.PanelsCollectionEditor.CreateCollectionForm">
  2125. <summary>
  2126. Invoked when a form for the CollectionEditor needs to be created.
  2127. </summary>
  2128. <returns>A new instance of a CollectionForm</returns>
  2129. </member>
  2130. <member name="T:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement">
  2131. <summary>
  2132. UIElement for the splitter bar between panels.
  2133. </summary>
  2134. </member>
  2135. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.#ctor(Infragistics.Win.UIElement,Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
  2136. <summary>
  2137. Constructor
  2138. </summary>
  2139. <param name="parent">Parent element</param>
  2140. <param name="panel">Associated panel</param>
  2141. </member>
  2142. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.Initialize(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
  2143. <summary>
  2144. Initializes the splitter element.
  2145. </summary>
  2146. <param name="panel">Associated UltraStatusPanel</param>
  2147. </member>
  2148. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.GetAdjustmentRange(System.Drawing.Point,Infragistics.Win.UIElementAdjustmentRangeParams@)">
  2149. <summary>
  2150. Returns the range limits for adjusting the element in either or both
  2151. dimensions. It also returns the initial rects for the vertical and horizontal
  2152. bars that will need to be inverted during the mouse drag operation.
  2153. </summary>
  2154. <param name="point">The point where the mouse is in client coordinates</param>
  2155. <param name="range">Returned limits</param>
  2156. </member>
  2157. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.ApplyAdjustment(System.Drawing.Point)">
  2158. <summary>
  2159. Called after a move/resize operation.
  2160. </summary>
  2161. <param name="delta">A Point struct which describes the amount by which this <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement"/> has been resized.</param>
  2162. </member>
  2163. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.GetAdjustableCursor(System.Drawing.Point)">
  2164. <summary>
  2165. The cursor to use over the adjustable area of the element
  2166. </summary>
  2167. <param name="point">The point that should be used to determine if the area is adjustable.</param>
  2168. <returns>The cursor that should be used to represent an adjustable region.</returns>
  2169. </member>
  2170. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.OnNewDeltaX(System.Int32)">
  2171. <summary>
  2172. Called when the the X delta has changed.
  2173. </summary>
  2174. <param name="newDeltaX">The change in direction along the x-axis.</param>
  2175. </member>
  2176. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.OnElementAdjustmentStart(System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
  2177. <summary>
  2178. Called when a mousedown is received and a resize operation is started.
  2179. </summary>
  2180. <param name="isUpDownAdjustment">Specifies whether we're adjusting the element vertically.</param>
  2181. <param name="initialUpDownAdjustmentPointInBottomBorder">Specifies whether we've started the adjustment from the bottom border.</param>
  2182. <param name="isLeftRightAdjustment">Specifies whether we're adjusting the element horizontally.</param>
  2183. <param name="initialLeftRightAdjustmentPointInRightBorder">Specifies whether we've started the adjustment from the right border.</param>
  2184. </member>
  2185. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
  2186. <summary>
  2187. Initializes the appearance for the splitter element.
  2188. </summary>
  2189. <param name="appearance">The appearance structure to initialize</param>
  2190. <param name="requestedProps">The properties that are needed</param>
  2191. </member>
  2192. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
  2193. <summary>
  2194. Renders the themed splitter area.
  2195. </summary>
  2196. <param name="drawParams">UIElementDrawParams</param>
  2197. <returns>True if the themed element could be rendered.</returns>
  2198. </member>
  2199. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.OnDoubleClick(System.Boolean)">
  2200. <summary>
  2201. Responds to double click to autosize the panel based on its contents.
  2202. </summary>
  2203. <param name="adjustableArea">True if left clicked over adjustable area of element.</param>
  2204. </member>
  2205. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
  2206. <summary>
  2207. Overriden. Prevents the splitter bar from rendering its own background.
  2208. </summary>
  2209. <param name="drawParams">UIElementDrawParams</param>
  2210. </member>
  2211. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.CanStartAdjustment(System.Windows.Forms.MouseEventArgs)">
  2212. <summary>
  2213. Invoked when the mouse is pressed down on the adjustable area
  2214. before an adjustment begins.
  2215. </summary>
  2216. <param name="e">Mouse event args from the MouseDown</param>
  2217. <returns>True if an adjustment can be started</returns>
  2218. </member>
  2219. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.BorderStyle">
  2220. <summary>
  2221. The style of borders to draw around the splitter.
  2222. </summary>
  2223. </member>
  2224. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.Panel">
  2225. <summary>
  2226. Returns the associated UltraStatusPanel
  2227. </summary>
  2228. </member>
  2229. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.DrawAdjustmentBarWhileSizing">
  2230. <summary>
  2231. True if Adjustment Bar should be drawn while sizing.
  2232. </summary>
  2233. </member>
  2234. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelSplitterUIElement.UIRole">
  2235. <summary>
  2236. Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
  2237. </summary>
  2238. </member>
  2239. <member name="T:Infragistics.Win.UltraWinStatusBar.PanelUIElement">
  2240. <summary>
  2241. PanelUIElement
  2242. </summary>
  2243. </member>
  2244. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.#ctor(Infragistics.Win.UIElement,Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
  2245. <summary>
  2246. Constructor
  2247. </summary>
  2248. <param name="parent">Parent element</param>
  2249. <param name="panel">UltraStatusPanel associated with the element.</param>
  2250. </member>
  2251. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.Initialize(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
  2252. <summary>
  2253. Initializes the primary context of the element with the specified panel.
  2254. </summary>
  2255. <param name="panel">UltraStatusPanel associated with the uielement</param>
  2256. </member>
  2257. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
  2258. <summary>
  2259. Renders the themed size grip.
  2260. </summary>
  2261. <param name="drawParams">UIElementDrawParams</param>
  2262. <returns>True if the themed element could be rendered.</returns>
  2263. </member>
  2264. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
  2265. <summary>
  2266. Initializes the appearance for the panel.
  2267. </summary>
  2268. <param name="appearance">The appearance structure to initialize</param>
  2269. <param name="requestedProps">The properties that are needed</param>
  2270. </member>
  2271. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.PositionChildElements">
  2272. <summary>
  2273. Handles positioning of the appropriate element based on the
  2274. </summary>
  2275. </member>
  2276. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnMouseHover">
  2277. <summary>
  2278. Overrides the OnMouseHover to display a tooltip to the user.
  2279. </summary>
  2280. </member>
  2281. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnMouseLeave">
  2282. <summary>
  2283. Overrides the OnMouseLeave method
  2284. </summary>
  2285. </member>
  2286. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnDoubleClick(System.Boolean)">
  2287. <summary>
  2288. Overriden. Passes along notification about double clicking on a panel.
  2289. </summary>
  2290. <param name="adjustableArea">True if the double click occured in the adjustable area.</param>
  2291. <remarks>
  2292. <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>
  2293. </remarks>
  2294. </member>
  2295. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.CanStartAdjustment(System.Windows.Forms.MouseEventArgs)">
  2296. <summary>
  2297. Invoked when the mouse is pressed down on the adjustable area
  2298. before an adjustment begins.
  2299. </summary>
  2300. <param name="e">Mouse event args from the MouseDown</param>
  2301. <returns>True if an adjustment can be started</returns>
  2302. </member>
  2303. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.GetAdjustmentRange(System.Drawing.Point,Infragistics.Win.UIElementAdjustmentRangeParams@)">
  2304. <summary>
  2305. Returns the range limits for adjusting the element in either or both
  2306. dimensions. It also returns the initial rects for the vertical and horizontal
  2307. bars that will need to be inverted during the mouse drag operation.
  2308. </summary>
  2309. <param name="point">The point where the mouse is in client coordinates</param>
  2310. <param name="range">Returned limits</param>
  2311. </member>
  2312. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.ApplyAdjustment(System.Drawing.Point)">
  2313. <summary>
  2314. Called after a move/resize operation.
  2315. </summary>
  2316. <param name="delta">A Point struct which describes the amount by which this <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelUIElement"/> has been resized.</param>
  2317. </member>
  2318. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.GetAdjustableCursor(System.Drawing.Point)">
  2319. <summary>
  2320. The cursor to use over the adjustable area of the element
  2321. </summary>
  2322. <param name="point">The point that should be used to determine if the area is adjustable.</param>
  2323. <returns>The cursor that should be used to represent an adjustable region.</returns>
  2324. </member>
  2325. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnNewDeltaX(System.Int32)">
  2326. <summary>
  2327. Called when the the X delta has changed.
  2328. </summary>
  2329. <param name="newDeltaX">The change in direction along the x-axis.</param>
  2330. </member>
  2331. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnElementAdjustmentStart(System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
  2332. <summary>
  2333. Called when a mousedown is received and a resize operation is started.
  2334. </summary>
  2335. <param name="isUpDownAdjustment">Specifies whether we're adjusting the element vertically.</param>
  2336. <param name="initialUpDownAdjustmentPointInBottomBorder">Specifies whether we've started the adjustment from the bottom border.</param>
  2337. <param name="isLeftRightAdjustment">Specifies whether we're adjusting the element horizontally.</param>
  2338. <param name="initialLeftRightAdjustmentPointInRightBorder">Specifies whether we've started the adjustment from the right border.</param>
  2339. </member>
  2340. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnMouseDown(System.Windows.Forms.MouseEventArgs,System.Boolean,Infragistics.Win.UIElement@)">
  2341. <summary>
  2342. Invoked when the mouse is pressed down on the element.
  2343. </summary>
  2344. <param name="e">Mouse event args</param>
  2345. <param name="adjustableArea">True if the mouse is over an adjustable area</param>
  2346. <param name="captureMouseForElement">By Ref. Element that should capture the mouse.</param>
  2347. <returns>True to prevent further processing of the message</returns>
  2348. </member>
  2349. <member name="M:Infragistics.Win.UltraWinStatusBar.PanelUIElement.OnClick">
  2350. <summary>
  2351. Invoked when the mouse is clicked on the panel.
  2352. </summary>
  2353. </member>
  2354. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.Panel">
  2355. <summary>
  2356. Returns the associated UltraStatusPanel
  2357. </summary>
  2358. </member>
  2359. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.BorderStyle">
  2360. <summary>
  2361. Returns the border style for the panel element.
  2362. </summary>
  2363. </member>
  2364. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.WantsMouseHoverNotification">
  2365. <summary>
  2366. Overriden. Indicates that the element wants to receive mouse hover notifications.
  2367. </summary>
  2368. </member>
  2369. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.ClipChildren">
  2370. <summary>
  2371. Overriden. The child elements must be clipped if the image
  2372. element is larger than the panel.
  2373. </summary>
  2374. </member>
  2375. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.Enabled">
  2376. <summary>
  2377. Gets/sets whether the element is enabled.
  2378. </summary>
  2379. </member>
  2380. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.IsAccessibleElement">
  2381. <summary>
  2382. Indicates if the element supports accessibility.
  2383. </summary>
  2384. </member>
  2385. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.AccessibilityInstance">
  2386. <summary>
  2387. Returns the accessible object associated with the element.
  2388. </summary>
  2389. <remarks>
  2390. <p class="note"><b>Note</b> Derived elements that plan to return an accessible object must override
  2391. the <see cref="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.IsAccessibleElement"/> member.</p>
  2392. </remarks>
  2393. </member>
  2394. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.UIRole">
  2395. <summary>
  2396. Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
  2397. </summary>
  2398. </member>
  2399. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.Adjustable">
  2400. <summary>
  2401. Indicates if the element may be resized or adjusted using the mouse.
  2402. </summary>
  2403. </member>
  2404. <member name="P:Infragistics.Win.UltraWinStatusBar.PanelUIElement.DrawAdjustmentBarWhileSizing">
  2405. <summary>
  2406. True if Adjustment Bar should be drawn while sizing.
  2407. </summary>
  2408. </member>
  2409. <member name="T:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo">
  2410. <summary>
  2411. Represents the settings for a <b>ProgressBar</b> <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> panel.
  2412. </summary>
  2413. <remarks>
  2414. <p class="body">The <b>ProgressBarInfo</b> maintains the information used when rendering a progress bar style panel. The
  2415. <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
  2416. 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
  2417. appearance of the filled area of the progress bar.</p>
  2418. <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
  2419. supports a number of replacable values. For a complete list, see the <see cref="P:Infragistics.Win.UltraWinProgressBar.UltraProgressBar.Text"/> property.</p>
  2420. <p class="note">If the <see cref="P:Infragistics.Win.UltraControlBase.SupportThemes"/> is set to true and the operating supports XP themes and
  2421. themes are enabled, the progress bar will be rendered using the system themes. When rendering using the system themes, the
  2422. appearance properties will not affect the appearance of the background of the progress bar.</p>
  2423. <p class="node">The alignment and font properties of the <b>FillAppearance</b> are ignored since the values
  2424. must match those of the <b>Appearance</b>. To change these values, set the corresponding properties on the
  2425. <b>Appearance</b>.</p>
  2426. </remarks>
  2427. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/>
  2428. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/>
  2429. </member>
  2430. <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.#ctor">
  2431. <summary>
  2432. Constructor
  2433. </summary>
  2434. </member>
  2435. <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ShouldSerializeAppearance">
  2436. <summary>
  2437. <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>
  2438. </summary>
  2439. <remarks>
  2440. <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>
  2441. <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>
  2442. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ResetAppearance"/> method to reset this property to its default value.</p>
  2443. </remarks>
  2444. <returns>Returns true if this property is not set to its default value</returns>
  2445. </member>
  2446. <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ResetAppearance">
  2447. <summary>
  2448. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Appearance"/> property to its default value.
  2449. </summary>
  2450. <remarks>
  2451. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Appearance"/> property to its default value.</p>
  2452. <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>
  2453. </remarks>
  2454. </member>
  2455. <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ShouldSerializeFillAppearance">
  2456. <summary>
  2457. <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>
  2458. </summary>
  2459. <remarks>
  2460. <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>
  2461. <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>
  2462. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ResetFillAppearance"/> method to reset this property to its default value.</p>
  2463. </remarks>
  2464. <returns>Returns true if this property is not set to its default value</returns>
  2465. </member>
  2466. <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ResetFillAppearance">
  2467. <summary>
  2468. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.FillAppearance"/> property to its default value.
  2469. </summary>
  2470. <remarks>
  2471. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.FillAppearance"/> property to its default value.</p>
  2472. <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>
  2473. </remarks>
  2474. </member>
  2475. <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.InitAppearances(Infragistics.Win.AppearancesCollection)">
  2476. <summary>
  2477. Initialize the class with a reference to the owning control's appearances collection.
  2478. </summary>
  2479. <param name="appearances">Appearances collection</param>
  2480. </member>
  2481. <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.OnDispose">
  2482. <summary>
  2483. Handles disposing of the control's resources when the control is disposed.
  2484. </summary>
  2485. </member>
  2486. <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
  2487. <summary>
  2488. Listens for property change notifications of the object's sub objects.
  2489. </summary>
  2490. <param name="propChangeInfo">Information regarding the property change.</param>
  2491. </member>
  2492. <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ShouldSerialize">
  2493. <summary>
  2494. Returns whether any of the property values for the <b>ProgressBarInfo</b> differ from the default values.
  2495. </summary>
  2496. <returns>True if the object needs to be serialized.</returns>
  2497. </member>
  2498. <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Reset">
  2499. <summary>
  2500. Resets the properties of the progress bar info to their default values.
  2501. </summary>
  2502. </member>
  2503. <member name="M:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ToString">
  2504. <summary>
  2505. Returns a string representation of the object.
  2506. </summary>
  2507. <returns>A string containing the style, minimum and maximum.</returns>
  2508. </member>
  2509. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Minimum">
  2510. <summary>
  2511. Determines the minimum value for the progress bar.
  2512. </summary>
  2513. </member>
  2514. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Maximum">
  2515. <summary>
  2516. Determines the maximum value for the progress bar.
  2517. </summary>
  2518. </member>
  2519. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Appearance">
  2520. <summary>
  2521. Determines the appearance for the unfill area of the progress bar.
  2522. </summary>
  2523. </member>
  2524. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.HasAppearance">
  2525. <summary>
  2526. Indicates if there is an appearance set for the fill.
  2527. </summary>
  2528. </member>
  2529. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.FillAppearance">
  2530. <summary>
  2531. Determines the filled appearance for the progress bar style panel.
  2532. </summary>
  2533. </member>
  2534. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.HasFillAppearance">
  2535. <summary>
  2536. Indicates if there is an appearance set for the fill.
  2537. </summary>
  2538. </member>
  2539. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Value">
  2540. <summary>
  2541. Determines the value for the progress bar panel.
  2542. </summary>
  2543. </member>
  2544. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Style">
  2545. <summary>
  2546. Determines the style of the progress bar panel.
  2547. </summary>
  2548. </member>
  2549. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Label">
  2550. <summary>
  2551. Determines the label displayed on the progress bar.
  2552. </summary>
  2553. </member>
  2554. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.PercentFormat">
  2555. <summary>
  2556. Determines the format for the percent when displaying a formatted percent in the label.
  2557. </summary>
  2558. </member>
  2559. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ShowLabel">
  2560. <summary>
  2561. Gets/sets whether the label for the progress bar is visible.
  2562. </summary>
  2563. </member>
  2564. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.SegmentWidth">
  2565. <summary>
  2566. Gets/sets the width of the segments in a Segmented style progress bar.
  2567. </summary>
  2568. <remarks>
  2569. When set to UltraProgressBar.DefaultSegmentWidth (-1), the default segment width is used. The default
  2570. segment width is equal to 2/3 the size relative to the orientation. e.g. The width of a progress bar segment
  2571. in a horizontal progress bar is approximately 2/3 the height of the control.
  2572. </remarks>
  2573. </member>
  2574. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.ComponentRole">
  2575. <summary>
  2576. Returns or sets the associated component role.
  2577. </summary>
  2578. </member>
  2579. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Infragistics#Win#UltraWinProgressBar#IProgressBarInfo#Orientation">
  2580. <summary>
  2581. Orientation of the progress bar.
  2582. </summary>
  2583. </member>
  2584. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Infragistics#Win#UltraWinProgressBar#IProgressBarInfo#BorderStyle">
  2585. <summary>
  2586. BorderStyle of the progress bar.
  2587. </summary>
  2588. </member>
  2589. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Infragistics#Win#UltraWinProgressBar#IProgressBarInfo#UIRole">
  2590. <summary>
  2591. Returns the UIRole for the main area of the progress bar.
  2592. </summary>
  2593. </member>
  2594. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Infragistics#Win#UltraWinProgressBar#IProgressBarInfo#UIRoleFillArea">
  2595. <summary>
  2596. Returns the UIRole for the fill area of the progress bar.
  2597. </summary>
  2598. </member>
  2599. <member name="P:Infragistics.Win.UltraWinStatusBar.ProgressBarInfo.Infragistics#Win#UltraWinProgressBar#IProgressBarInfo#ResolutionOrder">
  2600. <summary>
  2601. Returns the resolution order to use when resolving the appearance.
  2602. </summary>
  2603. </member>
  2604. <member name="T:Infragistics.Win.UltraWinStatusBar.Resources">
  2605. <summary>
  2606. Exposes a <see cref="T:Infragistics.Shared.ResourceCustomizer"/> instance for this assembly.
  2607. </summary>
  2608. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.Resources.Customizer"/>
  2609. <seealso cref="T:Infragistics.Shared.ResourceCustomizer"/>
  2610. </member>
  2611. <member name="M:Infragistics.Win.UltraWinStatusBar.Resources.GetString(System.String,System.Object[])">
  2612. <summary>
  2613. Returns the resource string using the specified name and default culture.
  2614. </summary>
  2615. <param name="name">Name of the string resource to return.</param>
  2616. <param name="args">Arguments supplied to the string.Format method when formatting the string.</param>
  2617. <returns>The resource string using the specified resource name and default culture.</returns>
  2618. </member>
  2619. <member name="M:Infragistics.Win.UltraWinStatusBar.Resources.GetString(System.String)">
  2620. <summary>
  2621. Returns the resource string using the specified resource name and default culture. The string is then formatted using the arguments specified.
  2622. </summary>
  2623. <param name="name">Name of the string resource to return.</param>
  2624. <returns>The resource string using the specified resource name and default culture.</returns>
  2625. </member>
  2626. <member name="M:Infragistics.Win.UltraWinStatusBar.Resources.GetObject(System.String)">
  2627. <summary>
  2628. Returns the resource object using the specified name.
  2629. </summary>
  2630. <param name="name">Name of the resource item</param>
  2631. <returns>An object containing the specified resource</returns>
  2632. </member>
  2633. <member name="P:Infragistics.Win.UltraWinStatusBar.Resources.Customizer">
  2634. <summary>
  2635. Returns the <see cref="T:Infragistics.Shared.ResourceCustomizer"/> for this assembly.
  2636. </summary>
  2637. <seealso cref="T:Infragistics.Shared.ResourceCustomizer"/>
  2638. </member>
  2639. <member name="T:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement">
  2640. <summary>
  2641. A UIElement class for displaying a windows size grip.
  2642. </summary>
  2643. </member>
  2644. <member name="F:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.DefaultWidth">
  2645. <summary>
  2646. Default width of a windows size grip.
  2647. </summary>
  2648. </member>
  2649. <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.#ctor(Infragistics.Win.UIElement)">
  2650. <summary>
  2651. Initializes a new SizeGripUIElement.
  2652. </summary>
  2653. <param name="parent">Parent UIElement</param>
  2654. </member>
  2655. <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
  2656. <summary>
  2657. Renders the themed size grip.
  2658. </summary>
  2659. <param name="drawParams">UIElementDrawParams</param>
  2660. <returns>True if the themed element could be rendered.</returns>
  2661. </member>
  2662. <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.DrawForeground(Infragistics.Win.UIElementDrawParams@)">
  2663. <summary>
  2664. Renders the size grip.
  2665. </summary>
  2666. <param name="drawParams">UIElementDrawParams</param>
  2667. </member>
  2668. <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.OnMouseDown(System.Windows.Forms.MouseEventArgs,System.Boolean,Infragistics.Win.UIElement@)">
  2669. <summary>
  2670. Invoked when the mouse is pressed on the size grip.
  2671. </summary>
  2672. <param name="e">Mouse event arguments</param>
  2673. <param name="adjustableArea">True if the mouse is in adjustable area of the element</param>
  2674. <param name="captureMouseForElement">By Ref. Used to return the element that should receive mosue capture</param>
  2675. <returns>True if no further processing of the message should occur</returns>
  2676. </member>
  2677. <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.Navigate(System.Windows.Forms.AccessibleNavigation)">
  2678. <summary>
  2679. Navigates to another accessible object
  2680. </summary>
  2681. <param name="navdir">One of the <b>AccessibleNavigation</b> values</param>
  2682. <returns>An <b>AccessibleObject</b> that represents one of the <b>AccessibleNavigation</b> values</returns>
  2683. </member>
  2684. <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
  2685. <summary>
  2686. Initializes the appearance for the button.
  2687. </summary>
  2688. <param name="appearance">The appearance structure to initialize</param>
  2689. <param name="requestedProps">The properties that are needed</param>
  2690. </member>
  2691. <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.DrawImage(Infragistics.Win.UIElementDrawParams@)">
  2692. <summary>
  2693. Renders the size grip image for the element if one was provided.
  2694. </summary>
  2695. <param name="drawParams">UIElementDrawParams</param>
  2696. </member>
  2697. <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.StatusBar">
  2698. <summary>
  2699. Returns the owning <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> control
  2700. </summary>
  2701. </member>
  2702. <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.Cursor">
  2703. <summary>
  2704. Returns the cursor to display when the mouse is over the element.
  2705. </summary>
  2706. </member>
  2707. <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.IsAccessibleElement">
  2708. <summary>
  2709. Indicates if the element supports accessibility.
  2710. </summary>
  2711. </member>
  2712. <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.AccessibilityInstance">
  2713. <summary>
  2714. Returns the accessible object associated with the element.
  2715. </summary>
  2716. <remarks>
  2717. <p class="note"><b>Note</b> Derived elements that plan to return an accessible object must override
  2718. the <see cref="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.IsAccessibleElement"/> member.</p>
  2719. </remarks>
  2720. </member>
  2721. <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.UIRole">
  2722. <summary>
  2723. Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
  2724. </summary>
  2725. </member>
  2726. <member name="T:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.SizeGripAccessibleObject">
  2727. <summary>
  2728. Accessible object representing a <see cref="T:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement"/>
  2729. </summary>
  2730. </member>
  2731. <member name="M:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.SizeGripAccessibleObject.#ctor(Infragistics.Win.UltraWinStatusBar.SizeGripUIElement)">
  2732. <summary>
  2733. Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.SizeGripAccessibleObject"/>
  2734. </summary>
  2735. <param name="element">Associated element</param>
  2736. </member>
  2737. <member name="P:Infragistics.Win.UltraWinStatusBar.SizeGripUIElement.SizeGripAccessibleObject.Role">
  2738. <summary>
  2739. Returns the accessible role of the associated <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/>
  2740. </summary>
  2741. </member>
  2742. <member name="T:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds">
  2743. <summary>
  2744. Enumeration of Property Ids for the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> control
  2745. </summary>
  2746. </member>
  2747. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Appearance">
  2748. <summary>
  2749. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearance"/> property
  2750. </summary>
  2751. </member>
  2752. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.BorderStyle">
  2753. <summary>
  2754. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.BorderStyle"/> property
  2755. </summary>
  2756. </member>
  2757. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.BorderStylePanel">
  2758. <summary>
  2759. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BorderStylePanel"/> property
  2760. </summary>
  2761. </member>
  2762. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Text">
  2763. <summary>
  2764. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Text"/> property
  2765. </summary>
  2766. </member>
  2767. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.PanelAppearance">
  2768. <summary>
  2769. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelAppearance"/> property
  2770. </summary>
  2771. </member>
  2772. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ResizeStyle">
  2773. <summary>
  2774. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResizeStyle"/> property
  2775. </summary>
  2776. </member>
  2777. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.PanelsVisible">
  2778. <summary>
  2779. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelsVisible"/> property
  2780. </summary>
  2781. </member>
  2782. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.SizeGripVisible">
  2783. <summary>
  2784. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.SizeGripVisible"/> property
  2785. </summary>
  2786. </member>
  2787. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ButtonStyle">
  2788. <summary>
  2789. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ButtonStyle"/> property
  2790. </summary>
  2791. </member>
  2792. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Panels">
  2793. <summary>
  2794. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/> property
  2795. </summary>
  2796. </member>
  2797. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Panel">
  2798. <summary>
  2799. Panel object
  2800. </summary>
  2801. </member>
  2802. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Width">
  2803. <summary>
  2804. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Width"/> property
  2805. </summary>
  2806. </member>
  2807. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.MinWidth">
  2808. <summary>
  2809. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MinWidth"/> property
  2810. </summary>
  2811. </member>
  2812. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ToolTipText">
  2813. <summary>
  2814. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ToolTipText"/> property
  2815. </summary>
  2816. </member>
  2817. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Style">
  2818. <summary>
  2819. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Style"/> property
  2820. </summary>
  2821. </member>
  2822. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Control">
  2823. <summary>
  2824. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Control"/> property
  2825. </summary>
  2826. </member>
  2827. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Enabled">
  2828. <summary>
  2829. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Enabled"/> property
  2830. </summary>
  2831. </member>
  2832. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Visible">
  2833. <summary>
  2834. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Visible"/> property
  2835. </summary>
  2836. </member>
  2837. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.SizingMode">
  2838. <summary>
  2839. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.SizingMode"/> property
  2840. </summary>
  2841. </member>
  2842. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ImageList">
  2843. <summary>
  2844. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageList"/> property
  2845. </summary>
  2846. </member>
  2847. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.DateTimeFormat">
  2848. <summary>
  2849. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.DateTimeFormat"/> property
  2850. </summary>
  2851. </member>
  2852. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ScaleImages">
  2853. <summary>
  2854. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaleImages"/> property
  2855. </summary>
  2856. </member>
  2857. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.MarqueeStyle">
  2858. <summary>
  2859. <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeStyle"/> property
  2860. </summary>
  2861. </member>
  2862. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Direction">
  2863. <summary>
  2864. <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeDirection"/> property
  2865. </summary>
  2866. </member>
  2867. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ScrollAmount">
  2868. <summary>
  2869. <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.MarqueeScrollAmount"/> property
  2870. </summary>
  2871. </member>
  2872. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Delay">
  2873. <summary>
  2874. <see cref="P:Infragistics.Win.UltraWinStatusBar.MarqueeInfo.Delay"/> property
  2875. </summary>
  2876. </member>
  2877. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.InterPanelSpacing">
  2878. <summary>
  2879. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.InterPanelSpacing"/> property
  2880. </summary>
  2881. </member>
  2882. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ScaledImageSize">
  2883. <summary>
  2884. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaledImageSize"/> property
  2885. </summary>
  2886. </member>
  2887. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ProgressBarInfo">
  2888. <summary>
  2889. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.ProgressBarInfo"/> property
  2890. </summary>
  2891. </member>
  2892. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.CursorPositionFormat">
  2893. <summary>
  2894. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CursorPositionFormat"/> property
  2895. </summary>
  2896. </member>
  2897. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.CharacterPositionFormat">
  2898. <summary>
  2899. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.CharacterPositionFormat"/> property
  2900. </summary>
  2901. </member>
  2902. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Left">
  2903. <summary>
  2904. <see cref="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Left"/> property
  2905. </summary>
  2906. </member>
  2907. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Right">
  2908. <summary>
  2909. <see cref="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Right"/> property
  2910. </summary>
  2911. </member>
  2912. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Top">
  2913. <summary>
  2914. <see cref="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Top"/> property
  2915. </summary>
  2916. </member>
  2917. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Bottom">
  2918. <summary>
  2919. <see cref="P:Infragistics.Win.UltraWinStatusBar.UIElementMargins.Bottom"/> property
  2920. </summary>
  2921. </member>
  2922. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Padding">
  2923. <summary>
  2924. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Padding"/> property
  2925. </summary>
  2926. </member>
  2927. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Key">
  2928. <summary>
  2929. <see cref="P:Infragistics.Shared.KeyedSubObjectBase.Key"/> property
  2930. </summary>
  2931. </member>
  2932. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.OnText">
  2933. <summary>
  2934. <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OnText"/> property
  2935. </summary>
  2936. </member>
  2937. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.OffText">
  2938. <summary>
  2939. <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.OffText"/> property
  2940. </summary>
  2941. </member>
  2942. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.DisplayStyle">
  2943. <summary>
  2944. <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.DisplayStyle"/> property
  2945. </summary>
  2946. </member>
  2947. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.KeyStateInfo">
  2948. <summary>
  2949. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.KeyStateInfo"/> property
  2950. </summary>
  2951. </member>
  2952. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ShowToolTips">
  2953. <summary>
  2954. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShowToolTips"/>
  2955. </summary>
  2956. </member>
  2957. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Index">
  2958. <summary>
  2959. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Index"/> property
  2960. </summary>
  2961. </member>
  2962. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Checked">
  2963. <summary>
  2964. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Checked"/> property
  2965. </summary>
  2966. </member>
  2967. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.KeyStateToggled">
  2968. <summary>
  2969. <see cref="P:Infragistics.Win.UltraWinStatusBar.KeyStateInfo.Toggled"/> property
  2970. </summary>
  2971. </member>
  2972. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.Appearances">
  2973. <summary>
  2974. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearances"/> collection property
  2975. </summary>
  2976. </member>
  2977. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ImageTransparentColor">
  2978. <summary>
  2979. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageTransparentColor"/> property
  2980. </summary>
  2981. </member>
  2982. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.UseMnemonic">
  2983. <summary>
  2984. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UseMnemonic"/> property
  2985. </summary>
  2986. </member>
  2987. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.WrapText">
  2988. <summary>
  2989. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.WrapText"/> and <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.WrapText"/> properties
  2990. </summary>
  2991. </member>
  2992. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.FormatInfo">
  2993. <summary>
  2994. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.FormatInfo"/> property
  2995. </summary>
  2996. </member>
  2997. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.MarqueeInfo">
  2998. <summary>
  2999. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.MarqueeInfo"/> property
  3000. </summary>
  3001. </member>
  3002. <member name="F:Infragistics.Win.UltraWinStatusBar.StatusBarPropertyIds.ViewStyle">
  3003. <summary>
  3004. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle"/> property
  3005. </summary>
  3006. </member>
  3007. <member name="T:Infragistics.Win.UltraWinStatusBar.TimerManager">
  3008. <summary>
  3009. Class for managing a simple 1/2 second timer.
  3010. </summary>
  3011. </member>
  3012. <member name="E:Infragistics.Win.UltraWinStatusBar.TimerManager.TimeElapsed">
  3013. <summary>
  3014. Internal event notification for a 1 second interval.
  3015. </summary>
  3016. </member>
  3017. <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar">
  3018. <summary>
  3019. Represents a Windows style status bar control.
  3020. </summary>
  3021. <remarks>
  3022. <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
  3023. <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
  3024. <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
  3025. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelsVisible"/> property.</p>
  3026. <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
  3027. 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
  3028. 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"/>
  3029. events fire before and after the drag operation occurs respectively. When the same area of the panel is double clicked, the width of the
  3030. panel (if the <b>Style</b> supports autosizing) will be set to the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.AutoSizeWidth"/>.</p>
  3031. <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
  3032. 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
  3033. <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterAutoSizePanel"/>) are fired before the width of the panel is changed.</p>
  3034. <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
  3035. 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
  3036. a sizing operation, the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragSizeGrip"/> event is fired.</p>
  3037. </remarks>
  3038. </member>
  3039. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.#ctor">
  3040. <summary>
  3041. Constructor
  3042. </summary>
  3043. </member>
  3044. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.System#ComponentModel#IExtenderProvider#CanExtend(System.Object)">
  3045. <summary>
  3046. Indicates which controls can have a status text extender property.
  3047. </summary>
  3048. <param name="extendee">Object to check if it can be extended.</param>
  3049. <returns>True if the control can have a status text extender property.</returns>
  3050. </member>
  3051. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#IUIElementImageAndTextProvider#GetImagePadding(Infragistics.Win.ImageAndTextUIElement)">
  3052. <summary>
  3053. Returns the padding around the image.
  3054. </summary>
  3055. </member>
  3056. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeAppearances">
  3057. <summary>
  3058. <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>
  3059. </summary>
  3060. <remarks>
  3061. <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>
  3062. <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>
  3063. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetAppearances"/> method to reset this property to its default value.</p>
  3064. </remarks>
  3065. <returns>Returns true if this property is not set to its default value</returns>
  3066. </member>
  3067. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetAppearances">
  3068. <summary>
  3069. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearances"/> property to its default value.
  3070. </summary>
  3071. <remarks>
  3072. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearances"/> property to its default value.</p>
  3073. <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>
  3074. </remarks>
  3075. </member>
  3076. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeAppearance">
  3077. <summary>
  3078. <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>
  3079. </summary>
  3080. <remarks>
  3081. <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>
  3082. <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>
  3083. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetAppearance"/> method to reset this property to its default value.</p>
  3084. </remarks>
  3085. <returns>Returns true if this property is not set to its default value</returns>
  3086. </member>
  3087. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetAppearance">
  3088. <summary>
  3089. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearance"/> property to its default value.
  3090. </summary>
  3091. <remarks>
  3092. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearance"/> property to its default value.</p>
  3093. <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>
  3094. </remarks>
  3095. </member>
  3096. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializePanelAppearance">
  3097. <summary>
  3098. <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>
  3099. </summary>
  3100. <remarks>
  3101. <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>
  3102. <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>
  3103. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPanelAppearance"/> method to reset this property to its default value.</p>
  3104. </remarks>
  3105. <returns>Returns true if this property is not set to its default value</returns>
  3106. </member>
  3107. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPanelAppearance">
  3108. <summary>
  3109. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelAppearance"/> property to its default value.
  3110. </summary>
  3111. <remarks>
  3112. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelAppearance"/> property to its default value.</p>
  3113. <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>
  3114. </remarks>
  3115. </member>
  3116. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializePanels">
  3117. <summary>
  3118. <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>
  3119. </summary>
  3120. <remarks>
  3121. <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>
  3122. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPanels"/> method to reset this property to its default value.</p>
  3123. </remarks>
  3124. <returns>Returns true if this property is not set to its default value</returns>
  3125. </member>
  3126. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPanels">
  3127. <summary>
  3128. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/> property to its default value.
  3129. </summary>
  3130. <remarks>
  3131. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels"/> property to its default value.</p>
  3132. <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>
  3133. </remarks>
  3134. </member>
  3135. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeScaledImageSize">
  3136. <summary>
  3137. <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>
  3138. </summary>
  3139. <remarks>
  3140. <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>
  3141. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetScaledImageSize"/> method to reset this property to its default value.</p>
  3142. </remarks>
  3143. <returns>Returns true if this property is not set to its default value</returns>
  3144. </member>
  3145. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetScaledImageSize">
  3146. <summary>
  3147. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaledImageSize"/> property to its default value.
  3148. </summary>
  3149. <remarks>
  3150. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaledImageSize"/> property to its default value.</p>
  3151. <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>
  3152. </remarks>
  3153. </member>
  3154. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializePadding">
  3155. <summary>
  3156. <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>
  3157. </summary>
  3158. <remarks>
  3159. <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>
  3160. <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>
  3161. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPadding"/> method to reset this property to its default value.</p>
  3162. </remarks>
  3163. <returns>Returns true if this property is not set to its default value</returns>
  3164. </member>
  3165. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetPadding">
  3166. <summary>
  3167. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Padding"/> property to its default value.
  3168. </summary>
  3169. <remarks>
  3170. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Padding"/> property to its default value.</p>
  3171. <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>
  3172. </remarks>
  3173. </member>
  3174. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeImageTransparentColor">
  3175. <summary>
  3176. <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>
  3177. </summary>
  3178. <remarks>
  3179. <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>
  3180. <p class="body">Invoke the <see cref="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetImageTransparentColor"/> method to reset this property to its default value.</p>
  3181. </remarks>
  3182. <returns>Returns true if this property is not set to its default value</returns>
  3183. </member>
  3184. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetImageTransparentColor">
  3185. <summary>
  3186. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageTransparentColor"/> property to its default value.
  3187. </summary>
  3188. <remarks>
  3189. <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageTransparentColor"/> property to its default value.</p>
  3190. <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>
  3191. </remarks>
  3192. </member>
  3193. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShouldSerializeViewStyle">
  3194. <summary>
  3195. Indicates whether the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle"/> property needs to be serialized.
  3196. </summary>
  3197. <returns>Returns true if this property is not set to its default value</returns>
  3198. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle"/>
  3199. </member>
  3200. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResetViewStyle">
  3201. <summary>
  3202. Resets the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle"/> property to its default value.
  3203. </summary>
  3204. <seealso cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle"/>
  3205. </member>
  3206. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.GetStatusBarText(System.ComponentModel.Component)">
  3207. <summary>
  3208. Gets the text for the specified component that will be displayed in an AutoStatusText style panel.
  3209. </summary>
  3210. <param name="component">Component for which to obtain the text.</param>
  3211. <returns>The text associated with the component or an empty string if no
  3212. text exists for the specified component.</returns>
  3213. <remarks>
  3214. <p class="body">The StatusBarText is the string that is displayed for a
  3215. <see cref="T:System.Windows.Forms.Control"/> when the mouse is moved over the bounds of the
  3216. Control. The StatusBarText also works with <see cref="T:System.Windows.Forms.MenuItem"/> components.</p>
  3217. <p class="note"><b>Note</b> This method only affects the text that is displayed for
  3218. <b>AutoStatusText</b> style panel objects. To change the text for a panel, use the
  3219. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Text"/> property.</p>
  3220. <p class="note"><b>Note</b> For controls, this method relies upon the MouseEnter and MouseLeave
  3221. event notifications. If a control is completely covered by a child control, it may appear that the
  3222. property is not working. However, the problem is that the MouseLeave will be invoked when the
  3223. mouse moves over the bounds of a different control.</p>
  3224. </remarks>
  3225. </member>
  3226. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.SetStatusBarText(System.ComponentModel.Component,System.String)">
  3227. <summary>
  3228. This sets the status bar text extender property for the specified component.
  3229. </summary>
  3230. <param name="component">Component to add,remove or modify the status text of.</param>
  3231. <param name="text">Text</param>
  3232. <remarks>
  3233. <p class="body">To remove the status text for a component, pass a null or empty string.</p>
  3234. <p class="body">The StatusBarText is the string that is displayed for a
  3235. <see cref="T:System.Windows.Forms.Control"/> when the mouse is moved over the bounds of the
  3236. Control. The StatusBarText also works with <see cref="T:System.Windows.Forms.MenuItem"/> components.</p>
  3237. <p class="note"><b>Note</b> This method only affects the text that is displayed for
  3238. <b>AutoStatusText</b> style panel objects. To change the text for a panel, use the
  3239. <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel.Text"/> property.</p>
  3240. <p class="note"><b>Note</b> For controls, this method relies upon the MouseEnter and MouseLeave
  3241. event notifications. If a control is completely covered by a child control, it may appear that the
  3242. property is not working. However, the problem is that the MouseLeave will be invoked when the
  3243. mouse moves over the bounds of a different control.</p>
  3244. </remarks>
  3245. </member>
  3246. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResolveAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
  3247. <summary>
  3248. Updates the supplied AppearanceData structure with the resolved values for the control's appearance.
  3249. </summary>
  3250. <param name="appearance">Structure to update with the resolved values.</param>
  3251. <param name="requestedProps">Appearance properties to resolve.</param>
  3252. </member>
  3253. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResolvePanelAppearance(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel,Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
  3254. <summary>
  3255. Updates the supplied AppearanceData structure with the resolved values for the specified panel's appearance.
  3256. </summary>
  3257. <param name="panel">UltraStatusPanel whose appearance will be resolved.</param>
  3258. <param name="appearance">Structure to update with the resolved values.</param>
  3259. <param name="requestedProps">Appearance properties to resolve.</param>
  3260. </member>
  3261. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Dispose(System.Boolean)">
  3262. <summary>
  3263. Handles disposing of the control's resources when the control is disposed.
  3264. </summary>
  3265. <param name="disposing">True if managed resources are to be released.</param>
  3266. </member>
  3267. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.IsPointDesignTimeActive(System.Drawing.Point)">
  3268. <summary>
  3269. Determines if the element at the specified point reacts to mouse activity at design time.
  3270. </summary>
  3271. <param name="pt">Point in client coordinates.</param>
  3272. <returns>True if the point is active at design time.</returns>
  3273. </member>
  3274. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.DisplayPanelToolTip(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel)">
  3275. <summary>
  3276. Displays the tooltip for a statusbar panel.
  3277. </summary>
  3278. <param name="panel">UltraStatusPanel</param>
  3279. </member>
  3280. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.HidePanelToolTip">
  3281. <summary>
  3282. Hides any UltraStatusPanel tooltip currently displayed.
  3283. </summary>
  3284. </member>
  3285. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.DisplayMDIPanelToolTip(Infragistics.Win.UltraWinStatusBar.UltraStatusPanel,System.String)">
  3286. <summary>
  3287. Displays the tooltip text for an <see cref="T:Infragistics.Win.UltraWinStatusBar.MDIButtonUIElement"/> when the text isn't fully rendered.
  3288. </summary>
  3289. <param name="panel">Panel containing the mdi button</param>
  3290. <param name="text">Text associated with the specific mdi button</param>
  3291. </member>
  3292. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnDockChanged(System.EventArgs)">
  3293. <summary>
  3294. Overriden. Invoked when the dock property of the control changes.
  3295. </summary>
  3296. <param name="e">EventArgs</param>
  3297. </member>
  3298. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnLocationChanged(System.EventArgs)">
  3299. <summary>
  3300. Overriden. Invoked when the location of the control changes.
  3301. </summary>
  3302. <param name="e">EventArgs</param>
  3303. </member>
  3304. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnParentChanged(System.EventArgs)">
  3305. <summary>
  3306. Overriden. Invoked when the parent of the control changes.
  3307. </summary>
  3308. <param name="e">EventArgs</param>
  3309. </member>
  3310. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnCreateControl">
  3311. <summary>
  3312. Invoked when the control is first created.
  3313. </summary>
  3314. </member>
  3315. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnOffice2007ColorSchemeChanged">
  3316. <summary>
  3317. Called when the Office2007 color scheme has changed
  3318. </summary>
  3319. </member>
  3320. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnResize(System.EventArgs)">
  3321. <summary>
  3322. Called when the control has been resized
  3323. </summary>
  3324. <param name="e"></param>
  3325. </member>
  3326. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ProcessMnemonic(System.Char)">
  3327. <summary>
  3328. Overriden. Processes the mnemonic character.
  3329. </summary>
  3330. <param name="charCode">The character to process</param>
  3331. <returns><b>true</b> if the character was processed as a mnemonic of a Button or StateButton style panel; otherwise, false</returns>
  3332. </member>
  3333. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.CreateAccessibilityInstance">
  3334. <summary>
  3335. Creates a new accessibility object for the control.
  3336. </summary>
  3337. <returns>A new accessibility object for the control.</returns>
  3338. </member>
  3339. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.CreateAccessibilityInstance(System.Object)">
  3340. <summary>
  3341. Creates an accessible object for the related object.
  3342. </summary>
  3343. <param name="relatedObject">The logically related object (e.g. an UltraStatusBar, UltraStatusPanel, etc.).</param>
  3344. <returns>A new <see cref="T:System.Windows.Forms.AccessibleObject"/> object for the related object.</returns>
  3345. </member>
  3346. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnFontChanged(System.EventArgs)">
  3347. <summary>
  3348. Invoked when the <see cref="P:System.Windows.Forms.Control.Font"/> property has changed.
  3349. </summary>
  3350. <param name="e">Event args</param>
  3351. </member>
  3352. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.CreateComponentRole">
  3353. <summary>
  3354. Factory method used to create the component role that provides the style information for the control.
  3355. </summary>
  3356. </member>
  3357. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnPropertyChanged(Infragistics.Win.PropertyChangedEventArgs)">
  3358. <summary>
  3359. Used to invoke the <see cref="E:Infragistics.Win.UltraControlBase.PropertyChanged"/> event.
  3360. </summary>
  3361. <param name="e">Event arguments for the <see cref="E:Infragistics.Win.UltraControlBase.PropertyChanged"/> event</param>
  3362. </member>
  3363. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnMouseEnterElement(Infragistics.Win.UIElementEventArgs)">
  3364. <summary>
  3365. Raises the <see cref="E:Infragistics.Win.UltraComponentControlManagerBase.MouseEnterElement"/> event when the mouse is moved over a UIElement.
  3366. </summary>
  3367. <param name="e">A <see cref="T:Infragistics.Win.UIElementEventArgs"/> that provides data for the event.</param>
  3368. <remarks>
  3369. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3370. <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>
  3371. <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>
  3372. </remarks>
  3373. <seealso cref="T:Infragistics.Win.UIElementEventArgs"/>
  3374. <seealso cref="E:Infragistics.Win.UltraComponentControlManagerBase.MouseEnterElement"/>
  3375. </member>
  3376. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnMouseLeaveElement(Infragistics.Win.UIElementEventArgs)">
  3377. <summary>
  3378. Raises the <see cref="E:Infragistics.Win.UltraComponentControlManagerBase.MouseLeaveElement"/> event when the mouse is moved out of a UIElement.
  3379. </summary>
  3380. <param name="e">A <see cref="T:Infragistics.Win.UIElementEventArgs"/> that provides data for the event.</param>
  3381. <remarks>
  3382. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3383. <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>
  3384. <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>
  3385. </remarks>
  3386. <seealso cref="T:Infragistics.Win.UIElementEventArgs"/>
  3387. <seealso cref="E:Infragistics.Win.UltraComponentControlManagerBase.MouseLeaveElement"/>
  3388. </member>
  3389. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnAfterAutoSizePanel(Infragistics.Win.UltraWinStatusBar.PanelEventArgs)">
  3390. <summary>
  3391. Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterAutoSizePanel"/> after an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> has been autosized.
  3392. </summary>
  3393. <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/> that provides data for the event.</param>
  3394. <remarks>
  3395. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3396. <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>
  3397. <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>
  3398. </remarks>
  3399. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/>
  3400. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterAutoSizePanel"/>
  3401. </member>
  3402. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnAfterDisplayCharacterPositionDialog(Infragistics.Win.UltraWinStatusBar.PanelEventArgs)">
  3403. <summary>
  3404. 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>
  3405. </summary>
  3406. <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/> that provides data for the event.</param>
  3407. <remarks>
  3408. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3409. <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>
  3410. <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>
  3411. </remarks>
  3412. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/>
  3413. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDisplayCharacterPositionDialog"/>
  3414. </member>
  3415. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnAfterDragResize(Infragistics.Win.UltraWinStatusBar.PanelEventArgs)">
  3416. <summary>
  3417. Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDragResize"/> event after a splitter bar for a panel has been released
  3418. </summary>
  3419. <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/> that provides data for the event.</param>
  3420. <remarks>
  3421. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3422. <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>
  3423. <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>
  3424. </remarks>
  3425. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/>
  3426. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDragResize"/>
  3427. </member>
  3428. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnPanelClick(Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs)">
  3429. <summary>
  3430. Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelClick"/> event when a panel is clicked
  3431. </summary>
  3432. <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs"/> that provides data for the event.</param>
  3433. <remarks>
  3434. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3435. <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>
  3436. <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>
  3437. </remarks>
  3438. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs"/>
  3439. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelClick"/>
  3440. </member>
  3441. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnBeforeAutoSizePanel(Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs)">
  3442. <summary>
  3443. Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeAutoSizePanel"/> before an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> has been autosized.
  3444. </summary>
  3445. <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/> that provides data for the event.</param>
  3446. <remarks>
  3447. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3448. <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>
  3449. <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>
  3450. </remarks>
  3451. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/>
  3452. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeAutoSizePanel"/>
  3453. </member>
  3454. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnBeforeDisplayCharacterPositionDialog(Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs)">
  3455. <summary>
  3456. 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>
  3457. </summary>
  3458. <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/> that provides data for the event.</param>
  3459. <remarks>
  3460. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3461. <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>
  3462. <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>
  3463. </remarks>
  3464. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/>
  3465. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDisplayCharacterPositionDialog"/>
  3466. </member>
  3467. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnBeforeDragResize(Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs)">
  3468. <summary>
  3469. Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragResize"/> event before the drag of a splitter bar for a panel begins
  3470. </summary>
  3471. <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/> that provides data for the event.</param>
  3472. <remarks>
  3473. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3474. <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>
  3475. <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>
  3476. </remarks>
  3477. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.CancelablePanelEventArgs"/>
  3478. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragResize"/>
  3479. </member>
  3480. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnBeforeDragSizeGrip(System.ComponentModel.CancelEventArgs)">
  3481. <summary>
  3482. 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
  3483. </summary>
  3484. <param name="e">A <see cref="T:System.ComponentModel.CancelEventArgs"/> that provides data for the event.</param>
  3485. <remarks>
  3486. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3487. <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>
  3488. <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>
  3489. </remarks>
  3490. <seealso cref="T:System.ComponentModel.CancelEventArgs"/>
  3491. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragSizeGrip"/>
  3492. </member>
  3493. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnPanelDoubleClick(Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs)">
  3494. <summary>
  3495. Raises the <see cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelDoubleClick"/> event when an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> been double clicked.
  3496. </summary>
  3497. <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs"/> that provides data for the event.</param>
  3498. <remarks>
  3499. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3500. <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>
  3501. <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>
  3502. </remarks>
  3503. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelClickEventArgs"/>
  3504. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelDoubleClick"/>
  3505. </member>
  3506. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.OnButtonClick(Infragistics.Win.UltraWinStatusBar.PanelEventArgs)">
  3507. <summary>
  3508. 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.
  3509. </summary>
  3510. <param name="e">A <see cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/> that provides data for the event.</param>
  3511. <remarks>
  3512. <p class="body">Raising an event invokes the event handler through a delegate.</p>
  3513. <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>
  3514. <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>
  3515. </remarks>
  3516. <seealso cref="T:Infragistics.Win.UltraWinStatusBar.PanelEventArgs"/>
  3517. <seealso cref="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ButtonClick"/>
  3518. </member>
  3519. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#UltraWinDock#IDockingArea#PriorityLevel">
  3520. <summary>
  3521. Returns the priority level for the component when docked. A statusbar should reside outside the toolbar area.
  3522. </summary>
  3523. </member>
  3524. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#IImageListProvider#ImageList">
  3525. <summary>
  3526. Returns the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageList"/> property.
  3527. </summary>
  3528. </member>
  3529. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.About">
  3530. <summary>
  3531. Displays the About dialog for the control.
  3532. </summary>
  3533. </member>
  3534. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Shared#IUltraLicensedComponent#License">
  3535. <summary>
  3536. Return the license we cached inside the constructor
  3537. </summary>
  3538. </member>
  3539. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#IStatusBar#AutoSense">
  3540. <summary>
  3541. Gets/sets whether the control should display the <see cref="P:Infragistics.Win.IStatusBar.StatusText"/>
  3542. or the StatusText associated with the control under the mouse.
  3543. </summary>
  3544. </member>
  3545. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#IStatusBar#StatusText">
  3546. <summary>
  3547. Gets/sets the status bar text displayed in a StatusText style
  3548. panel when the <see cref="P:Infragistics.Win.IStatusBar.AutoSense"/> property
  3549. is set to false.
  3550. </summary>
  3551. </member>
  3552. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Infragistics#Win#IStatusBar#ToolbarsManager">
  3553. <summary>
  3554. Gets/sets the toolbars manager.
  3555. </summary>
  3556. </member>
  3557. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BackColor">
  3558. <summary>
  3559. Backcolor property - use the Appearance property instead.
  3560. </summary>
  3561. </member>
  3562. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BackgroundImage">
  3563. <summary>
  3564. BackgroundImage property - use the Appearance property instead.
  3565. </summary>
  3566. </member>
  3567. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Font">
  3568. <summary>
  3569. Font property - use the Appearance property instead.
  3570. </summary>
  3571. </member>
  3572. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ForeColor">
  3573. <summary>
  3574. ForeColor property - use the Appearance property instead.
  3575. </summary>
  3576. </member>
  3577. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Cursor">
  3578. <summary>
  3579. Cursor property - use the Appearance property instead.
  3580. </summary>
  3581. </member>
  3582. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.KeyDown">
  3583. <summary>
  3584. KeyDown event is not used by a status bar.
  3585. </summary>
  3586. </member>
  3587. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.KeyUp">
  3588. <summary>
  3589. KeyUp event is not used by a status bar.
  3590. </summary>
  3591. </member>
  3592. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.KeyPress">
  3593. <summary>
  3594. KeyPress event is not used by a status bar.
  3595. </summary>
  3596. </member>
  3597. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ControlUIElement">
  3598. <summary>
  3599. Returns the corresponding control uielement.
  3600. </summary>
  3601. </member>
  3602. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.DefaultImeMode">
  3603. <summary>
  3604. Determines the default ImeMode for the control.
  3605. </summary>
  3606. </member>
  3607. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImeMode">
  3608. <summary>
  3609. Determines the ImeMode for the control.
  3610. </summary>
  3611. </member>
  3612. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.TabStop">
  3613. <summary>
  3614. Determines whether the control will receive focus when tabbing through the controls.
  3615. </summary>
  3616. </member>
  3617. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.DefaultSize">
  3618. <summary>
  3619. Returns the default size for the control.
  3620. </summary>
  3621. </member>
  3622. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearances">
  3623. <summary>
  3624. Returns the collection of user created appearance objects.
  3625. </summary>
  3626. </member>
  3627. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Appearance">
  3628. <summary>
  3629. Gets/sets the default appearance for the control.
  3630. </summary>
  3631. </member>
  3632. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.HasAppearance">
  3633. <summary>
  3634. Returns true if an appearance object has been created.
  3635. </summary>
  3636. </member>
  3637. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelAppearance">
  3638. <summary>
  3639. Gets/sets the default appearance for the panels.
  3640. </summary>
  3641. </member>
  3642. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.HasPanelAppearance">
  3643. <summary>
  3644. Returns true if the panel appearance object has been created.
  3645. </summary>
  3646. </member>
  3647. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ResizeStyle">
  3648. <summary>
  3649. Determines how a panel is resized.
  3650. </summary>
  3651. </member>
  3652. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BorderStyle">
  3653. <summary>
  3654. Determines the border style for the control.
  3655. </summary>
  3656. </member>
  3657. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BorderStyleResolved">
  3658. <summary>
  3659. Returns the resolved border style for the control.
  3660. </summary>
  3661. </member>
  3662. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BorderStylePanel">
  3663. <summary>
  3664. Determines the default border style for a panel.
  3665. </summary>
  3666. </member>
  3667. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelsVisible">
  3668. <summary>
  3669. Determines if the panels are displayed.
  3670. </summary>
  3671. </member>
  3672. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelsVisibleResolved">
  3673. <summary>
  3674. Returns the resolved state indicating whether panels are displayed.
  3675. </summary>
  3676. </member>
  3677. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.SizeGripVisible">
  3678. <summary>
  3679. Determines if the size grip is displayed.
  3680. </summary>
  3681. </member>
  3682. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.SizeGripVisibleResolved">
  3683. <summary>
  3684. Returns the resolved SizeGripVisible value.
  3685. </summary>
  3686. <remarks>
  3687. 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.
  3688. </remarks>
  3689. </member>
  3690. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ButtonStyle">
  3691. <summary>
  3692. Determines the style used for button style panels.
  3693. </summary>
  3694. </member>
  3695. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ButtonStyleResolved">
  3696. <summary>
  3697. Returns the resolved button style used by button style panels.
  3698. </summary>
  3699. </member>
  3700. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Panels">
  3701. <summary>
  3702. Returns the collection of panel objects.
  3703. </summary>
  3704. </member>
  3705. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Text">
  3706. <summary>
  3707. Determines the text for the control.
  3708. </summary>
  3709. </member>
  3710. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UIElement">
  3711. <summary>
  3712. Returns the main UIElement associated with the control.
  3713. </summary>
  3714. </member>
  3715. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Dock">
  3716. <summary>
  3717. The docking location of the control, indicating which borders are
  3718. docked to the container.
  3719. </summary>
  3720. </member>
  3721. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageList">
  3722. <summary>
  3723. The imagelist associated with the control.
  3724. </summary>
  3725. </member>
  3726. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaleImages">
  3727. <summary>
  3728. Determines if images will be scaled.
  3729. </summary>
  3730. </member>
  3731. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.InterPanelSpacing">
  3732. <summary>
  3733. The amount of horizontal spacing between panels.
  3734. </summary>
  3735. </member>
  3736. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ScaledImageSize">
  3737. <summary>
  3738. Determines the size use to scale images.
  3739. </summary>
  3740. <remarks>When the width and/or height are set to -1, which
  3741. is the default value, the value will be based on the
  3742. size of the panel.</remarks>
  3743. </member>
  3744. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ToolTip">
  3745. <summary>
  3746. Returns the tooltip used by the control.
  3747. </summary>
  3748. </member>
  3749. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.Padding">
  3750. <summary>
  3751. Gets/sets the amount of space within the control surrounding the panel area.
  3752. </summary>
  3753. </member>
  3754. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ShowToolTips">
  3755. <summary>
  3756. Returns or sets whether <see cref="T:System.Windows.Forms.Panel"/> tooltips will be displayed.
  3757. </summary>
  3758. </member>
  3759. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.EventManager">
  3760. <summary>
  3761. The object that enables, disables and controls firing of UltraStatusBar specific events.
  3762. </summary>
  3763. </member>
  3764. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.WrapText">
  3765. <summary>
  3766. Gets/sets whether text in the non-autosized panels may wrap across lines.
  3767. </summary>
  3768. </member>
  3769. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ImageTransparentColor">
  3770. <summary>
  3771. Gets/sets the color displayed as transparent in a image.
  3772. </summary>
  3773. <remarks>
  3774. <p class="body">When set to a color other than Color.Transparent (the default), all
  3775. occurrences of the color in the image will be made transparent.</p>
  3776. <p class="body">If an image is supplied by setting an Appearance.Image property
  3777. to an Imagelist index, the ImageLists TransparentColor property is
  3778. looked at first. If that property is set to Color.TransparentColor,
  3779. then the component's ImageTransparentColor is used. If it is set
  3780. to Color.TransparentColor, then no color masking is done.</p>
  3781. <p class="body">If an image is supplied by setting the Appearance.Image property to
  3782. an image, the component's ImageTransparentColor is used. If it is
  3783. set to Color.TransparentColor, then no color masking is done.</p>
  3784. </remarks>
  3785. </member>
  3786. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UseMnemonic">
  3787. <summary>
  3788. Gets/sets whether the first character preceeded by an ampersand in the text
  3789. of a Button and StateButton style panel will be used as a mnemonic key.
  3790. </summary>
  3791. </member>
  3792. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyle">
  3793. <summary>
  3794. Gets/sets the view style for the control.
  3795. </summary>
  3796. </member>
  3797. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ViewStyleResolved">
  3798. <summary>
  3799. Returns the resolved <see cref="T:Infragistics.Win.UltraWinStatusBar.ViewStyle"/>
  3800. </summary>
  3801. </member>
  3802. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterAutoSizePanel">
  3803. <summary>
  3804. Occurs after a <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> has been autosized.
  3805. </summary>
  3806. </member>
  3807. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDisplayCharacterPositionDialog">
  3808. <summary>
  3809. 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>
  3810. </summary>
  3811. </member>
  3812. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.AfterDragResize">
  3813. <summary>
  3814. Occurs after the splitter bar for a panel is released.
  3815. </summary>
  3816. </member>
  3817. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeAutoSizePanel">
  3818. <summary>
  3819. 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
  3820. </summary>
  3821. </member>
  3822. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDisplayCharacterPositionDialog">
  3823. <summary>
  3824. 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>
  3825. </summary>
  3826. </member>
  3827. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragResize">
  3828. <summary>
  3829. Occurs before the splitter bar for a panel is moved.
  3830. </summary>
  3831. </member>
  3832. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.BeforeDragSizeGrip">
  3833. <summary>
  3834. Occurs before the size grip for the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> is dragged
  3835. </summary>
  3836. </member>
  3837. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelDoubleClick">
  3838. <summary>
  3839. Occurs when the user double clicks on an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/>.
  3840. </summary>
  3841. </member>
  3842. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.ButtonClick">
  3843. <summary>
  3844. Occurs when the button of a Button or StateButton style <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> is clicked.
  3845. </summary>
  3846. </member>
  3847. <member name="E:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.PanelClick">
  3848. <summary>
  3849. Occurs when an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusPanel"/> is clicked.
  3850. </summary>
  3851. </member>
  3852. <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject">
  3853. <summary>
  3854. Accessible object representing an <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/>
  3855. </summary>
  3856. </member>
  3857. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
  3858. <summary>
  3859. Initializes a new <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject"/>
  3860. </summary>
  3861. <param name="statusBar">Associated statusbar</param>
  3862. </member>
  3863. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject.GetChildCount">
  3864. <summary>
  3865. Returns the number of child accessible object.
  3866. </summary>
  3867. <returns> Returns the number of panes plus one if the size grip is displayed.</returns>
  3868. </member>
  3869. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject.GetChild(System.Int32)">
  3870. <summary>
  3871. Returns the accessible child with the specified index.
  3872. </summary>
  3873. <param name="index">Index of the child to locate</param>
  3874. <returns>Returns the accessible child at the specified index</returns>
  3875. </member>
  3876. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject.HitTest(System.Int32,System.Int32)">
  3877. <summary>
  3878. Returns the accessible child at the specified location
  3879. </summary>
  3880. <param name="x">Horizontal screen coordinate</param>
  3881. <param name="y">Vertical screen coordinate</param>
  3882. <returns></returns>
  3883. </member>
  3884. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBar.UltraStatusBarAccessibleObject.Role">
  3885. <summary>
  3886. Returns the accessible role of the associated <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/>
  3887. </summary>
  3888. </member>
  3889. <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement">
  3890. <summary>
  3891. An element used to simulate form resizing areas when merging the UltraToolbarsManager.Ribbon into the caption area.
  3892. </summary>
  3893. </member>
  3894. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.Contains(System.Drawing.Point,System.Boolean)">
  3895. <summary>
  3896. Checks if the point is over the element.
  3897. </summary>
  3898. <param name="point">In client coordinates</param>
  3899. <param name="ignoreClipping">Specifies if we should ignore clipping or not</param>
  3900. <returns>Returns true if the point is over the element.</returns>
  3901. </member>
  3902. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.DrawBorders(Infragistics.Win.UIElementDrawParams@)">
  3903. <summary>
  3904. Draws the borders of the element
  3905. </summary>
  3906. <param name="drawParams"></param>
  3907. </member>
  3908. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
  3909. <summary>
  3910. Renders the themed element
  3911. </summary>
  3912. <param name="drawParams">Structure containing information for the rendering</param>
  3913. <returns>True to prevent further rendering of the element</returns>
  3914. </member>
  3915. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.GetNonClientHitTestCode(System.Drawing.Point)">
  3916. <summary>
  3917. Gets the WM_NCHITTEST code for special ui elements that simulate non-client areas, e.g. caption, resizing border etc.
  3918. </summary>
  3919. <param name="point">The <see cref="T:System.Drawing.Point"/> to hit-test.</param>
  3920. <returns>The default implemenation walks up the parent chain until there is no parent and returns HTCLIENT.</returns>
  3921. </member>
  3922. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
  3923. <summary>
  3924. Initializes the back and border colors used by the element
  3925. </summary>
  3926. <param name="appearance">The appearance structure to initialize</param>
  3927. <param name="requestedProps">The properties that are needed</param>
  3928. </member>
  3929. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.OnMouseDown(System.Windows.Forms.MouseEventArgs,System.Boolean,Infragistics.Win.UIElement@)">
  3930. <summary>
  3931. Invoked when the mouse is pressed on the size grip.
  3932. </summary>
  3933. <param name="e">Mouse event arguments</param>
  3934. <param name="adjustableArea">True if the mouse is in adjustable area of the element</param>
  3935. <param name="captureMouseForElement">By Ref. Used to return the element that should receive mosue capture</param>
  3936. <returns>True if no further processing of the message should occur</returns>
  3937. </member>
  3938. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.Cursor">
  3939. <summary>
  3940. Returns the cursor to display when the mouse is over the element.
  3941. </summary>
  3942. </member>
  3943. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.BorderSides">
  3944. <summary>
  3945. Returns flags indicating which borders will be drawn
  3946. </summary>
  3947. </member>
  3948. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarBorderAreaResizeUIElement.BorderStyle">
  3949. <summary>
  3950. Returns the appropriate border style.
  3951. </summary>
  3952. </member>
  3953. <member name="T:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner">
  3954. <summary>
  3955. Provides design-time services for the <see cref="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBar"/> control.
  3956. </summary>
  3957. </member>
  3958. <member name="P:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.ActionLists">
  3959. <summary>
  3960. Gets the <see cref="T:System.ComponentModel.Design.DesignerActionListCollection"/> for this designer's control/component.
  3961. </summary>
  3962. </member>
  3963. <member name="T:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.UltraStatusBarActionList">
  3964. <summary>
  3965. Provides DesignerActionItems for the SmartTag associated with the UltraStatusBar.
  3966. </summary>
  3967. </member>
  3968. <member name="M:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.UltraStatusBarActionList.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
  3969. <summary>
  3970. Constructor
  3971. </summary>
  3972. </member>
  3973. <member name="M:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.UltraStatusBarActionList.CreateActionItems(System.ComponentModel.Design.DesignerActionItemCollection)">
  3974. <summary>
  3975. Overrides CreateActionItems.
  3976. </summary>
  3977. <param name="actionItems">The list to populate.</param>
  3978. </member>
  3979. <member name="M:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.UltraStatusBarActionList.EditPanels">
  3980. <summary>
  3981. Used by SmartTag Panel.
  3982. </summary>
  3983. </member>
  3984. <member name="P:Infragistics.Win.UltraWinStatusBar.Design.UltraStatusBarDesigner.UltraStatusBarActionList.ViewStyle">
  3985. <summary>
  3986. Used by SmartTag Panel.
  3987. </summary>
  3988. </member>
  3989. <member name="T:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement">
  3990. <summary>
  3991. Main UIElement for the <see cref="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.UltraStatusBar"/> control.
  3992. </summary>
  3993. </member>
  3994. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.#ctor(Infragistics.Win.UltraWinStatusBar.UltraStatusBar)">
  3995. <summary>
  3996. Initializes a new UltraStatusBarUIElement owned by the specified UltraStatusBar control.
  3997. </summary>
  3998. <param name="owner">Owning control.</param>
  3999. </member>
  4000. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.GetNonClientHitTestCode(System.Drawing.Point)">
  4001. <summary>
  4002. Gets the WM_NCHITTEST code for special ui elements that simulate non-client areas, e.g. caption, resizing border etc.
  4003. </summary>
  4004. <param name="point">The <see cref="T:System.Drawing.Point"/> to hit-test.</param>
  4005. <returns>The default implemenation walks up the parent chain until there is no parent and returns HTCLIENT.</returns>
  4006. </member>
  4007. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
  4008. <summary>
  4009. Initializes the appearance for the control element.
  4010. </summary>
  4011. <param name="appearance">The appearance structure to initialize</param>
  4012. <param name="requestedProps">The properties that are needed</param>
  4013. </member>
  4014. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.PositionChildElements">
  4015. <summary>
  4016. Handles positioning child elements.
  4017. </summary>
  4018. </member>
  4019. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
  4020. <summary>
  4021. Renders the themed status bar area.
  4022. </summary>
  4023. <param name="drawParams">UIElementDrawParams</param>
  4024. <returns>True if the themed element could be rendered.</returns>
  4025. </member>
  4026. <member name="M:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
  4027. <summary>
  4028. Renders the back color of the status bar.
  4029. </summary>
  4030. <param name="drawParams">UIElementDrawParams</param>
  4031. </member>
  4032. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.UltraStatusBar">
  4033. <summary>
  4034. Returns the owning UltraStatusBar control.
  4035. </summary>
  4036. </member>
  4037. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.BorderSides">
  4038. <summary>
  4039. Returns bitflags that determine which sides to draw the borders on.
  4040. </summary>
  4041. </member>
  4042. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.BorderStyle">
  4043. <summary>
  4044. Returns the border style for the control.
  4045. </summary>
  4046. </member>
  4047. <member name="P:Infragistics.Win.UltraWinStatusBar.UltraStatusBarUIElement.UIRole">
  4048. <summary>
  4049. Returns the <see cref="T:Infragistics.Win.AppStyling.UIRole"/> associated with this element.
  4050. </summary>
  4051. </member>
  4052. </members>
  4053. </doc>