015b8d1c5a6de5c61ed75b561f97dbd0522a6579.svn-base 172 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Janus.Windows.ExplorerBar.v3</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Janus.Windows.ExplorerBar.ExplorerBar">
  8. <summary>
  9. Summary description for ExplorerBar.
  10. </summary>
  11. </member>
  12. <member name="F:Janus.Windows.ExplorerBar.ExplorerBar.AlphaEmpty">
  13. <summary>
  14. Represents the empty alpha value. This field is read-only.
  15. </summary>
  16. </member>
  17. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.#ctor">
  18. <summary>
  19. Initializes a new instance of the ExplorerBar class.
  20. </summary>
  21. </member>
  22. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.FindLayout(System.String)">
  23. <summary>
  24. Finds the first layout with the key specified in the layout hierarchy.
  25. </summary>
  26. <param name="key">A String that specifies the key to search.</param>
  27. <returns>The first layout which key is equal to the key specified or null if no layout is found.</returns>
  28. </member>
  29. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.LoadLayout(Janus.Windows.ExplorerBar.ExplorerBarLayout)">
  30. <summary>
  31. Loads the settings preserved in a ExplorerBarLayout object without setting it as the current layout.
  32. </summary>
  33. <param name="layout">The ExplorerBarLayout with the ExplorerBar control settings.</param>
  34. </member>
  35. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.GetLayout">
  36. <summary>
  37. Creates a ExplorerBarLayout object containing settings of the ExplorerBar control.
  38. </summary>
  39. <returns>The ExplorerBarLayout created.</returns>
  40. </member>
  41. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.LoadLayoutFile(System.IO.Stream)">
  42. <summary>
  43. Loads a ExplorerBar control settings persisted in a stream.
  44. </summary>
  45. <param name="stream">A Stream object with the ExplorerBar control settings.</param>
  46. </member>
  47. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.SaveLayoutFile(System.IO.Stream)">
  48. <summary>
  49. Persist in a stream all the ExplorerBar control settings.
  50. </summary>
  51. <param name="stream">A Stream object where settings will be persisted.</param>
  52. </member>
  53. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.InitializeComponent">
  54. <summary>
  55. Required method for Designer support - do not modify
  56. the contents of this method with the code editor.
  57. </summary>
  58. </member>
  59. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeBackgroundFormatStyle">
  60. <summary>
  61. Gets a value indicating whether the BackgroundFormatStyle property should be persisted.
  62. </summary>
  63. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  64. </member>
  65. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetBackgroundFormatStyle">
  66. <summary>
  67. Resets the BackgroundFormatStyle property to its default value.
  68. </summary>
  69. </member>
  70. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeGroupsFormatStyle">
  71. <summary>
  72. Gets a value indicating whether the GroupsFormatStyle property should be persisted.
  73. </summary>
  74. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  75. </member>
  76. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetGroupsFormatStyle">
  77. <summary>
  78. Resets the GroupsFormatStyle property to its default value.
  79. </summary>
  80. </member>
  81. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeSpecialGroupsFormatStyle">
  82. <summary>
  83. Gets a value indicating whether the SpecialGroupsFormatStyle property should be persisted.
  84. </summary>
  85. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  86. </member>
  87. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetSpecialGroupsFormatStyle">
  88. <summary>
  89. Resets the SpecialGroupsFormatStyle property to its default value.
  90. </summary>
  91. </member>
  92. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeItemsFormatStyle">
  93. <summary>
  94. Gets a value indicating whether the ItemsFormatStyle property should be persisted.
  95. </summary>
  96. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  97. </member>
  98. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetItemsFormatStyle">
  99. <summary>
  100. Resets the ItemsFormatStyle property to its default value.
  101. </summary>
  102. </member>
  103. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeSelectedtemFormatStyle">
  104. <summary>
  105. Gets a value indicating whether the SelectedItemFormatStyle property should be persisted.
  106. </summary>
  107. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  108. </member>
  109. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetSelectedItemFormatStyle">
  110. <summary>
  111. Resets the SelectedItemFormatStyle property to its default value.
  112. </summary>
  113. </member>
  114. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeHoverItemFormatStyle">
  115. <summary>
  116. Gets a value indicating whether the HoverItemFormatStyle property should be persisted.
  117. </summary>
  118. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  119. </member>
  120. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetHoverItemFormatStyle">
  121. <summary>
  122. Resets the HoverItemFormatStyle property to its default value.
  123. </summary>
  124. </member>
  125. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetHoverGroupFormatStyle">
  126. <summary>
  127. Resets the HoverGroupFormatStyle property to its default value.
  128. </summary>
  129. </member>
  130. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeHoverGroupFormatStyle">
  131. <summary>
  132. Gets a value indicating whether the HoverGroupFormatStyle property should be persisted.
  133. </summary>
  134. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  135. </member>
  136. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetHoverSpecialGroupFormatStyle">
  137. <summary>
  138. Resets the HoverSpecialGroupFormatStyle property to its default value.
  139. </summary>
  140. </member>
  141. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeHoverSpecialGroupFormatStyle">
  142. <summary>
  143. Gets a value indicating whether the HoverSpecialGroupFormatStyle property should be persisted.
  144. </summary>
  145. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  146. </member>
  147. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.LoadComponentSettings">
  148. <summary>
  149. Reads the control's application settings into their corresponding properties and updates the control's state.
  150. </summary>
  151. </member>
  152. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetComponentSettings">
  153. <summary>
  154. Resets the control's application settings properties to their default values.
  155. </summary>
  156. </member>
  157. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.SaveComponentSettings">
  158. <summary>
  159. Persists the control's application settings properties.
  160. </summary>
  161. </member>
  162. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.GetExplorerBarVersion">
  163. <summary>
  164. Gets a string representing with the version number.
  165. </summary>
  166. </member>
  167. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeVisualStyle">
  168. <summary>
  169. Gets a value indicating whether the VisualStyle property should be persisted.
  170. </summary>
  171. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  172. </member>
  173. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetVisualStyle">
  174. <summary>
  175. Resets the VisualStyle property to its default value.
  176. </summary>
  177. </member>
  178. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeOffice2007CustomColor">
  179. <summary>
  180. Indicates whether the Office2007CustomColor property should be persisted.
  181. </summary>
  182. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  183. </member>
  184. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetOffice2007CustomColor">
  185. <summary>
  186. Resets the Office2007CustomColor property to its default value.
  187. </summary>
  188. </member>
  189. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeBlendColor">
  190. <summary>
  191. Gets a value indicating whether the BlendColor property should be persisted.
  192. </summary>
  193. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  194. </member>
  195. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetBlendColor">
  196. <summary>
  197. Resets the BlendColor property to its default value.
  198. </summary>
  199. </member>
  200. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeFlatBorderColor">
  201. <summary>
  202. Gets a value indicating whether the FlatBorderColor property should be persisted.
  203. </summary>
  204. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  205. </member>
  206. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetFlatBorderColor">
  207. <summary>
  208. Resets the FlatBorderColor property to its default value.
  209. </summary>
  210. </member>
  211. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.Dispose(System.Boolean)">
  212. <summary>
  213. Clean up any resources being used.
  214. </summary>
  215. </member>
  216. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeWatermarkImage">
  217. <summary>
  218. Indicates whether the WatermarkImage property should be persisted.
  219. </summary>
  220. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  221. </member>
  222. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetWatermarkImage">
  223. <summary>
  224. Resets the WatermarkImage property to its default value.
  225. </summary>
  226. </member>
  227. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeImageSize">
  228. <summary>
  229. Gets a value indicating whether the ImageSize property should be persisted.
  230. </summary>
  231. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  232. </member>
  233. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetImageSize">
  234. <summary>
  235. Resets the ImageSize property to its default value.
  236. </summary>
  237. </member>
  238. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetUseCompatibleTextRendering">
  239. <summary>
  240. Resets the UseCompatibleTextRendering property to its default value.
  241. </summary>
  242. </member>
  243. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeUseCompatibleTextRendering">
  244. <summary>
  245. Gets a value indicating whether the UseCompatibleTextRendering property should be persisted.
  246. </summary>
  247. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  248. </member>
  249. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.EnsureVisible(Janus.Windows.ExplorerBar.ExplorerBarGroup)">
  250. <summary>
  251. Ensures that the specified ExplorerBarGroup is visible within the control, scrolling the contents of the control if necessary.
  252. </summary>
  253. <param name="group">The ExplorerBarGroup to scroll into view.</param>
  254. </member>
  255. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.EnsureVisible(Janus.Windows.ExplorerBar.ExplorerBarItem)">
  256. <summary>
  257. Ensures that the specified ExplorerBarItem is visible within the control, scrolling the contents of the control if necessary.
  258. </summary>
  259. <param name="item">The ExplorerBarItem to scroll into view.</param>
  260. </member>
  261. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnMouseWheel(System.Windows.Forms.MouseEventArgs)">
  262. <summary>
  263. Overrides Control.OnMouseWheel
  264. </summary>
  265. </member>
  266. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.IsInputKey(System.Windows.Forms.Keys)">
  267. <summary>
  268. Overrides Control.IsInputKey
  269. </summary>
  270. </member>
  271. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
  272. <summary>
  273. Overrides Control.OnKeyDown.
  274. </summary>
  275. </member>
  276. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ProcessDialogKey(System.Windows.Forms.Keys)">
  277. <summary>
  278. Overrides Control.ProcessDialogKey.
  279. </summary>
  280. </member>
  281. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnControlRemoved(System.Windows.Forms.ControlEventArgs)">
  282. <summary>
  283. Raises the System.Windows.Forms.Control.ControlRemoved event.
  284. </summary>
  285. <param name="e">A System.Windows.Forms.ControlEventArgs that contains the event data.</param>
  286. </member>
  287. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnLostFocus(System.EventArgs)">
  288. <summary>
  289. Overrides Control.OnLostFocus.
  290. </summary>
  291. </member>
  292. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnRightToLeftChanged(System.EventArgs)">
  293. <summary>
  294. Overrides Control.OnRightToLeftChanged
  295. </summary>
  296. </member>
  297. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnGotFocus(System.EventArgs)">
  298. <summary>
  299. Overrides Control.OnGotFocus.
  300. </summary>
  301. </member>
  302. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.Select(System.Boolean,System.Boolean)">
  303. <summary>
  304. Overrides Control.Select
  305. </summary>
  306. </member>
  307. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnParentChanged(System.EventArgs)">
  308. <summary>
  309. Overrides Control.OnParentChanged.
  310. </summary>
  311. </member>
  312. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnParentVisibleChanged(System.EventArgs)">
  313. <summary>
  314. Overrides Control.OnParentChanged.
  315. </summary>
  316. </member>
  317. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnControlAdded(System.Windows.Forms.ControlEventArgs)">
  318. <summary>
  319. Overrides Control.OnControlAdded.
  320. </summary>
  321. </member>
  322. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ProcessMnemonic(System.Char)">
  323. <summary>
  324. Overrides Control.ProcessMnemonic
  325. </summary>
  326. </member>
  327. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnResize(System.EventArgs)">
  328. <summary>
  329. Raises the System.Windows.Forms.Control.Resize event.
  330. </summary>
  331. <param name="e">A System.EventArgs that contains the event data.</param>
  332. </member>
  333. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnFontChanged(System.EventArgs)">
  334. <summary>
  335. Overrides Control.OnFontChanged
  336. </summary>
  337. </member>
  338. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnVisibleChanged(System.EventArgs)">
  339. <summary>
  340. Overrides Control.OnVisibleChanged.
  341. </summary>
  342. </member>
  343. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnSystemColorsChanged(System.EventArgs)">
  344. <summary>
  345. Overrides Control.OnSystemColorsChanged.
  346. </summary>
  347. </member>
  348. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeBackColor">
  349. <summary>
  350. Gets a value indicating whether the BackColor property should be persisted.
  351. </summary>
  352. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  353. </member>
  354. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetBackColor">
  355. <summary>
  356. Resets the BackColor property to its default value.
  357. </summary>
  358. </member>
  359. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ShouldSerializeThemedAreas">
  360. <summary>
  361. Gets a value indicating whether the ThemedAreas property should be persisted.
  362. </summary>
  363. <returns>true if the property value has been changed from its default; otherwise, false.</returns>
  364. </member>
  365. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.ResetThemedAreas">
  366. <summary>
  367. Resets the ThemedAreas property to its default value.
  368. </summary>
  369. </member>
  370. <member name="F:Janus.Windows.ExplorerBar.ExplorerBar.isPainting">
  371. <summary>
  372. Raises the System.Windows.Forms.Control.PaintBackground event.
  373. </summary>
  374. <param name="e">A System.Windows.Forms.PintEventArgs that contains the event data.</param>
  375. </member>
  376. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnPaint(System.Windows.Forms.PaintEventArgs)">
  377. <summary>
  378. Raises the System.Windows.Forms.Control.Paint event.
  379. </summary>
  380. <param name="e">A System.Windows.Forms.PintEventArgs that contains the event data.</param>
  381. </member>
  382. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnMouseLeave(System.EventArgs)">
  383. <summary>
  384. Raises the System.Windows.Forms.Control.MouseLeave event.
  385. </summary>
  386. <param name="e">A System.EventArgs that contains the event data.</param>
  387. </member>
  388. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
  389. <summary>
  390. Raises the System.Windows.Forms.Control.MouseUp event.
  391. </summary>
  392. <param name="e">A System.Windows.Forms.MouseEventArgs that contains the event data.</param>
  393. </member>
  394. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
  395. <summary>
  396. Raises the System.Windows.Forms.Control.MouseDown event.
  397. </summary>
  398. <param name="e">A System.Windows.Forms.MouseEventArgs that contains the event data.</param>
  399. </member>
  400. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
  401. <summary>
  402. Raises the System.Windows.Forms.Control.MouseMove event.
  403. </summary>
  404. <param name="e">A System.Windows.Forms.MouseEventArgs that contains the event data.</param>
  405. </member>
  406. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.HitTest">
  407. <summary>
  408. Determines which element of the ExplorerBar control is at the current position of the cursor.
  409. </summary>
  410. <returns>One of the HitTest values that contains information about the specified location in the ExplorerBar.</returns>
  411. </member>
  412. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.HitTest(System.Int32,System.Int32)">
  413. <summary>
  414. Determines which element of the ExplorerBar control is at the specified coordinates.
  415. </summary>
  416. <param name="x">The x coordinate of the point to be hit-tested.</param>
  417. <param name="y">The y coordinate of the point to be hit-tested.</param>
  418. <returns>One of the HitTest values that contains information about the specified location in the ExplorerBar.</returns>
  419. </member>
  420. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.HitTest(System.Drawing.Point)">
  421. <summary>
  422. Determines which element of the ExplorerBar control is at the specified point.
  423. </summary>
  424. <param name="pt">A Point containing the x and y coordinates of the point to be hit-tested.</param>
  425. <returns>One of the HitTest values that contains information about the specified point in the ExplorerBar.</returns>
  426. </member>
  427. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.GetItemAt">
  428. <summary>
  429. Retrieves the ExplorerBarItem object that is located at the current position of the cursor.
  430. </summary>
  431. <returns>A ExplorerBarItem object that represents the item that is located at the curren position of the cursor.</returns>
  432. </member>
  433. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.GetItemAt(System.Int32,System.Int32)">
  434. <summary>
  435. Retrieves the ExplorerBarItem object that is located at the specified coordinates.
  436. </summary>
  437. <param name="x">Represents the x-coordinate where you want to look for the ExplorerBarItem. Coordinates are expressed relative to the upper-left corner of the control's client area.</param>
  438. <param name="y">Represents the y-coordinate where you want to look for the ExplorerBarItem. Coordinates are expressed relative to the upper-left corner of the control's client area.</param>
  439. <returns>A ExplorerBarItem object that represents the item that is located at the specified coordinates.</returns>
  440. </member>
  441. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.GetItemAt(System.Drawing.Point)">
  442. <summary>
  443. Retrieves the ExplorerBarItem object that is located at the specified point.
  444. </summary>
  445. <param name="point">Represents the point where you want to look for the ExplorerBarItem. Coordinates are expressed relative to the upper-left corner of the control's client area.</param>
  446. <returns>A ExplorerBarItem object that represents the item that is located at the specified point.</returns>
  447. </member>
  448. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.GetGroupAt">
  449. <summary>
  450. Retrieves the ExplorerBarGroup object that is located at the current position of the cursor.
  451. </summary>
  452. <returns>A ExplorerBarGroup object that represents the group that is located at the current position of the cursors.</returns>
  453. </member>
  454. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.GetGroupAt(System.Int32,System.Int32)">
  455. <summary>
  456. Retrieves the ExplorerBarGroup object that is located at the specified coordinates.
  457. </summary>
  458. <param name="x">Represents the x-coordinate where you want to look for the ExplorerBarGroup. Coordinates are expressed relative to the upper-left corner of the control's client area.</param>
  459. <param name="y">Represents the x-coordinate where you want to look for the ExplorerBarGroup. Coordinates are expressed relative to the upper-left corner of the control's client area.</param>
  460. <returns>A ExplorerBarGroup object that represents the group that is located at the specified coordinates.</returns>
  461. </member>
  462. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.GetGroupAt(System.Drawing.Point)">
  463. <summary>
  464. Retrieves the ExplorerBarGroup object that is located at the specified point.
  465. </summary>
  466. <param name="point">Represents the point where you want to look for the ExplorerBarGroup. Coordinates are expressed relative to the upper-left corner of the control's client area.</param>
  467. <returns>A ExplorerBarGroup object that represents the group that is located at the specified point.</returns>
  468. </member>
  469. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnGroupExpanding(Janus.Windows.ExplorerBar.GroupCancelEventArgs)">
  470. <summary>
  471. Raises the Janus.Windows.ExplorerBar.ExplorerBar.GroupExpanding event
  472. </summary>
  473. <param name="e">A Janus.Windows.ExplorerBar.GroupCancelEventArgs that contains the event data.</param>
  474. </member>
  475. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnGroupClosing(Janus.Windows.ExplorerBar.GroupCancelEventArgs)">
  476. <summary>
  477. Raises the Janus.Windows.ExplorerBar.ExplorerBar.GroupClosing event
  478. </summary>
  479. <param name="e">A Janus.Windows.ExplorerBar.GroupCancelEventArgs that contains the event data.</param>
  480. </member>
  481. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnGroupClosed(Janus.Windows.ExplorerBar.GroupEventArgs)">
  482. <summary>
  483. Raises the Janus.Windows.ExplorerBar.ExplorerBar.GroupClosed event
  484. </summary>
  485. <param name="e">A Janus.Windows.ExplorerBar.GroupEventArgs that contains the event data.</param>
  486. </member>
  487. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnGroupCollapsing(Janus.Windows.ExplorerBar.GroupCancelEventArgs)">
  488. <summary>
  489. Raises the Janus.Windows.ExplorerBar.ExplorerBar.GroupCollapsing event
  490. </summary>
  491. <param name="e">A Janus.Windows.ExplorerBar.GroupCancelEventArgs that contains the event data.</param>
  492. </member>
  493. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnGroupExpanded(Janus.Windows.ExplorerBar.GroupEventArgs)">
  494. <summary>
  495. Raises the Janus.Windows.ExplorerBar.ExplorerBar.GroupExpanded event
  496. </summary>
  497. <param name="e">A Janus.Windows.ExplorerBar.GroupEventArgs that contains the event data.</param>
  498. </member>
  499. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnGroupCollapsed(Janus.Windows.ExplorerBar.GroupEventArgs)">
  500. <summary>
  501. Raises the Janus.Windows.ExplorerBar.ExplorerBar.GroupCollapsed event
  502. </summary>
  503. <param name="e">A Janus.Windows.ExplorerBar.GroupEventArgs that contains the event data.</param>
  504. </member>
  505. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnLayoutLoad(System.EventArgs)">
  506. <summary>
  507. Raises the LayoutLoad event.
  508. </summary>
  509. <param name="e">An EventArgs that contain the event data.</param>
  510. </member>
  511. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnCurrentLayoutChanged(System.EventArgs)">
  512. <summary>
  513. Raises the CurrentLayoutChanged event.
  514. </summary>
  515. <param name="e">A CancelEventArgs that contains the event data.</param>
  516. </member>
  517. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnCurrentLayoutChanging(System.ComponentModel.CancelEventArgs)">
  518. <summary>
  519. Raises the CurrentLayoutChanging event.
  520. </summary>
  521. <param name="e">A CancelEventArgs that contains the event data.</param>
  522. </member>
  523. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnItemClick(Janus.Windows.ExplorerBar.ItemEventArgs)">
  524. <summary>
  525. Raises the Janus.Windows.ExplorerBar.ExplorerBar.ItemClick event
  526. </summary>
  527. <param name="e">A Janus.Windows.ExplorerBar.ItemEventArgs that contains the event data.</param>
  528. </member>
  529. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnDrawExplorerBarArea(Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs)">
  530. <summary>
  531. Raises the Janus.Windows.ExplorerBar.ExplorerBar.DrawExplorerBarArea event.
  532. </summary>
  533. <param name="e">A Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs that contains the event data.</param>
  534. </member>
  535. <member name="M:Janus.Windows.ExplorerBar.ExplorerBar.OnGroupClick(Janus.Windows.ExplorerBar.GroupEventArgs)">
  536. <summary>
  537. Raises the Janus.Windows.ExplorerBar.ExplorerBar.GroupClick event
  538. </summary>
  539. <param name="e">A Janus.Windows.ExplorerBar.GroupEventArgs that contains the event data.</param>
  540. </member>
  541. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.Layouts">
  542. <summary>
  543. Gets the collection of ExplorerBarLayout objects in the ExplorerBar control.
  544. </summary>
  545. </member>
  546. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.CurrentLayout">
  547. <summary>
  548. Gets or sets the current ExplorerBarLayout.
  549. </summary>
  550. </member>
  551. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.BackgroundFormatStyle">
  552. <summary>
  553. Returns the ExplorerBarFormatStyle object used to draw the background of the ExplorerBar control.
  554. </summary>
  555. </member>
  556. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.GroupsFormatStyle">
  557. <summary>
  558. Returns the ExplorerBarFormatStyle object used to draw the groups' header in the ExplorerBar control.
  559. </summary>
  560. </member>
  561. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.SpecialGroupsFormatStyle">
  562. <summary>
  563. Returns the ExplorerBarFormatStyle object used to draw the header of the ExplorerBarGroup marked as special in the ExplorerBar control.
  564. </summary>
  565. </member>
  566. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ItemsFormatStyle">
  567. <summary>
  568. Returns the ExplorerBarFormatStyle object used to draw the items in the ExplorerBar control.
  569. </summary>
  570. </member>
  571. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.SelectedItemFormatStyle">
  572. <summary>
  573. Returns the ExplorerBarFormatStyle object used to draw the selected item in the ExplorerBar control.
  574. </summary>
  575. </member>
  576. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.HoverItemFormatStyle">
  577. <summary>
  578. Returns the ExplorerBarFormatStyle object used to draw the items in the ExplorerBar control when the mouse is over them.
  579. </summary>
  580. </member>
  581. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.HoverGroupFormatStyle">
  582. <summary>
  583. Returns the ExplorerBarFormatStyle object used to draw the groups' header in the ExplorerBar control when the mouse is over them.
  584. </summary>
  585. </member>
  586. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.HoverSpecialGroupFormatStyle">
  587. <summary>
  588. Returns the ExplorerBarFormatStyle object used to draw the header of ExplorerBarGroup marked as special when the mouse is over them.
  589. </summary>
  590. </member>
  591. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ItemsStateStyles">
  592. <summary>
  593. Gets the ExplorerBarStateStyles that holds the format styles used to draw the items in their different states.
  594. </summary>
  595. </member>
  596. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.GroupsStateStyles">
  597. <summary>
  598. Gets the ExplorerBarStateStyles that holds the format styles used to draw the groups' header in their different states.
  599. </summary>
  600. </member>
  601. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.SpecialGroupsStateStyles">
  602. <summary>
  603. Gets the ExplorerBarStateStyles that holds the format styles used to draw the special groups' header in their different states.
  604. </summary>
  605. </member>
  606. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.SaveSettings">
  607. <summary>
  608. Gets or sets a value indicating whether the control should automatically persist its application settings properties.
  609. </summary>
  610. </member>
  611. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.SettingsKey">
  612. <summary>
  613. Gets or sets the value of the application settings key for the current instance of the control.
  614. </summary>
  615. </member>
  616. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.VisualStyleAreas">
  617. <summary>
  618. Returns the ExplorerBarAreasStyle object used to specify the Style for the areas in the ExplorerBar control.
  619. </summary>
  620. </member>
  621. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.HeaderRoundedCorners">
  622. <summary>
  623. Gets or sets a value specifying which corner of the groups' header should be rounded
  624. </summary>
  625. </member>
  626. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ShowFocusRectangle">
  627. <summary>
  628. Gets a value indicating whether the control should display focus rectangles.
  629. </summary>
  630. </member>
  631. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.Selectable">
  632. <summary>
  633. Gets or sets a value specifying whether the control can recieve focus
  634. </summary>
  635. </member>
  636. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.VisualStyle">
  637. <summary>
  638. Gets or sets a value specifying the appearance for the ExplorerBar control.
  639. </summary>
  640. </member>
  641. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.Office2007ColorScheme">
  642. <summary>
  643. Gets or sets a value specifying the color scheme to be used when Office2007 VisualStyle is used in the control.
  644. </summary>
  645. </member>
  646. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.Office2007CustomColor">
  647. <summary>
  648. Gets or set a value specifying the base color used to paint the control when the Office2007ColorScheme property is set to Custom.
  649. </summary>
  650. </member>
  651. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.VisualStyleManager">
  652. <summary>
  653. Gets or sets the VisualStyleManager that defines the appearance of the control.
  654. </summary>
  655. </member>
  656. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ColorScheme">
  657. <summary>
  658. Gets or sets the name of the ColorScheme in the VisualStyleManager that defines the appearance of the control.
  659. </summary>
  660. </member>
  661. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ScrollBarStyle">
  662. <summary>
  663. Gets an object representing the style used to draw the vertical scroll bar.
  664. </summary>
  665. </member>
  666. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.BorderStyle">
  667. <summary>
  668. Gets or sets the ExplorerBar's border style.
  669. </summary>
  670. </member>
  671. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.Groups">
  672. <summary>
  673. Gets an object representing the collection of the ExplorerBarGroup objects contained in this ExplorerBar.
  674. </summary>
  675. </member>
  676. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.BlendColor">
  677. <summary>
  678. Gets or sets the color that blends with the BackColor and BackColorGradient properties of the ExplorerBarFormatStyle when its Blend or BlendGradient properties are not zero.
  679. </summary>
  680. </member>
  681. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.FlatBorderColor">
  682. <summary>
  683. Gets or sets the color of the control's border when its style is flat.
  684. </summary>
  685. </member>
  686. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.DefaultBlend">
  687. <summary>
  688. Gets or sets a value indicating the default percentage of the BlendColor to use with the ExplorerBarFormatStyle objects associated with this ExplorerBar.
  689. </summary>
  690. </member>
  691. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.BackgroundImageDrawMode">
  692. <summary>
  693. Gets or sets a value specifiying how the background image of the ExplorerBar is drawn.
  694. </summary>
  695. </member>
  696. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.WatermarkImage">
  697. <summary>
  698. Gets a ExplorerWatermarkImage that contains the information used to draw a watermark image in the background.
  699. </summary>
  700. </member>
  701. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ImageSize">
  702. <summary>
  703. Gets or sets a System.Drawing.Size that determines the size that images will have when drawing a group or an item.
  704. </summary>
  705. </member>
  706. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ImageList">
  707. <summary>
  708. Gets or sets the ImageList that contains the Image objects used by the ExplorerBarGroup and ExplorerBarItem objects.
  709. </summary>
  710. </member>
  711. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.SelectedItem">
  712. <summary>
  713. Gets or sets the ExplorerBarItem object currently selected.
  714. </summary>
  715. </member>
  716. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.KeepSelection">
  717. <summary>
  718. Gets or sets a value indicating if the ExplorerBarItem appears selected when the user clicks on it.
  719. </summary>
  720. </member>
  721. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ColumnSeparation">
  722. <summary>
  723. Gets or sets the space, in pixels, between columns of groups.
  724. </summary>
  725. </member>
  726. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.GroupSeparation">
  727. <summary>
  728. Gets or sets the vertical space, in pixels, between groups.
  729. </summary>
  730. </member>
  731. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.LeftMargin">
  732. <summary>
  733. Gets or sets the left margin for the ExplorerBar control.
  734. </summary>
  735. </member>
  736. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.RightMargin">
  737. <summary>
  738. Gets or sets the right margin for the ExplorerBar control.
  739. </summary>
  740. </member>
  741. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.TopMargin">
  742. <summary>
  743. Gets or sets the top margin for the ExplorerBar control.
  744. </summary>
  745. </member>
  746. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.UseMnemonic">
  747. <summary>
  748. Gets or sets a value indicating whether an ampersand is included in the text of the control.
  749. </summary>
  750. </member>
  751. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.UseCompatibleTextRendering">
  752. <summary>
  753. Gets or sets a value specifying whether the text rendering should be compatible with previous release of Windows Forms.
  754. </summary>
  755. </member>
  756. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.InnerHeight">
  757. <summary>
  758. Gets the inner height of the ExplorerBar control.
  759. </summary>
  760. </member>
  761. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.Columns">
  762. <summary>
  763. Gets or sets the number of groups displayed horizontally across the ExplorerBar control.
  764. </summary>
  765. </member>
  766. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.VerticalScrollBar">
  767. <summary>
  768. Gets or sets a value specifyng when the vertical scroll bar will be visible.
  769. </summary>
  770. </member>
  771. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.BackColor">
  772. <summary>
  773. Gets or sets the background color for the control.
  774. </summary>
  775. </member>
  776. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.Text">
  777. <summary>
  778. Gets or sets the text associated with this Schedule.
  779. </summary>
  780. </member>
  781. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.BackgroundThemeStyle">
  782. <summary>
  783. Gets or sets a value that determines which predefined background is used to draw the background of the contrrol when using Windows XP Visual Styles.
  784. </summary>
  785. </member>
  786. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ShowGroupBorder">
  787. <summary>
  788. Gets or sets a value that indicates whether a border is drawn around a group.
  789. </summary>
  790. </member>
  791. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.Effect">
  792. <summary>
  793. Gets or sets a value that indicates which effect to use when groups are expanded/collapsed.
  794. </summary>
  795. </member>
  796. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.DefaultItemImageIndex">
  797. <summary>
  798. Gets or sets a value specifying the default image list index value of the image displayed in the items.
  799. </summary>
  800. </member>
  801. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.DefaultItemImageKey">
  802. <summary>
  803. Gets or sets a value specifying the key accessor for the default image in the ImageList displayed in the items.
  804. </summary>
  805. </member>
  806. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.DefaultGroupImageIndex">
  807. <summary>
  808. Gets or sets a value specifying the default image list index value of the image displayed in the groups.
  809. </summary>
  810. </member>
  811. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.DefaultGroupImageKey">
  812. <summary>
  813. Gets or sets a value specifying the key accessor for the default image in the ImageList displayed in the groups.
  814. </summary>
  815. </member>
  816. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.DefaultForegroundThemeStlye">
  817. <summary>
  818. Gets or sets a value that determines which predefined foreground is used as the default to draw an area when using themes.
  819. </summary>
  820. </member>
  821. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.OwnerDrawnArea">
  822. <summary>
  823. Gets or sets a value specifying which area of a ExplorerBar control needs to be drawn manually.
  824. </summary>
  825. </member>
  826. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ThemedAreas">
  827. <summary>
  828. Gets or sets a value specifying which parts of the ExplorerBar will be drawn using Windows XP Visual Styles.
  829. </summary>
  830. </member>
  831. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ActiveItem">
  832. <summary>
  833. Gets the ExplorerBarGroup that contains the input focus.
  834. </summary>
  835. </member>
  836. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ActiveGroup">
  837. <summary>
  838. Gets the ExplorerBarGroup that contains the input focus.
  839. </summary>
  840. </member>
  841. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ShowToolTips">
  842. <summary>
  843. Gets or sets a value indicating whether a ToolTip is shown when the mouse passes over a group or item.
  844. </summary>
  845. </member>
  846. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.Alpha">
  847. <summary>
  848. Gets or sets a value specifying the level of alpha (transparency) used to draw the objects in the ExplorerBar control.
  849. </summary>
  850. </member>
  851. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.AlphaMode">
  852. <summary>
  853. Gets or sets a value specifying the level of alpha to use in the ExplorerBar control.
  854. </summary>
  855. </member>
  856. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.BackColorAlphaMode">
  857. <summary>
  858. Gets or sets a value specifying the level of alpha (transparency) to use in the background.
  859. </summary>
  860. </member>
  861. <member name="P:Janus.Windows.ExplorerBar.ExplorerBar.ForeColorAlphaMode">
  862. <summary>
  863. Gets or sets a value specifying the level of alpha (transparency) to use in the foreground.
  864. </summary>
  865. </member>
  866. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.GroupExpanding">
  867. <summary>
  868. Occurs when an ExplorerBarGroup is about to be expanded by either a programmatic modification or user interaction.
  869. </summary>
  870. </member>
  871. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.GroupClosing">
  872. <summary>
  873. Occurs when an ExplorerBarGroup is about to be closed by user interaction.
  874. </summary>
  875. </member>
  876. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.GroupClosed">
  877. <summary>
  878. Occurs when an ExplorerBarGroup is closed by user interaction.
  879. </summary>
  880. </member>
  881. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.GroupCollapsing">
  882. <summary>
  883. Occurs when an ExplorerBarGroup is about to be collapsed by either a programmatic modification or user interaction.
  884. </summary>
  885. </member>
  886. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.GroupExpanded">
  887. <summary>
  888. Occurs when an ExplorerBarGroup was expanded by either a programmatic modification or user interaction.
  889. </summary>
  890. </member>
  891. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.GroupCollapsed">
  892. <summary>
  893. Occurs when an ExplorerBarGroup was collapsed by either a programmatic modification or user interaction.
  894. </summary>
  895. </member>
  896. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.LayoutLoad">
  897. <summary>
  898. Occurs after a layout is loaded.
  899. </summary>
  900. </member>
  901. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.CurrentLayoutChanged">
  902. <summary>
  903. Occurs after the CurrentLayout property has changed.
  904. </summary>
  905. </member>
  906. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.CurrentLayoutChanging">
  907. <summary>
  908. Occurs after the CurrentLayout property changes.
  909. </summary>
  910. </member>
  911. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.ItemClick">
  912. <summary>
  913. Occurs when the user clicks on an ExplorerBarItem.
  914. </summary>
  915. </member>
  916. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.DrawExplorerBarArea">
  917. <summary>
  918. Occurs when a visual owner draw area needs to be painted.
  919. </summary>
  920. </member>
  921. <member name="E:Janus.Windows.ExplorerBar.ExplorerBar.GroupClick">
  922. <summary>
  923. Occurs when the user clicks on a ExplorerBarGroup.
  924. </summary>
  925. </member>
  926. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle">
  927. <summary>
  928. Summary description for FormatStyle.
  929. </summary>
  930. </member>
  931. <member name="F:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.AlphaEmpty">
  932. <summary>
  933. Represents the empty alpha value. This field is read-only.
  934. </summary>
  935. </member>
  936. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.Reset">
  937. <summary>
  938. Resets all the properties of this ExplorerBarFormatStyle to its default values.
  939. </summary>
  940. </member>
  941. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ShouldSerialize">
  942. <summary>
  943. Indicates whether the ExplorerBarFormatStyle object has changed from its default value.
  944. </summary>
  945. <returns>true if the one of the properties of the ExplorerBarFormatStyle has changed from its default; otherwise, false.</returns>
  946. </member>
  947. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.#ctor(Janus.Windows.ExplorerBar.ExplorerBarFormatStyle)">
  948. <summary>
  949. Initializes a new instance of the ExplorerBarFormatStyle class based on the given ExplorerBarFormatStyle.
  950. </summary>
  951. <param name="baseStyle">A ExplorerBarFormatStyle which properties will be copied to create a new ExplorerBarFormatStyle class.</param>
  952. </member>
  953. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ResetBackColor">
  954. <summary>
  955. Resets the BackColor property to its default color.
  956. </summary>
  957. </member>
  958. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ShouldSerializeBackColor">
  959. <summary>
  960. Indicates whether the BackColor property should be persisted.
  961. </summary>
  962. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  963. </member>
  964. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ResetForeColor">
  965. <summary>
  966. Resets the ForeColor property to its default color.
  967. </summary>
  968. </member>
  969. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ShouldSerializeForeColor">
  970. <summary>
  971. Indicates whether the ForeColor property should be persisted.
  972. </summary>
  973. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  974. </member>
  975. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ShouldSerializeFontBold">
  976. <summary>
  977. Indicates whether the FontBold property should be persisted.
  978. </summary>
  979. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  980. </member>
  981. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ResetFontBold">
  982. <summary>
  983. Resets the FontBold property to its default color.
  984. </summary>
  985. </member>
  986. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ResetBackColorGradient">
  987. <summary>
  988. Resets the BackColorGradient property to its default color.
  989. </summary>
  990. </member>
  991. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ShouldSerializeBackColorGradient">
  992. <summary>
  993. Indicates whether the BackColorGradient property should be persisted.
  994. </summary>
  995. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  996. </member>
  997. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ShouldSerializeForegroundThemeStyle">
  998. <summary>
  999. Indicates whether the ForegroundThemeStyle property should be persisted.
  1000. </summary>
  1001. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  1002. </member>
  1003. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ResetForegroundThemeStyle">
  1004. <summary>
  1005. Resets the ForegroundThemeStyle property to its default color.
  1006. </summary>
  1007. </member>
  1008. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ShouldSerializeBackgroundThemeStyle">
  1009. <summary>
  1010. Indicates whether the BackgroundThemeStyle property should be persisted.
  1011. </summary>
  1012. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  1013. </member>
  1014. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ResetBackgroundThemeStyle">
  1015. <summary>
  1016. Resets the BackgroundThemeStyle property to its default color.
  1017. </summary>
  1018. </member>
  1019. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ShouldSerializeBackgroundGradientMode">
  1020. <summary>
  1021. Indicates whether the BackgroundGradientMode property should be persisted.
  1022. </summary>
  1023. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  1024. </member>
  1025. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ResetBackgroundGradientMode">
  1026. <summary>
  1027. Resets the BackgroundGradientMode property to its default color.
  1028. </summary>
  1029. </member>
  1030. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ExplorerBar">
  1031. <summary>
  1032. Get the ExplorerBar control that this ExplorerBarFormatStyle is assigned to.
  1033. </summary>
  1034. </member>
  1035. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.Alpha">
  1036. <summary>
  1037. Gets or sets a value specifying the level of alpha (transparency).
  1038. </summary>
  1039. </member>
  1040. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.BackColor">
  1041. <summary>
  1042. Gets or sets the background color for this ExplorerBarFormatStyle.
  1043. </summary>
  1044. </member>
  1045. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.BackColorAlphaMode">
  1046. <summary>
  1047. Gets or sets a value specifying the level of alpha (transparency) to use in the background.
  1048. </summary>
  1049. </member>
  1050. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ForeColor">
  1051. <summary>
  1052. Gets or sets the foreground color for this ExplorerBarFormatStyle.
  1053. </summary>
  1054. </member>
  1055. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ForeColorAlphaMode">
  1056. <summary>
  1057. Gets or sets a value specifying the level of alpha (transparency) to use in the foreground.
  1058. </summary>
  1059. </member>
  1060. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.Font">
  1061. <summary>
  1062. Gets or sets the Font object used by this ExplorerBarFormatStyle.
  1063. </summary>
  1064. </member>
  1065. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.FontBold">
  1066. <summary>
  1067. Gets or sets a value indicating whether the Font object of this ExplorerBarFormatStyle is bold.
  1068. </summary>
  1069. </member>
  1070. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.FontItalic">
  1071. <summary>
  1072. Gets or sets a value indicating whether the Font object of this ExplorerBarFormatStyle is italic.
  1073. </summary>
  1074. </member>
  1075. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.FontUnderline">
  1076. <summary>
  1077. Gets or sets a value indicating whether the Font object of this ExplorerBarFormatStyle is underlined.
  1078. </summary>
  1079. </member>
  1080. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.FontStrikeout">
  1081. <summary>
  1082. Gets or sets a value indicating whether the Font object of this ExplorerBarFormatStyle specifies a horizontal line through the font.
  1083. </summary>
  1084. </member>
  1085. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.FontName">
  1086. <summary>
  1087. Gets or sets the face name of the font used by the ExplorerBarFormatSrtyle class.
  1088. </summary>
  1089. </member>
  1090. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.FontSize">
  1091. <summary>
  1092. Gets or sets the size of the Font object used by this ExplorerBarFormatStyle object.
  1093. </summary>
  1094. </member>
  1095. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.BackColorGradient">
  1096. <summary>
  1097. Gets or sets a value specifying the background color used in a linear gradient pathern.
  1098. </summary>
  1099. </member>
  1100. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.BackColorGradientAlphaMode">
  1101. <summary>
  1102. Gets or sets a value specifying the level of alpha (transparency) to use in the background of the second color in a linear gradient pattern.
  1103. </summary>
  1104. </member>
  1105. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.BlendGradient">
  1106. <summary>
  1107. Gets or sets a value indicating the percentage of the BlendColor to blend with the BackColorGradient.
  1108. </summary>
  1109. </member>
  1110. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.Blend">
  1111. <summary>
  1112. Gets or sets a value indicating the percentage of the BlendColor to blend with the BackColor.
  1113. </summary>
  1114. </member>
  1115. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.ForegroundThemeStyle">
  1116. <summary>
  1117. Gets or sets a value that determines which predefined foreground is used to draw an area when using themes.
  1118. </summary>
  1119. </member>
  1120. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.BackgroundThemeStyle">
  1121. <summary>
  1122. Gets or sets a value that determines which predefined background is used to draw an area when using themes.
  1123. </summary>
  1124. </member>
  1125. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarFormatStyle.BackgroundGradientMode">
  1126. <summary>
  1127. Gets or sets a value specifying if a linear gradient will be applied and its direction.
  1128. </summary>
  1129. </member>
  1130. <member name="T:Janus.Windows.ExplorerBar.WashMode">
  1131. <summary>
  1132. Specified which color to apply when drawing a watermark image.
  1133. </summary>
  1134. </member>
  1135. <member name="F:Janus.Windows.ExplorerBar.WashMode.System">
  1136. <summary>
  1137. The predefined system color will be used as the wash color
  1138. </summary>
  1139. </member>
  1140. <member name="F:Janus.Windows.ExplorerBar.WashMode.UseWashColor">
  1141. <summary>
  1142. The color defined in the WashColor property will be used as the wash color or none if the WashColor is empty.
  1143. </summary>
  1144. </member>
  1145. <member name="T:Janus.Windows.ExplorerBar.VisualStyle">
  1146. <summary>
  1147. Specifies which apperance style the control is formatted after.
  1148. </summary>
  1149. </member>
  1150. <member name="F:Janus.Windows.ExplorerBar.VisualStyle.Default">
  1151. <summary>
  1152. Unspecified. The value of the property is inherited from the settings specified in the ExplorerBar control.
  1153. </summary>
  1154. </member>
  1155. <member name="F:Janus.Windows.ExplorerBar.VisualStyle.Standard">
  1156. <summary>
  1157. The control is formatted as the standard ExplorerBar control.
  1158. </summary>
  1159. </member>
  1160. <member name="F:Janus.Windows.ExplorerBar.VisualStyle.Office2003">
  1161. <summary>
  1162. The ExplorerBar control is formatted as its related control in Office 2003.
  1163. </summary>
  1164. </member>
  1165. <member name="F:Janus.Windows.ExplorerBar.VisualStyle.VS2005">
  1166. <summary>
  1167. The ExplorerBar control is formatted as its related control in VS 2005.
  1168. </summary>
  1169. </member>
  1170. <member name="F:Janus.Windows.ExplorerBar.VisualStyle.Office2007">
  1171. <summary>
  1172. The ExplorerBar control is formatted as its related control in Office 2007.
  1173. </summary>
  1174. </member>
  1175. <member name="T:Janus.Windows.ExplorerBar.Office2007ColorScheme">
  1176. <summary>
  1177. Determines the color scheme a control uses to draw itself when the VisualStyle of a control is Office2007.
  1178. </summary>
  1179. </member>
  1180. <member name="F:Janus.Windows.ExplorerBar.Office2007ColorScheme.Default">
  1181. <summary>
  1182. The control is drawn using the OfficeColorScheme specified as the DefaultOffice2007ColorScheme in the Janus.Windows.Common.VisualStyleManager component.
  1183. </summary>
  1184. </member>
  1185. <member name="F:Janus.Windows.ExplorerBar.Office2007ColorScheme.Blue">
  1186. <summary>
  1187. The control is drawn using the built-in 'Blue' color scheme.
  1188. </summary>
  1189. </member>
  1190. <member name="F:Janus.Windows.ExplorerBar.Office2007ColorScheme.Silver">
  1191. <summary>
  1192. The control is drawn using the built-in 'Silver' color scheme.
  1193. </summary>
  1194. </member>
  1195. <member name="F:Janus.Windows.ExplorerBar.Office2007ColorScheme.Black">
  1196. <summary>
  1197. The control is drawn using the built-in 'Black' color scheme.
  1198. </summary>
  1199. </member>
  1200. <member name="F:Janus.Windows.ExplorerBar.Office2007ColorScheme.Custom">
  1201. <summary>
  1202. The control is drawn using a custom color scheme created based on the color specified in the Office2007CustomColor property.
  1203. </summary>
  1204. </member>
  1205. <member name="T:Janus.Windows.ExplorerBar.AlphaMode">
  1206. <summary>
  1207. Specifies the alpha level to use.
  1208. </summary>
  1209. </member>
  1210. <member name="F:Janus.Windows.ExplorerBar.AlphaMode.Empty">
  1211. <summary>
  1212. Indicates that the value for this property should be inherited from the parent object.
  1213. </summary>
  1214. </member>
  1215. <member name="F:Janus.Windows.ExplorerBar.AlphaMode.Opaque">
  1216. <summary>
  1217. Indicates an alpha level of 255.
  1218. </summary>
  1219. </member>
  1220. <member name="F:Janus.Windows.ExplorerBar.AlphaMode.Transparent">
  1221. <summary>
  1222. Indicates an alpha level of 0.
  1223. </summary>
  1224. </member>
  1225. <member name="F:Janus.Windows.ExplorerBar.AlphaMode.UseAlpha">
  1226. <summary>
  1227. Use the value of the Alpha property.
  1228. </summary>
  1229. </member>
  1230. <member name="T:Janus.Windows.ExplorerBar.BackgroundThemeStyle">
  1231. <summary>
  1232. Determines the appearance to be applied on an area of the control when it is painted using Windows XP Visual Styles.
  1233. </summary>
  1234. </member>
  1235. <member name="F:Janus.Windows.ExplorerBar.BackgroundThemeStyle.Empty">
  1236. <summary>
  1237. Indicates that the value for this property should be inherited from the parent object.
  1238. </summary>
  1239. </member>
  1240. <member name="F:Janus.Windows.ExplorerBar.BackgroundThemeStyle.ControlBackground">
  1241. <summary>
  1242. The area will be painted with an appearance similar to the main background area of an ExplorerBar control.
  1243. </summary>
  1244. </member>
  1245. <member name="F:Janus.Windows.ExplorerBar.BackgroundThemeStyle.GroupHeader">
  1246. <summary>
  1247. The area will be painted with an appearance similar to the group header area.
  1248. </summary>
  1249. </member>
  1250. <member name="F:Janus.Windows.ExplorerBar.BackgroundThemeStyle.GroupHeaderInverted">
  1251. <summary>
  1252. The area will be painted with the appearance of an inverted group header area.
  1253. </summary>
  1254. </member>
  1255. <member name="F:Janus.Windows.ExplorerBar.BackgroundThemeStyle.SpecialGroupHeader">
  1256. <summary>
  1257. The area will be painted with an appearance similar to the header area of an special group.
  1258. </summary>
  1259. </member>
  1260. <member name="F:Janus.Windows.ExplorerBar.BackgroundThemeStyle.Items">
  1261. <summary>
  1262. The area will be painted with an appearance similar to the items background area of a group.
  1263. </summary>
  1264. </member>
  1265. <member name="F:Janus.Windows.ExplorerBar.BackgroundThemeStyle.None">
  1266. <summary>
  1267. The area won't be painted using Windows XP Visual Styles.
  1268. </summary>
  1269. </member>
  1270. <member name="T:Janus.Windows.ExplorerBar.ForegroundThemeStyle">
  1271. <summary>
  1272. Determines how the foreground of an area of the control is painted when using Windows XP Visual Styles.
  1273. </summary>
  1274. </member>
  1275. <member name="F:Janus.Windows.ExplorerBar.ForegroundThemeStyle.Empty">
  1276. <summary>
  1277. Indicates that the value for this property should be inherited from the parent object.
  1278. </summary>
  1279. </member>
  1280. <member name="F:Janus.Windows.ExplorerBar.ForegroundThemeStyle.GroupHeader">
  1281. <summary>
  1282. The foreground will be painted with an appearance similar to the group header foreground.
  1283. </summary>
  1284. </member>
  1285. <member name="F:Janus.Windows.ExplorerBar.ForegroundThemeStyle.SpecialGroupHeader">
  1286. <summary>
  1287. The foreground will be painted with an appearance similar to the header foreground of an special group.
  1288. </summary>
  1289. </member>
  1290. <member name="F:Janus.Windows.ExplorerBar.ForegroundThemeStyle.Item">
  1291. <summary>
  1292. The area will be painted with an appearance similar to the items foregrouund.
  1293. </summary>
  1294. </member>
  1295. <member name="F:Janus.Windows.ExplorerBar.ForegroundThemeStyle.None">
  1296. <summary>
  1297. The area won't be painted using Windows XP Visual Styles.
  1298. </summary>
  1299. </member>
  1300. <member name="T:Janus.Windows.ExplorerBar.VerticalScrollBar">
  1301. <summary>
  1302. Specifies when the vertical scroll bar will be visible.
  1303. </summary>
  1304. </member>
  1305. <member name="F:Janus.Windows.ExplorerBar.VerticalScrollBar.Automatic">
  1306. <summary>
  1307. The scroll bar is shown only when there are enough items to warrant displaying.
  1308. </summary>
  1309. </member>
  1310. <member name="F:Janus.Windows.ExplorerBar.VerticalScrollBar.Always">
  1311. <summary>
  1312. The scroll bar will be displayed even if the number of items in the ExplorerBar does not require displaying the vertical scroll bar.
  1313. </summary>
  1314. </member>
  1315. <member name="F:Janus.Windows.ExplorerBar.VerticalScrollBar.Never">
  1316. <summary>
  1317. The scroll bar won´t be displayed.
  1318. </summary>
  1319. </member>
  1320. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarArea">
  1321. <summary>
  1322. Specifies the type of an area in a ExplorerBar control.
  1323. </summary>
  1324. </member>
  1325. <member name="F:Janus.Windows.ExplorerBar.ExplorerBarArea.Border">
  1326. <summary>
  1327. Represents the border of the ExplorerBar control.
  1328. </summary>
  1329. </member>
  1330. <member name="F:Janus.Windows.ExplorerBar.ExplorerBarArea.Background">
  1331. <summary>
  1332. Represents the background of the ExplorerBar control.
  1333. </summary>
  1334. </member>
  1335. <member name="F:Janus.Windows.ExplorerBar.ExplorerBarArea.GroupHeader">
  1336. <summary>
  1337. Represents the header of a ExplorerBarGroup.
  1338. </summary>
  1339. </member>
  1340. <member name="F:Janus.Windows.ExplorerBar.ExplorerBarArea.Items">
  1341. <summary>
  1342. Represents a ExplorerBarItem.
  1343. </summary>
  1344. </member>
  1345. <member name="T:Janus.Windows.ExplorerBar.OwnerDrawnArea">
  1346. <summary>
  1347. Specifies which area of a ExplorerBar control needs to be drawn manually.
  1348. </summary>
  1349. </member>
  1350. <member name="F:Janus.Windows.ExplorerBar.OwnerDrawnArea.None">
  1351. <summary>
  1352. The control won't be drawn manually.
  1353. </summary>
  1354. </member>
  1355. <member name="F:Janus.Windows.ExplorerBar.OwnerDrawnArea.Background">
  1356. <summary>
  1357. Specifies that the area to be manually drawn is the control's background.
  1358. </summary>
  1359. </member>
  1360. <member name="F:Janus.Windows.ExplorerBar.OwnerDrawnArea.GroupHeader">
  1361. <summary>
  1362. Specifies that the area to be manually drawn is the header of the groups.
  1363. </summary>
  1364. </member>
  1365. <member name="F:Janus.Windows.ExplorerBar.OwnerDrawnArea.Item">
  1366. <summary>
  1367. Specifies that the area to be manually drawn are the ExplorerBarItem ojects of the control.
  1368. </summary>
  1369. </member>
  1370. <member name="F:Janus.Windows.ExplorerBar.OwnerDrawnArea.All">
  1371. <summary>
  1372. All flags except None are set.
  1373. </summary>
  1374. </member>
  1375. <member name="T:Janus.Windows.ExplorerBar.ButtonAlignment">
  1376. <summary>
  1377. Specifies the alignment of the expand and close buttons relative to its layout rectangle.
  1378. </summary>
  1379. </member>
  1380. <member name="F:Janus.Windows.ExplorerBar.ButtonAlignment.Default">
  1381. <summary>
  1382. Unspecified. The value of the property is inherited from the settings specified in the ExplorerBar control.
  1383. </summary>
  1384. </member>
  1385. <member name="F:Janus.Windows.ExplorerBar.ButtonAlignment.Left">
  1386. <summary>
  1387. Specifies that the expand and close buttons will be aligned to the left of its layout rectangle.
  1388. </summary>
  1389. </member>
  1390. <member name="F:Janus.Windows.ExplorerBar.ButtonAlignment.Right">
  1391. <summary>
  1392. Specifies that the expand and close buttons will be aligned to the right of its layout rectangle.
  1393. </summary>
  1394. </member>
  1395. <member name="T:Janus.Windows.ExplorerBar.HitTest">
  1396. <summary>
  1397. Determines which element of the ExplorerBar control is at a specified location.
  1398. </summary>
  1399. </member>
  1400. <member name="F:Janus.Windows.ExplorerBar.HitTest.ExplorerBarItem">
  1401. <summary>
  1402. A ExplorerBarItem in the ExplorerBar control.
  1403. </summary>
  1404. </member>
  1405. <member name="F:Janus.Windows.ExplorerBar.HitTest.ExplorerBarGroup">
  1406. <summary>
  1407. A ExplorerBarGroup in the ExplorerBar control.
  1408. </summary>
  1409. </member>
  1410. <member name="F:Janus.Windows.ExplorerBar.HitTest.ScrollBar">
  1411. <summary>
  1412. The scroll bar in the ExplorerBar control.
  1413. </summary>
  1414. </member>
  1415. <member name="F:Janus.Windows.ExplorerBar.HitTest.CollapseHeaderButton">
  1416. <summary>
  1417. The expand/collapse button in the group's header.
  1418. </summary>
  1419. </member>
  1420. <member name="F:Janus.Windows.ExplorerBar.HitTest.CloseHeaderButton">
  1421. <summary>
  1422. The close button in the group's header.
  1423. </summary>
  1424. </member>
  1425. <member name="F:Janus.Windows.ExplorerBar.HitTest.None">
  1426. <summary>
  1427. The background area, visible when the control contains few ExplorerBarGroup objects, or when the ExplorerBar is scrolled to its bottom.
  1428. </summary>
  1429. </member>
  1430. <member name="T:Janus.Windows.ExplorerBar.BackgroundGradientMode">
  1431. <summary>
  1432. Specifies how the background of an object will be filled.
  1433. </summary>
  1434. </member>
  1435. <member name="F:Janus.Windows.ExplorerBar.BackgroundGradientMode.Empty">
  1436. <summary>
  1437. Indicates that the value for this property should be inherited from the parent object.
  1438. </summary>
  1439. </member>
  1440. <member name="F:Janus.Windows.ExplorerBar.BackgroundGradientMode.Solid">
  1441. <summary>
  1442. Specifies a solid background.
  1443. </summary>
  1444. </member>
  1445. <member name="F:Janus.Windows.ExplorerBar.BackgroundGradientMode.Horizontal">
  1446. <summary>
  1447. Specifies a gradient from left to right.
  1448. </summary>
  1449. </member>
  1450. <member name="F:Janus.Windows.ExplorerBar.BackgroundGradientMode.Vertical">
  1451. <summary>
  1452. Specifies a gradient from top to bottom.
  1453. </summary>
  1454. </member>
  1455. <member name="F:Janus.Windows.ExplorerBar.BackgroundGradientMode.Diagonal">
  1456. <summary>
  1457. Specifies a gradient from upper left to lower right.
  1458. </summary>
  1459. </member>
  1460. <member name="F:Janus.Windows.ExplorerBar.BackgroundGradientMode.DiagonalBackwards">
  1461. <summary>
  1462. Specifies a gradient from upper right to lower left.
  1463. </summary>
  1464. </member>
  1465. <member name="T:Janus.Windows.ExplorerBar.Effect">
  1466. <summary>
  1467. Specifies which effect is used when groups are expanded/collapsed.
  1468. </summary>
  1469. </member>
  1470. <member name="F:Janus.Windows.ExplorerBar.Effect.Fade">
  1471. <summary>
  1472. Groups are fade-in when expanding and disolved when collapsing
  1473. </summary>
  1474. </member>
  1475. <member name="F:Janus.Windows.ExplorerBar.Effect.Scroll">
  1476. <summary>
  1477. Groups are expanded/collapsed using smoth scrolling.
  1478. </summary>
  1479. </member>
  1480. <member name="F:Janus.Windows.ExplorerBar.Effect.None">
  1481. <summary>
  1482. No effect is used when a group is expanded/collapsed
  1483. </summary>
  1484. </member>
  1485. <member name="T:Janus.Windows.ExplorerBar.HeaderRoundCorners">
  1486. <summary>
  1487. Specifies which corner of the groups' header should be rounded
  1488. </summary>
  1489. </member>
  1490. <member name="F:Janus.Windows.ExplorerBar.HeaderRoundCorners.UseDefault">
  1491. <summary>
  1492. The rounded corners will be determinated by the Style of the control.
  1493. </summary>
  1494. </member>
  1495. <member name="F:Janus.Windows.ExplorerBar.HeaderRoundCorners.Left">
  1496. <summary>
  1497. Only the left corner will be rounded
  1498. </summary>
  1499. </member>
  1500. <member name="F:Janus.Windows.ExplorerBar.HeaderRoundCorners.Right">
  1501. <summary>
  1502. Only the right corner will be rounded
  1503. </summary>
  1504. </member>
  1505. <member name="F:Janus.Windows.ExplorerBar.HeaderRoundCorners.Both">
  1506. <summary>
  1507. The left and the right corners will be rounded
  1508. </summary>
  1509. </member>
  1510. <member name="F:Janus.Windows.ExplorerBar.HeaderRoundCorners.None">
  1511. <summary>
  1512. No corners will be rounded
  1513. </summary>
  1514. </member>
  1515. <member name="T:Janus.Windows.ExplorerBar.TriState">
  1516. <summary>
  1517. Represents a boolean value for a property that can inherit its value from a base or parent object.
  1518. </summary>
  1519. </member>
  1520. <member name="F:Janus.Windows.ExplorerBar.TriState.Empty">
  1521. <summary>
  1522. Indicates that the value for this property should be inherited from the parent object.
  1523. </summary>
  1524. </member>
  1525. <member name="F:Janus.Windows.ExplorerBar.TriState.False">
  1526. <summary>
  1527. Specifies that False should be used in a property ignoring settings in the parent object.
  1528. </summary>
  1529. </member>
  1530. <member name="F:Janus.Windows.ExplorerBar.TriState.True">
  1531. <summary>
  1532. Specifies that True should be used in a property ignoring settings in the parent object.
  1533. </summary>
  1534. </member>
  1535. <member name="T:Janus.Windows.ExplorerBar.ThemedArea">
  1536. <summary>
  1537. Specifies which portion of the ExplorerBar control will be drawn using Windows XP Visual Styles.
  1538. </summary>
  1539. </member>
  1540. <member name="F:Janus.Windows.ExplorerBar.ThemedArea.None">
  1541. <summary>
  1542. The control won´t use Windows XP Visual Styles.
  1543. </summary>
  1544. </member>
  1545. <member name="F:Janus.Windows.ExplorerBar.ThemedArea.Background">
  1546. <summary>
  1547. The background of the control will be drawn using Windows XP Visual Styles.
  1548. </summary>
  1549. </member>
  1550. <member name="F:Janus.Windows.ExplorerBar.ThemedArea.Border">
  1551. <summary>
  1552. The border of the control will be drawn using Windows XP Visual Styles.
  1553. </summary>
  1554. </member>
  1555. <member name="F:Janus.Windows.ExplorerBar.ThemedArea.GroupHeader">
  1556. <summary>
  1557. The headers of the ExplorerBarGroup objects control will be drawn using Windows XP Visual Styles.
  1558. </summary>
  1559. </member>
  1560. <member name="F:Janus.Windows.ExplorerBar.ThemedArea.ScrollBar">
  1561. <summary>
  1562. The scroll bar will be drawn using Windows XP Visual Styles.
  1563. </summary>
  1564. </member>
  1565. <member name="F:Janus.Windows.ExplorerBar.ThemedArea.Items">
  1566. <summary>
  1567. The items of the ExplorerBarGroup objects control will be drawn using Windows XP Visual Styles.
  1568. </summary>
  1569. </member>
  1570. <member name="F:Janus.Windows.ExplorerBar.ThemedArea.All">
  1571. <summary>
  1572. All flags except None are set.
  1573. </summary>
  1574. </member>
  1575. <member name="T:Janus.Windows.ExplorerBar.ImageDrawMode">
  1576. <summary>
  1577. Specifies how the background image is positioned within the ExplorerBar control.
  1578. </summary>
  1579. </member>
  1580. <member name="F:Janus.Windows.ExplorerBar.ImageDrawMode.Stretched">
  1581. <summary>
  1582. The image is stretched or shrunk to fit the size of the layout rectangle.
  1583. </summary>
  1584. </member>
  1585. <member name="F:Janus.Windows.ExplorerBar.ImageDrawMode.Tiled">
  1586. <summary>
  1587. The image is tiled.
  1588. </summary>
  1589. </member>
  1590. <member name="F:Janus.Windows.ExplorerBar.ImageDrawMode.Centered">
  1591. <summary>
  1592. The image is displayed in the center if the layout rectangle is larger than the image. If the image is larger than the layout rectangle, the picture is placed in the center of the rectangle and the outside edges are clipped.
  1593. </summary>
  1594. </member>
  1595. <member name="T:Janus.Windows.ExplorerBar.BorderStyle">
  1596. <summary>
  1597. Specify the border style for the ExplorerBar control.
  1598. </summary>
  1599. </member>
  1600. <member name="F:Janus.Windows.ExplorerBar.BorderStyle.None">
  1601. <summary>
  1602. The ExplorerBar control has no border.
  1603. </summary>
  1604. </member>
  1605. <member name="F:Janus.Windows.ExplorerBar.BorderStyle.Flat">
  1606. <summary>
  1607. The border has no three-dimensional effects.
  1608. </summary>
  1609. </member>
  1610. <member name="F:Janus.Windows.ExplorerBar.BorderStyle.RaisedLight3D">
  1611. <summary>
  1612. The border has a raised outer edge and no inner edge.
  1613. </summary>
  1614. </member>
  1615. <member name="F:Janus.Windows.ExplorerBar.BorderStyle.Raised">
  1616. <summary>
  1617. The border has raised inner and outer edges.
  1618. </summary>
  1619. </member>
  1620. <member name="F:Janus.Windows.ExplorerBar.BorderStyle.SunkenLight3D">
  1621. <summary>
  1622. The border has a sunken outer edge and no inner edge.
  1623. </summary>
  1624. </member>
  1625. <member name="F:Janus.Windows.ExplorerBar.BorderStyle.Sunken">
  1626. <summary>
  1627. The border has sunken inner and outer edges.
  1628. </summary>
  1629. </member>
  1630. <member name="T:Janus.Windows.ExplorerBar.ScrollBarAppearance">
  1631. <summary>
  1632. Specifies the appearance of the vertical scroll bar.
  1633. </summary>
  1634. </member>
  1635. <member name="F:Janus.Windows.ExplorerBar.ScrollBarAppearance.Regular">
  1636. <summary>
  1637. The border has raised inner and outer edges.
  1638. </summary>
  1639. </member>
  1640. <member name="F:Janus.Windows.ExplorerBar.ScrollBarAppearance.Light3D">
  1641. <summary>
  1642. The border has a raised inner edge and no outer edge.
  1643. </summary>
  1644. </member>
  1645. <member name="F:Janus.Windows.ExplorerBar.ScrollBarAppearance.Flat">
  1646. <summary>
  1647. The border has no three-dimensional effects.
  1648. </summary>
  1649. </member>
  1650. <member name="F:Janus.Windows.ExplorerBar.ScrollBarAppearance.FlatBorderless">
  1651. <summary>
  1652. The vertical scroll bar has no border.
  1653. </summary>
  1654. </member>
  1655. <member name="F:Janus.Windows.ExplorerBar.ScrollBarAppearance.PopUp">
  1656. <summary>
  1657. The border appears flat until the mouse pointer moves over it, at which point it appears three-dimensional.
  1658. </summary>
  1659. </member>
  1660. <member name="T:Janus.Windows.ExplorerBar.ItemType">
  1661. <summary>
  1662. Specifies the type of an item in a ExplorerBar control.
  1663. </summary>
  1664. </member>
  1665. <member name="F:Janus.Windows.ExplorerBar.ItemType.LinkButton">
  1666. <summary>
  1667. Displays the item in a hyperlink style.
  1668. </summary>
  1669. </member>
  1670. <member name="F:Janus.Windows.ExplorerBar.ItemType.Description">
  1671. <summary>
  1672. Displays the item as a label.
  1673. </summary>
  1674. </member>
  1675. <member name="F:Janus.Windows.ExplorerBar.ItemType.Separator">
  1676. <summary>
  1677. A separator between items in a ExplorerBar control.
  1678. </summary>
  1679. </member>
  1680. <member name="T:Janus.Windows.ExplorerBar.Alignment">
  1681. <summary>
  1682. Specifies the alignment of a text or an image relative to its layout rectangle.
  1683. </summary>
  1684. </member>
  1685. <member name="F:Janus.Windows.ExplorerBar.Alignment.Near">
  1686. <summary>
  1687. Specifies that the text or the image is aligned in near of the layout rectangle.
  1688. </summary>
  1689. </member>
  1690. <member name="F:Janus.Windows.ExplorerBar.Alignment.Center">
  1691. <summary>
  1692. Specifies that the text or the image is aligned in the center of the layout rectangle.
  1693. </summary>
  1694. </member>
  1695. <member name="F:Janus.Windows.ExplorerBar.Alignment.Far">
  1696. <summary>
  1697. Specifies that the text or the image is aligned far from the origin position of the layout rectangle.
  1698. </summary>
  1699. </member>
  1700. <member name="T:Janus.Windows.ExplorerBar.Design.ImageEditor">
  1701. <summary>
  1702. Summary description for ImageEditor.
  1703. </summary>
  1704. </member>
  1705. <member name="M:Janus.Windows.ExplorerBar.Design.ImageEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
  1706. <summary>
  1707. This class is not intended to be used directly from your code.
  1708. </summary>
  1709. </member>
  1710. <member name="M:Janus.Windows.ExplorerBar.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
  1711. <summary>
  1712. </summary>
  1713. </member>
  1714. <member name="M:Janus.Windows.ExplorerBar.Design.ImageEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)">
  1715. <summary>
  1716. </summary>
  1717. </member>
  1718. <member name="M:Janus.Windows.ExplorerBar.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)">
  1719. <summary>
  1720. </summary>
  1721. </member>
  1722. <member name="T:Janus.Windows.ExplorerBar.ThemeHeader">
  1723. <summary>
  1724. Summary description for ThemeHeader.
  1725. </summary>
  1726. </member>
  1727. <member name="T:Janus.Windows.ExplorerBar.Global">
  1728. <summary>
  1729. Summary description for Global.
  1730. </summary>
  1731. </member>
  1732. <member name="T:Janus.Windows.ExplorerBar.ON">
  1733. <summary>
  1734. </summary>
  1735. </member>
  1736. <member name="M:Janus.Windows.ExplorerBar.ON.ToString">
  1737. <summary>
  1738. </summary>
  1739. <returns></returns>
  1740. </member>
  1741. <member name="P:Janus.Windows.ExplorerBar.ON.Object">
  1742. <summary>
  1743. </summary>
  1744. </member>
  1745. <member name="P:Janus.Windows.ExplorerBar.ON.Name">
  1746. <summary>
  1747. </summary>
  1748. </member>
  1749. <member name="T:Janus.Windows.ExplorerBar.Design.ContainerDesigner">
  1750. <summary>
  1751. Summary description for ContainerDesigner.
  1752. </summary>
  1753. </member>
  1754. <member name="M:Janus.Windows.ExplorerBar.Design.ContainerDesigner.#ctor">
  1755. <summary>
  1756. </summary>
  1757. </member>
  1758. <member name="M:Janus.Windows.ExplorerBar.Design.ContainerDesigner.Initialize(System.ComponentModel.IComponent)">
  1759. <summary>
  1760. </summary>
  1761. </member>
  1762. <member name="P:Janus.Windows.ExplorerBar.Design.ContainerDesigner.SelectionRules">
  1763. <summary>
  1764. Overrides ControlDesigner.SelectionRules
  1765. </summary>
  1766. </member>
  1767. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarItem">
  1768. <summary>
  1769. Represents an item in the ExplorerBar control.
  1770. </summary>
  1771. </member>
  1772. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItem.#ctor">
  1773. <summary>
  1774. Initializes a new instance of the ExplorerBarItem class.
  1775. </summary>
  1776. </member>
  1777. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItem.#ctor(System.String)">
  1778. <summary>
  1779. Initializes a new instance of the ExplorerBarItem class and displays the assigned text on the item.
  1780. </summary>
  1781. <param name="text">The text to display on the new ExplorerBarItem.</param>
  1782. </member>
  1783. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItem.#ctor(System.String,Janus.Windows.ExplorerBar.ItemType)">
  1784. <summary>
  1785. Initializes a new instance of the ExplorerBarItem class.
  1786. </summary>
  1787. <param name="text">The text to display on the new ExplorerBarItem.</param>
  1788. <param name="itemType">The type of the new ExplorerBarItem</param>
  1789. </member>
  1790. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItem.#ctor(System.String,System.Int32)">
  1791. <summary>
  1792. Initializes a new instance of the ExplorerBarItem class and sets the Text and ImageIndex properties to the specified values.
  1793. </summary>
  1794. <param name="text">The text of the new ExplorerBarItem.</param>
  1795. <param name="imageIndex">The index value of the image displayed by the ExplorerBarItem.</param>
  1796. </member>
  1797. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItem.InvokeOnClick">
  1798. <summary>
  1799. Raises the ItemClick event
  1800. </summary>
  1801. </member>
  1802. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItem.ResetFormatStyle">
  1803. <summary>
  1804. Resets the FormatStyle property to its default value.
  1805. </summary>
  1806. </member>
  1807. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItem.ShouldSerializeFormatStyle">
  1808. <summary>
  1809. Indicates whether the FormatStyle property should be persisted.
  1810. </summary>
  1811. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  1812. </member>
  1813. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItem.OnClick(Janus.Windows.ExplorerBar.ItemEventArgs)">
  1814. <summary>
  1815. Raises the Janus.Windows.ExplorerBar.ExplorerBarItem.Click event
  1816. </summary>
  1817. <param name="e">A ItemEventArgs that contains the event data</param>
  1818. </member>
  1819. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Key">
  1820. <summary>
  1821. Gets or sets a string that uniquely identifies this ExplorerBarItem in a collection.
  1822. </summary>
  1823. </member>
  1824. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Shortcut">
  1825. <summary>
  1826. Gets or sets a value indicating the shortcut key associated with the item.
  1827. </summary>
  1828. </member>
  1829. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Selected">
  1830. <summary>
  1831. Gets or sets a value indicating whether this ExplorerBarItem is selected.
  1832. </summary>
  1833. </member>
  1834. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Indent">
  1835. <summary>
  1836. Gets or sets the distance to indent the item.
  1837. </summary>
  1838. </member>
  1839. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Height">
  1840. <summary>
  1841. Gets or sets the height of the ExplorerBarItem in pixels.
  1842. </summary>
  1843. </member>
  1844. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Cursor">
  1845. <summary>
  1846. Gets or sets the cursor that is displayed when the mouse pointer is over the item.
  1847. </summary>
  1848. </member>
  1849. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Tag">
  1850. <summary>
  1851. Gets or sets an object that contains data to associate with the ExplorerBarItem.
  1852. </summary>
  1853. </member>
  1854. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.TagString">
  1855. <summary>
  1856. Gets or sets a string that contains data to associate with the ExplorerBarItem.
  1857. </summary>
  1858. </member>
  1859. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Icon">
  1860. <summary>
  1861. Gets or sets the icon that is displayed on the ExplorerBarItem.
  1862. </summary>
  1863. </member>
  1864. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Text">
  1865. <summary>
  1866. Gets or sets the text displayed on the ExplorerBarItem.
  1867. </summary>
  1868. </member>
  1869. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.WordWrap">
  1870. <summary>
  1871. Gets or sets a value indicating whether the item should wrap words to the beginning of the next line when necessary.
  1872. </summary>
  1873. </member>
  1874. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ToolTipText">
  1875. <summary>
  1876. Gets or sets the text that appears as a ToolTip for the ExplorerBarItem.
  1877. </summary>
  1878. </member>
  1879. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Index">
  1880. <summary>
  1881. Gets the position of the ExplorerBarItem in the ExplorerBarItemCollection.
  1882. </summary>
  1883. </member>
  1884. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Enabled">
  1885. <summary>
  1886. Gets or sets a value indicating whether the ExplorerBarItem is enabled.
  1887. </summary>
  1888. </member>
  1889. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Visible">
  1890. <summary>
  1891. Gets or sets a value indicating whether the ExplorerBarItem is visible.
  1892. </summary>
  1893. </member>
  1894. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ImageAlignment">
  1895. <summary>
  1896. Gets or sets the alignment of the image in the ExplorerBarItem.
  1897. </summary>
  1898. </member>
  1899. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.TextAlignment">
  1900. <summary>
  1901. Gets or sets the alignment of the text in the ExplorerBarItem.
  1902. </summary>
  1903. </member>
  1904. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Bounds">
  1905. <summary>
  1906. Gets or sets the size and location of the item in the ExplorerBar control.
  1907. </summary>
  1908. </member>
  1909. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ContainerControl">
  1910. <summary>
  1911. Gets or sets the ExplorerBarContainerControl associated to the item acting as container for other controls.
  1912. </summary>
  1913. </member>
  1914. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Container">
  1915. <summary>
  1916. Gets or sets a value that indicates whether the item should act as a container for other controls.
  1917. </summary>
  1918. </member>
  1919. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ContainerHeight">
  1920. <summary>
  1921. Gets or sets the height of the ExplorerBarContainerControl in pixels.
  1922. </summary>
  1923. </member>
  1924. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Image">
  1925. <summary>
  1926. Gets or sets the image that is displayed on the ExplorerBarItem.
  1927. </summary>
  1928. </member>
  1929. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ImageDisabledIndex">
  1930. <summary>
  1931. Gets or sets the index value of the image displayed by the ExplorerBarGroup when it is disabled.
  1932. </summary>
  1933. </member>
  1934. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ImageDisabledKey">
  1935. <summary>
  1936. Gets or sets the key accessor for the image in the ImageList displayed by the ExplorerBarGroup when it is disabled.
  1937. </summary>
  1938. </member>
  1939. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ImageSelectedIndex">
  1940. <summary>
  1941. Gets or sets the index value of the image displayed by the ExplorerBarItem when the item is selected.
  1942. </summary>
  1943. </member>
  1944. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ImageSelectedKey">
  1945. <summary>
  1946. Gets or sets the key accessor for the image in the ImageList displayed by the ExplorerBarItem when the item is selected.
  1947. </summary>
  1948. </member>
  1949. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ImageFocusIndex">
  1950. <summary>
  1951. Gets or sets the index value of the image displayed by the ExplorerBarItem when the mouse moves over it.
  1952. </summary>
  1953. </member>
  1954. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ImageFocusKey">
  1955. <summary>
  1956. Gets or sets the key accessor for the image in the ImageList displayed by the ExplorerBarItem when the mouse moves over it.
  1957. </summary>
  1958. </member>
  1959. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ItemType">
  1960. <summary>
  1961. Gets the type of the item represented by the ExplorerBarItem object in the ExplorerBar control.
  1962. </summary>
  1963. </member>
  1964. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ImageIndex">
  1965. <summary>
  1966. Gets or sets the index value of the image displayed by the ExplorerBarItem.
  1967. </summary>
  1968. </member>
  1969. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ImageKey">
  1970. <summary>
  1971. Gets or sets the key accessor for the image in the ImageList displayed by the ExplorerBarItem.
  1972. </summary>
  1973. </member>
  1974. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.ExplorerBar">
  1975. <summary>
  1976. Gets the ExplorerBar control that this ExplorerBarItem object is assigned to.
  1977. </summary>
  1978. </member>
  1979. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.Group">
  1980. <summary>
  1981. Gets the ExplorerBarGroup object that this ExplorerBarItem is assigned to.
  1982. </summary>
  1983. </member>
  1984. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.StateStyles">
  1985. <summary>
  1986. Gets the ExplorerBarStateStyles that holds the format styles used to draw the item in its different states.
  1987. </summary>
  1988. </member>
  1989. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItem.FormatStyle">
  1990. <summary>
  1991. Gets the ExplorerBarFormatStyle object used to draw this item in the ExplorerBar control.
  1992. </summary>
  1993. </member>
  1994. <member name="E:Janus.Windows.ExplorerBar.ExplorerBarItem.Click">
  1995. <summary>
  1996. Occurs when the ExplorerBarItem is clicked.
  1997. </summary>
  1998. </member>
  1999. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarItemConverter">
  2000. <summary>
  2001. </summary>
  2002. </member>
  2003. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemConverter.#ctor">
  2004. <summary>
  2005. </summary>
  2006. </member>
  2007. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  2008. <summary>
  2009. </summary>
  2010. <param name="context"></param>
  2011. <param name="destinationType"></param>
  2012. <returns></returns>
  2013. </member>
  2014. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  2015. <summary>
  2016. </summary>
  2017. <param name="context"></param>
  2018. <param name="culture"></param>
  2019. <param name="value"></param>
  2020. <param name="destinationType"></param>
  2021. <returns></returns>
  2022. </member>
  2023. <member name="T:Janus.Windows.ExplorerBar.Design.ImageIndexConverter">
  2024. <summary>
  2025. This class is not intended to be used directly from your code.
  2026. </summary>
  2027. </member>
  2028. <member name="M:Janus.Windows.ExplorerBar.Design.ImageIndexConverter.#ctor">
  2029. <summary>
  2030. Initialize a new instance of the ImageKeyConverter.
  2031. </summary>
  2032. </member>
  2033. <member name="M:Janus.Windows.ExplorerBar.Design.ImageIndexConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  2034. <summary>
  2035. Overrides TypeConverter.CanConvertTo
  2036. </summary>
  2037. </member>
  2038. <member name="M:Janus.Windows.ExplorerBar.Design.ImageIndexConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  2039. <summary>
  2040. Overrides TypeConverter.ConvertTo
  2041. </summary>
  2042. </member>
  2043. <member name="T:Janus.Windows.ExplorerBar.Design.ImageKeyConverter">
  2044. <summary>
  2045. This class is not intended to be used directly from your code.
  2046. </summary>
  2047. </member>
  2048. <member name="M:Janus.Windows.ExplorerBar.Design.ImageKeyConverter.#ctor">
  2049. <summary>
  2050. Initialize a new instance of the ImageKeyConverter.
  2051. </summary>
  2052. </member>
  2053. <member name="M:Janus.Windows.ExplorerBar.Design.ImageKeyConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  2054. <summary>
  2055. Overrides TypeConverter.CanConvertTo
  2056. </summary>
  2057. </member>
  2058. <member name="M:Janus.Windows.ExplorerBar.Design.ImageKeyConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  2059. <summary>
  2060. Overrides TypeConverter.ConvertTo
  2061. </summary>
  2062. </member>
  2063. <member name="T:Janus.Windows.ExplorerBar.Design.ImageIndexEditor">
  2064. <summary>
  2065. Provides a user interface for selecting images from an ImageList.
  2066. </summary>
  2067. </member>
  2068. <member name="M:Janus.Windows.ExplorerBar.Design.ImageIndexEditor.#ctor">
  2069. <summary>
  2070. Initialize a new instance of the ImageIndexEditor.
  2071. </summary>
  2072. </member>
  2073. <member name="M:Janus.Windows.ExplorerBar.Design.ImageIndexEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
  2074. <summary>
  2075. Overrides UITypeEditor.EditValue
  2076. </summary>
  2077. </member>
  2078. <member name="M:Janus.Windows.ExplorerBar.Design.ImageIndexEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
  2079. <summary>
  2080. Overrides UITypeEditor.GetEditStyle
  2081. </summary>
  2082. </member>
  2083. <member name="M:Janus.Windows.ExplorerBar.Design.ImageIndexEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)">
  2084. <summary>
  2085. Overrides UITypeEditor.GetPaintValueSupported
  2086. </summary>
  2087. </member>
  2088. <member name="M:Janus.Windows.ExplorerBar.Design.ImageIndexEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)">
  2089. <summary>
  2090. Overrides UITypeEditor.PaintValue
  2091. </summary>
  2092. </member>
  2093. <member name="T:Janus.Windows.ExplorerBar.Design.ImageKeyEditor">
  2094. <summary>
  2095. Provides a user interface for selecting images from an ImageList.
  2096. </summary>
  2097. </member>
  2098. <member name="M:Janus.Windows.ExplorerBar.Design.ImageKeyEditor.#ctor">
  2099. <summary>
  2100. Initialize a new instance of the ImageKeyEditor.
  2101. </summary>
  2102. </member>
  2103. <member name="M:Janus.Windows.ExplorerBar.Design.ImageKeyEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
  2104. <summary>
  2105. Overrides UITypeEditor.EditValue
  2106. </summary>
  2107. </member>
  2108. <member name="M:Janus.Windows.ExplorerBar.Design.ImageKeyEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
  2109. <summary>
  2110. Overrides UITypeEditor.GetEditStyle
  2111. </summary>
  2112. </member>
  2113. <member name="M:Janus.Windows.ExplorerBar.Design.ImageKeyEditor.GetPaintValueSupported(System.ComponentModel.ITypeDescriptorContext)">
  2114. <summary>
  2115. Overrides UITypeEditor.GetPaintValueSupported
  2116. </summary>
  2117. </member>
  2118. <member name="M:Janus.Windows.ExplorerBar.Design.ImageKeyEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)">
  2119. <summary>
  2120. Overrides UITypeEditor.PaintValue
  2121. </summary>
  2122. </member>
  2123. <member name="T:Janus.Windows.ExplorerBar.Design.GroupsDesigner">
  2124. <summary>
  2125. Summary description for GroupsDesigner.
  2126. </summary>
  2127. </member>
  2128. <member name="M:Janus.Windows.ExplorerBar.Design.GroupsDesigner.#ctor">
  2129. <summary>
  2130. </summary>
  2131. </member>
  2132. <member name="M:Janus.Windows.ExplorerBar.Design.GroupsDesigner.Dispose(System.Boolean)">
  2133. <summary>
  2134. Clean up any resources being used.
  2135. </summary>
  2136. </member>
  2137. <member name="M:Janus.Windows.ExplorerBar.Design.GroupsDesigner.InitializeComponent">
  2138. <summary>
  2139. Required method for Designer support - do not modify
  2140. the contents of this method with the code editor.
  2141. </summary>
  2142. </member>
  2143. <member name="M:Janus.Windows.ExplorerBar.Design.GroupsDesigner.OnPaint(System.Windows.Forms.PaintEventArgs)">
  2144. <summary>
  2145. </summary>
  2146. <param name="e"></param>
  2147. </member>
  2148. <member name="P:Janus.Windows.ExplorerBar.Design.GroupsDesigner.ExplorerBar">
  2149. <summary>
  2150. </summary>
  2151. </member>
  2152. <member name="T:Janus.Windows.ExplorerBar.Design.GroupEditor">
  2153. <summary>
  2154. Summary description for ExplorerBarDesign.
  2155. </summary>
  2156. </member>
  2157. <member name="M:Janus.Windows.ExplorerBar.Design.GroupEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
  2158. <summary>
  2159. Overrides UITypeEditor.EditValue
  2160. </summary>
  2161. </member>
  2162. <member name="M:Janus.Windows.ExplorerBar.Design.GroupEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
  2163. <summary>
  2164. </summary>
  2165. <param name="context"></param>
  2166. <returns></returns>
  2167. </member>
  2168. <member name="T:Janus.Windows.ExplorerBar.Design.LayoutTreePage">
  2169. <summary>
  2170. Summary description for LayoutTreePage.
  2171. </summary>
  2172. </member>
  2173. <member name="M:Janus.Windows.ExplorerBar.Design.LayoutTreePage.Dispose(System.Boolean)">
  2174. <summary>
  2175. Clean up any resources being used.
  2176. </summary>
  2177. </member>
  2178. <member name="M:Janus.Windows.ExplorerBar.Design.LayoutTreePage.InitializeComponent">
  2179. <summary>
  2180. Required method for Designer support - do not modify
  2181. the contents of this method with the code editor.
  2182. </summary>
  2183. </member>
  2184. <member name="T:Janus.Windows.ExplorerBar.Design.LayoutNameDialog">
  2185. <summary>
  2186. Summary description for LayoutNameDialog.
  2187. </summary>
  2188. </member>
  2189. <member name="T:Janus.Windows.ExplorerBar.Design.AboutBox">
  2190. <summary>
  2191. Summary description for Form1.
  2192. </summary>
  2193. </member>
  2194. <member name="F:Janus.Windows.ExplorerBar.Design.AboutBox.components">
  2195. <summary>
  2196. Required designer variable.
  2197. </summary>
  2198. </member>
  2199. <member name="M:Janus.Windows.ExplorerBar.Design.AboutBox.Dispose(System.Boolean)">
  2200. <summary>
  2201. Clean up any resources being used.
  2202. </summary>
  2203. </member>
  2204. <member name="M:Janus.Windows.ExplorerBar.Design.AboutBox.InitializeComponent">
  2205. <summary>
  2206. Required method for Designer support - do not modify
  2207. the contents of this method with the code editor.
  2208. </summary>
  2209. </member>
  2210. <member name="M:Janus.Windows.ExplorerBar.Design.AboutBox.Main">
  2211. <summary>
  2212. The main entry point for the application.
  2213. </summary>
  2214. </member>
  2215. <member name="M:Janus.Windows.ExplorerBar.Design.AboutBox.OnLoad(System.EventArgs)">
  2216. <summary>
  2217. Overrides Form.OnLoad
  2218. </summary>
  2219. </member>
  2220. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage">
  2221. <summary>
  2222. Summary description for ExplorerWatermarkImage.
  2223. </summary>
  2224. </member>
  2225. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.ShouldSerialize">
  2226. <summary>
  2227. Indicates whether the ExplorerBarWatermarkImage object has changed from its default value.
  2228. </summary>
  2229. <returns>true if the one of the properties of the ScheduleWatermarkImage has changed from its default; otherwise, false.</returns>
  2230. </member>
  2231. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.Reset">
  2232. <summary>
  2233. Resets all the properties of the TimeLineWatermarkImage object to its default value.
  2234. </summary>
  2235. </member>
  2236. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.ShouldSerializeSize">
  2237. <summary>
  2238. Indicates whether the Size property should be persisted.
  2239. </summary>
  2240. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  2241. </member>
  2242. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.ResetSize">
  2243. <summary>
  2244. Resets the Size property to its default value.
  2245. </summary>
  2246. </member>
  2247. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.ShouldSerializeWashColor">
  2248. <summary>
  2249. Indicates whether the WashColor property should be persisted.
  2250. </summary>
  2251. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  2252. </member>
  2253. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.ResetWashColor">
  2254. <summary>
  2255. Resets the WashColor property to its default value.
  2256. </summary>
  2257. </member>
  2258. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.ShouldSerializeMaskColor">
  2259. <summary>
  2260. Indicates whether the MaskColor property should be persisted.
  2261. </summary>
  2262. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  2263. </member>
  2264. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.ResetMaskColor">
  2265. <summary>
  2266. Resets the MaskColor property to its default value.
  2267. </summary>
  2268. </member>
  2269. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.Image">
  2270. <summary>
  2271. Gets or sets the System.Drawing.Image object to use as watermark.
  2272. </summary>
  2273. </member>
  2274. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.Size">
  2275. <summary>
  2276. Gets or sets the size of the image. If empty, the size of the image will be used.
  2277. </summary>
  2278. </member>
  2279. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.ImageAlign">
  2280. <summary>
  2281. Gets or sets the alignment of the image on the control.
  2282. </summary>
  2283. </member>
  2284. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.WashMode">
  2285. <summary>
  2286. Gets or sets a value that determines which color to use to wash the image;
  2287. </summary>
  2288. </member>
  2289. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.Alpha">
  2290. <summary>
  2291. Gets or sets the alpha component that is applied when drawing the image.
  2292. </summary>
  2293. </member>
  2294. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.WashColor">
  2295. <summary>
  2296. Gets or sets the color to apply to the image when WashMode is UseWashColor
  2297. </summary>
  2298. </member>
  2299. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarWatermarkImage.MaskColor">
  2300. <summary>
  2301. Gets or sets the color to treat as transparent.
  2302. </summary>
  2303. </member>
  2304. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarItemCollection">
  2305. <summary>
  2306. Represents a collection of ExplorerBarItem objects.
  2307. </summary>
  2308. </member>
  2309. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.OnClear">
  2310. <summary>
  2311. Performs additional custom processes when clearing the contents of the ExplorerBarItemCollection class.
  2312. </summary>
  2313. </member>
  2314. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.OnClearComplete">
  2315. <summary>
  2316. Performs additional custom processes after clearing the contents of the ExplorerBarItemCollection class.
  2317. </summary>
  2318. </member>
  2319. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.Contains(Janus.Windows.ExplorerBar.ExplorerBarItem)">
  2320. <summary>
  2321. Determines if the specified ExplorerBarItem object is a member of the collection.
  2322. </summary>
  2323. <param name="item">The ExplorerBarItem object to locate in the collection.</param>
  2324. <returns>true if the item is found in the ExplorerBarItemCollection; otherwise, false.</returns>
  2325. </member>
  2326. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.Insert(System.Int32,Janus.Windows.ExplorerBar.ExplorerBarItem)">
  2327. <summary>
  2328. Inserts a new ExplorerBarItem object in the ExplorerBarItemCollection at the specified location.
  2329. </summary>
  2330. <param name="index">The indexed location within the collection to insert the ExplorerBarItem object.</param>
  2331. <param name="item">The ExplorerBarItem object to insert.</param>
  2332. </member>
  2333. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.Remove(Janus.Windows.ExplorerBar.ExplorerBarItem)">
  2334. <summary>
  2335. Removes a given ExplorerBarItem from the collection.
  2336. </summary>
  2337. <param name="item">The ExplorerBarItem object to remove from the collection.</param>
  2338. </member>
  2339. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.RemoveAt(System.Int32)">
  2340. <summary>
  2341. Removes the ExplorerBarItem at the specified index of the collection.
  2342. </summary>
  2343. <param name="index">The indexed location of the ExplorerBarItem object in the collection.</param>
  2344. </member>
  2345. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.Clear">
  2346. <summary>
  2347. Overrides CollectionBase.Clear
  2348. </summary>
  2349. </member>
  2350. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.Add(Janus.Windows.ExplorerBar.ExplorerBarItem)">
  2351. <summary>
  2352. Adds the ExplorerBarItem object to the end of the ExplorerBarItemCollection.
  2353. </summary>
  2354. <param name="item">The ExplorerBarItem to be added after all existing items.</param>
  2355. </member>
  2356. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.AddRange(Janus.Windows.ExplorerBar.ExplorerBarItem[])">
  2357. <summary>
  2358. Adds an array of ExplorerBarItem objects to the collection.
  2359. </summary>
  2360. <param name="items">An array of ExplorerBarItem objects to add to the collection.</param>
  2361. </member>
  2362. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.Add(System.String)">
  2363. <summary>
  2364. Creates a new ExplorerBarItem using the specified value and adds it to the end of the ExplorerBarItemCollection.
  2365. </summary>
  2366. <param name="text">The text of the new ExplorerBarItem.</param>
  2367. </member>
  2368. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.Add(System.String,System.Int32)">
  2369. <summary>
  2370. Creates a new ExplorerBarItem using the specified value and adds it to the end of the ExplorerBarItemCollection.
  2371. </summary>
  2372. <param name="text">The text of the new ExplorerBarItem.</param>
  2373. <param name="imageIndex">The index for the ImageIndex property of the new ExplorerBarItem.</param>
  2374. </member>
  2375. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.Add(System.String,Janus.Windows.ExplorerBar.ItemType)">
  2376. <summary>
  2377. Creates a new ExplorerBarItem using the specified value and adds it to the end of the ExplorerBarItemCollection.
  2378. </summary>
  2379. <param name="text">The text of the new ExplorerBarItem. </param>
  2380. <param name="itemType">The type of the new ExplorerBarItem.</param>
  2381. </member>
  2382. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.Item(System.Int32)">
  2383. <summary>
  2384. Gets the ExplorerBarItem object at the specified indexed location in the ExplorerBarItemCollection.
  2385. </summary>
  2386. <param name="index">The indexed location of the ExplorerBarItem in the collection.</param>
  2387. </member>
  2388. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarItemCollection.Item(System.String)">
  2389. <summary>
  2390. Gets the ExplorerBarItem object with the specified key in the ExplorerBarItemCollection.
  2391. </summary>
  2392. <param name="key">The key of the ExplorerBarItem in the collection.</param>
  2393. </member>
  2394. <member name="T:Janus.Windows.ExplorerBar.FlagsEnumConverter">
  2395. <summary>
  2396. Provides a type converter to convert enums to a string representation.
  2397. </summary>
  2398. </member>
  2399. <member name="M:Janus.Windows.ExplorerBar.FlagsEnumConverter.#ctor">
  2400. <summary>
  2401. Initialize a new instance of the FlagsEnumConverter class
  2402. </summary>
  2403. </member>
  2404. <member name="M:Janus.Windows.ExplorerBar.FlagsEnumConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  2405. <summary>
  2406. Overrides TypeConverter.CanConvertTo
  2407. </summary>
  2408. </member>
  2409. <member name="M:Janus.Windows.ExplorerBar.FlagsEnumConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  2410. <summary>
  2411. Overrides TypeConverter.ConvertTo
  2412. </summary>
  2413. </member>
  2414. <member name="T:Janus.Windows.ExplorerBar.FlagsEnumEditor">
  2415. <summary>
  2416. Provides a user interface for selecting flags in a Properties window.
  2417. </summary>
  2418. </member>
  2419. <member name="M:Janus.Windows.ExplorerBar.FlagsEnumEditor.#ctor">
  2420. <summary>
  2421. Initialize a new instance of the FlagsEnumEditor class
  2422. </summary>
  2423. </member>
  2424. <member name="M:Janus.Windows.ExplorerBar.FlagsEnumEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
  2425. <summary>
  2426. Overrides UITypeEditor.EditValue
  2427. </summary>
  2428. </member>
  2429. <member name="M:Janus.Windows.ExplorerBar.FlagsEnumEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
  2430. <summary>
  2431. Overrides UITypeEditor.GetEditStyle
  2432. </summary>
  2433. </member>
  2434. <member name="T:Janus.Windows.ExplorerBar.ControlStyle">
  2435. <summary>
  2436. Represent the style of the scroll bar control in the ExplorerBar control.
  2437. </summary>
  2438. </member>
  2439. <member name="M:Janus.Windows.ExplorerBar.ControlStyle.Reset">
  2440. <summary>
  2441. Resets the all the properties of the ControlStyle object to its default value.
  2442. </summary>
  2443. </member>
  2444. <member name="M:Janus.Windows.ExplorerBar.ControlStyle.ResetControlColor">
  2445. <summary>
  2446. Resets the ControlColor property to its default value.
  2447. </summary>
  2448. </member>
  2449. <member name="M:Janus.Windows.ExplorerBar.ControlStyle.ShouldSerializeControlColor">
  2450. <summary>
  2451. Indicates whether the ControlColor property has changed from its default value.
  2452. </summary>
  2453. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  2454. </member>
  2455. <member name="M:Janus.Windows.ExplorerBar.ControlStyle.ResetControlTextColor">
  2456. <summary>
  2457. Resets the ControlTextColor property to its default value.
  2458. </summary>
  2459. </member>
  2460. <member name="M:Janus.Windows.ExplorerBar.ControlStyle.ShouldSerializeControlTextColor">
  2461. <summary>
  2462. Indicates whether the ControlTextColor property has changed from its default value.
  2463. </summary>
  2464. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  2465. </member>
  2466. <member name="M:Janus.Windows.ExplorerBar.ControlStyle.ResetScrollBarColor">
  2467. <summary>
  2468. Resets the ScrollBarColor property to its default value.
  2469. </summary>
  2470. </member>
  2471. <member name="M:Janus.Windows.ExplorerBar.ControlStyle.ShouldSerializeScrollBarColor">
  2472. <summary>
  2473. Indicates whether the ScrollBarColor property has changed from its default value.
  2474. </summary>
  2475. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  2476. </member>
  2477. <member name="M:Janus.Windows.ExplorerBar.ControlStyle.ResetHoverBaseColor">
  2478. <summary>
  2479. Resets the HoverBaseColor property to its default value.
  2480. </summary>
  2481. </member>
  2482. <member name="M:Janus.Windows.ExplorerBar.ControlStyle.ShouldSerializeHoverBaseColor">
  2483. <summary>
  2484. Indicates whether the HoverBaseColor property has changed from its default value.
  2485. </summary>
  2486. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  2487. </member>
  2488. <member name="M:Janus.Windows.ExplorerBar.ControlStyle.ResetHoverBlendColor">
  2489. <summary>
  2490. Resets the HoverBlendColor property to its default value.
  2491. </summary>
  2492. </member>
  2493. <member name="M:Janus.Windows.ExplorerBar.ControlStyle.ShouldSerializeHoverBlendColor">
  2494. <summary>
  2495. Indicates whether the HoverBlendColor property has changed from its default value.
  2496. </summary>
  2497. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  2498. </member>
  2499. <member name="P:Janus.Windows.ExplorerBar.ControlStyle.ButtonAppearance">
  2500. <summary>
  2501. Gets or sets a value that determines the appearance of the buttons of the scroll bar.
  2502. </summary>
  2503. </member>
  2504. <member name="P:Janus.Windows.ExplorerBar.ControlStyle.ControlColor">
  2505. <summary>
  2506. Gets or sets a value specifying the background color of the buttons of the scroll bar.
  2507. </summary>
  2508. </member>
  2509. <member name="P:Janus.Windows.ExplorerBar.ControlStyle.ControlTextColor">
  2510. <summary>
  2511. Gets or sets a value specifying the foreground color of the buttons of the scroll bar.
  2512. </summary>
  2513. </member>
  2514. <member name="P:Janus.Windows.ExplorerBar.ControlStyle.ScrollBarColor">
  2515. <summary>
  2516. Gets or sets a value that represent the background color of the scroll bar.
  2517. </summary>
  2518. </member>
  2519. <member name="P:Janus.Windows.ExplorerBar.ControlStyle.HoverBaseColor">
  2520. <summary>
  2521. Gets or sets the color that will be blended with the HoverBlendColor when a flat apperance is used.
  2522. </summary>
  2523. </member>
  2524. <member name="P:Janus.Windows.ExplorerBar.ControlStyle.HoverBlendColor">
  2525. <summary>
  2526. Gets or sets the color that will be blended with the HoverBaseColor when a flat appearance is used.
  2527. </summary>
  2528. </member>
  2529. <member name="P:Janus.Windows.ExplorerBar.ControlStyle.HoverBlend">
  2530. <summary>
  2531. Gets or sets a value indicating the percentage of the HoverBlendColor to blend whit the HoverBaseColor.
  2532. </summary>
  2533. </member>
  2534. <member name="P:Janus.Windows.ExplorerBar.ControlStyle.HoverSelectedBlend">
  2535. <summary>
  2536. Gets or sets the percentage of the HoverBlendColor to blend with the HoverBaseColor when the mouse is captured by the button.
  2537. </summary>
  2538. </member>
  2539. <member name="T:Janus.Windows.ExplorerBar.Design.ColorSchemeEditor">
  2540. <summary>
  2541. Provides a user interface for selecting controls objects in a Properties window.
  2542. </summary>
  2543. </member>
  2544. <member name="M:Janus.Windows.ExplorerBar.Design.ColorSchemeEditor.#ctor">
  2545. <summary>
  2546. Initializes a new instance of the ColorSchemeEditor class.
  2547. </summary>
  2548. </member>
  2549. <member name="M:Janus.Windows.ExplorerBar.Design.ColorSchemeEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
  2550. <summary>
  2551. Overrides UITypeEditor.EditValue.
  2552. </summary>
  2553. </member>
  2554. <member name="M:Janus.Windows.ExplorerBar.Design.ColorSchemeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
  2555. <summary>
  2556. Overrides UITypeEditor.GetEditStyle
  2557. </summary>
  2558. <param name="context"></param>
  2559. <returns></returns>
  2560. </member>
  2561. <member name="T:Janus.Windows.ExplorerBar.Design.ColorSchemeConverter">
  2562. <summary>
  2563. Provides a type converter to convert a ColorScheme property to a string
  2564. </summary>
  2565. </member>
  2566. <member name="M:Janus.Windows.ExplorerBar.Design.ColorSchemeConverter.#ctor">
  2567. <summary>
  2568. Initialize a new instance of the ColorSchemeConverter.
  2569. </summary>
  2570. </member>
  2571. <member name="M:Janus.Windows.ExplorerBar.Design.ColorSchemeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  2572. <summary>
  2573. Overrides TypeConverter.CanConvertTo.
  2574. </summary>
  2575. </member>
  2576. <member name="M:Janus.Windows.ExplorerBar.Design.ColorSchemeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  2577. <summary>
  2578. Overrides TypeConverter.ConvertTo.
  2579. </summary>
  2580. </member>
  2581. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarStateStyles">
  2582. <summary>
  2583. Encapsulates the ExplorerBarFormatStyle for the different states of an item.
  2584. </summary>
  2585. </member>
  2586. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarStateStyles.#ctor">
  2587. <summary>
  2588. Initialize a new instance of the ExplorerBarStateStyles class.
  2589. </summary>
  2590. </member>
  2591. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarStateStyles.ShouldSerialize">
  2592. <summary>
  2593. Indicates whether the ExplorerBarFormatStateStyle class should be persisted.
  2594. </summary>
  2595. <returns>true if the class has changed from its default; otherwise, false.</returns>
  2596. </member>
  2597. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarStateStyles.Reset">
  2598. <summary>
  2599. Resets all the property values in the object to their default values.
  2600. </summary>
  2601. </member>
  2602. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarStateStyles.FormatStyle">
  2603. <summary>
  2604. Gets the ExplorerBarFormatStyle used to draw the items.
  2605. </summary>
  2606. </member>
  2607. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarStateStyles.HotFormatStyle">
  2608. <summary>
  2609. Gets the ExplorerBarFormatStyle used to draw the items when the mouse is over them.
  2610. </summary>
  2611. </member>
  2612. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarStateStyles.DisabledFormatStyle">
  2613. <summary>
  2614. Gets the ExplorerBarFormatStyle used to draw the disabled items.
  2615. </summary>
  2616. </member>
  2617. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarStateStyles.SelectedFormatStyle">
  2618. <summary>
  2619. Returns the ExplorerBarFormatStyle object used to draw the selected items.
  2620. </summary>
  2621. </member>
  2622. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarStateStyles.PressedFormatStyle">
  2623. <summary>
  2624. Gets the ExplorerBarFormatStyle used to draw the items when they are pressed or when the item is selected and the mouse is over them.
  2625. </summary>
  2626. </member>
  2627. <member name="T:Janus.Windows.ExplorerBar.ScrollBar">
  2628. <summary>
  2629. Summary description for ScrollBarBase.
  2630. </summary>
  2631. </member>
  2632. <member name="M:Janus.Windows.ExplorerBar.ScrollBar.Dispose(System.Boolean)">
  2633. <summary>
  2634. Clean up any resources being used.
  2635. </summary>
  2636. </member>
  2637. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarLicenseProvider">
  2638. <summary>
  2639. ExplorerBarLicenseProvider class.
  2640. </summary>
  2641. </member>
  2642. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLicenseProvider.#ctor">
  2643. <summary>
  2644. Initializes a new instance of the Janus.Windows.ExplorerBar.ExplorerBarLicenseProvider class
  2645. </summary>
  2646. </member>
  2647. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLicenseProvider.GetLicense(System.ComponentModel.LicenseContext,System.Type,System.Object,System.Boolean)">
  2648. <summary>
  2649. See LicenseProvider.GetLicense
  2650. </summary>
  2651. <param name="context"></param>
  2652. <param name="type"></param>
  2653. <param name="instance"></param>
  2654. <param name="allowExceptions"></param>
  2655. <returns></returns>
  2656. </member>
  2657. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection">
  2658. <summary>
  2659. Summary description for ExplorerBarLayoutCollection.
  2660. </summary>
  2661. </member>
  2662. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.Add(Janus.Windows.ExplorerBar.ExplorerBarLayout)">
  2663. <summary>
  2664. Appends the specified ExplorerBarLayout object at the end of the collection.
  2665. </summary>
  2666. <param name="layout">The ExplorerBarLayout object to add.</param>
  2667. </member>
  2668. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.AddRange(Janus.Windows.ExplorerBar.ExplorerBarLayout[])">
  2669. <summary>
  2670. Copies the elements of the specified ExplorerBarLayout array to the end of the collection.
  2671. </summary>
  2672. <param name="layouts">The array of ExplorerBarLayout objects to add to the collection.</param>
  2673. </member>
  2674. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.OnInsert(System.Int32,System.Object)">
  2675. <summary>
  2676. Overrides CollectionBase.OnInsert
  2677. </summary>
  2678. </member>
  2679. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.OnInsertComplete(System.Int32,System.Object)">
  2680. <summary>
  2681. Overrides CollectionBase.OnInsertComplete
  2682. </summary>
  2683. </member>
  2684. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.Remove(Janus.Windows.ExplorerBar.ExplorerBarLayout)">
  2685. <summary>
  2686. Removes the specified ExplorerBarLayout object from the collection.
  2687. </summary>
  2688. <param name="layout">The ExplorerBarLayout object to remove.</param>
  2689. </member>
  2690. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.OnRemoveComplete(System.Int32,System.Object)">
  2691. <summary>
  2692. Overrides CollectionBase.OnRemoveComplete
  2693. </summary>
  2694. </member>
  2695. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.OnClear">
  2696. <summary>
  2697. Overrides CollectionBase.OnClear
  2698. </summary>
  2699. </member>
  2700. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.IndexOf(Janus.Windows.ExplorerBar.ExplorerBarLayout)">
  2701. <summary>
  2702. Retrieves the index of the specified ExplorerBarLayout in the collection.
  2703. </summary>
  2704. <param name="layout">The ExplorerBarLayout to locate in the collection.</param>
  2705. <returns>A zero-based index value that represents the position of the specified ExplorerBarLayout in the collection.</returns>
  2706. </member>
  2707. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.Contains(Janus.Windows.ExplorerBar.ExplorerBarLayout)">
  2708. <summary>
  2709. Determines whether a ExplorerBarLayout is in the collection.
  2710. </summary>
  2711. <param name="layout">The ExplorerBarLayout to locate in the collection.</param>
  2712. <returns>true if item is found in the collection; otherwise, false.</returns>
  2713. </member>
  2714. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.Contains(System.String)">
  2715. <summary>
  2716. Determines whether a ExplorerBarLayout with the specified key is in the collection.
  2717. </summary>
  2718. <param name="layoutKey">The Key of the ExplorerBarLayout to locate in the collection.</param>
  2719. <returns>true if item is found in the collection; otherwise, false.</returns>
  2720. </member>
  2721. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.Item(System.Int32)">
  2722. <summary>
  2723. Gets a ExplorerBarLayout object from the collection at the specified index.
  2724. </summary>
  2725. </member>
  2726. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarLayoutCollection.Item(System.String)">
  2727. <summary>
  2728. Gets a ExplorerBarLayout object from the collection with the specified key.
  2729. </summary>
  2730. </member>
  2731. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarLayout">
  2732. <summary>
  2733. Contains persisted properties of a ExplorerBar control.
  2734. </summary>
  2735. </member>
  2736. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.FromStream(System.IO.Stream)">
  2737. <summary>
  2738. Creates an ExplorerBarLayout object from the specified data stream.
  2739. </summary>
  2740. <param name="stream">A Stream object that contains the data for this ExplorerBarLayout object.</param>
  2741. <returns>The ExplorerBarLayout object created.</returns>
  2742. </member>
  2743. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.FromXMLString(System.String)">
  2744. <summary>
  2745. Creates an ExplorerBarLayout object from the specified string.
  2746. </summary>
  2747. <param name="xmlString">A string that contains the data for this ExplorerBarLayout object.</param>
  2748. <returns>The ExplorerBarLayout object created.</returns>
  2749. </member>
  2750. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.FromXMLReader(System.Xml.XmlReader)">
  2751. <summary>
  2752. Creates an ExplorerBarLayout object from the specified Xml reader.
  2753. </summary>
  2754. <param name="xmlReader">An XmlReader object that contains the data for this ExplorerBarLayout object.</param>
  2755. <returns>The ExplorerBarLayout object created.</returns>
  2756. </member>
  2757. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.#ctor">
  2758. <summary>
  2759. Initializes a new instance of tho ExplorerBarLayout class.
  2760. </summary>
  2761. </member>
  2762. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.Update">
  2763. <summary>
  2764. Updates the layout with the changes in the ExplorerBar properties when it is the current layout.
  2765. </summary>
  2766. </member>
  2767. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.Save(System.IO.Stream)">
  2768. <summary>
  2769. Saves this ExplorerBarLayout object to the specified Stream object.
  2770. </summary>
  2771. <param name="stream">The Stream object to which to save this ExplorerBarLayout object.</param>
  2772. </member>
  2773. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.Save(System.Xml.XmlWriter)">
  2774. <summary>
  2775. Saves this ExplorerBarLayout object to the specified XmlWriter object.
  2776. </summary>
  2777. <param name="xmlWriter">The XmlWriter object to which to save this ExplorerBarLayout object.</param>
  2778. </member>
  2779. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.GetXmlString">
  2780. <summary>
  2781. Saves this ExplorerBarLayout object as an Xml string.
  2782. </summary>
  2783. <returns>A Xml string containing the ExplorerBarLayout object persisted properties.</returns>
  2784. </member>
  2785. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.Clone">
  2786. <summary>
  2787. Creates a new object that is a copy of the current instance.
  2788. </summary>
  2789. <returns>A ExplorerBarLayout that is the copy of the current instance.</returns>
  2790. </member>
  2791. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.CloneLayout(System.Boolean)">
  2792. <summary>
  2793. Creates a new object that is a copy of the current instance.
  2794. </summary>
  2795. <param name="includeChildren">A Boolean that specifies whether the ChildLayouts are copied or not.</param>
  2796. <returns>A ExplorerBarLayout that is the copy of the current instance.</returns>
  2797. </member>
  2798. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.IsDirty">
  2799. <summary>
  2800. Indicates whether the properties in the ExplorerBar control differ from the persisted information.
  2801. </summary>
  2802. <returns></returns>
  2803. </member>
  2804. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayout.ConvertToStandAlone">
  2805. <summary>
  2806. Creates a new ExplorerBarLayout that can be used as a stand alone layout.
  2807. </summary>
  2808. <returns>A ExplorerBarLayout that can be used a stand alone layout</returns>
  2809. </member>
  2810. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarLayout.ParentLayout">
  2811. <summary>
  2812. Gets the parent ExplorerBarLayout instance.
  2813. </summary>
  2814. </member>
  2815. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarLayout.Key">
  2816. <summary>
  2817. Gets or sets the key used to identify an object in a collection.
  2818. </summary>
  2819. </member>
  2820. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarLayout.Tag">
  2821. <summary>
  2822. Gets or sets an object that contains data to associate with the field.
  2823. </summary>
  2824. </member>
  2825. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarLayout.LayoutString">
  2826. <summary>
  2827. Gets or sets an Xml string containing the persisted properties in a ExplorerBar control.
  2828. </summary>
  2829. </member>
  2830. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarLayout.IsCurrentLayout">
  2831. <summary>
  2832. Gets or sets a value indicating whether this instance is the current layout in the ExplorerBar control.
  2833. </summary>
  2834. </member>
  2835. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarLayout.Description">
  2836. <summary>
  2837. Gets or sets a string that can be used to store an informational description in the layout.
  2838. </summary>
  2839. </member>
  2840. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarLayout.ChildLayouts">
  2841. <summary>
  2842. Gets the collection of ExplorerBarLayout objects that inherit their values from the layout.
  2843. </summary>
  2844. </member>
  2845. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarLayout.StandAlone">
  2846. <summary>
  2847. Gets a value that determines whether the layout is a stand alone layout or if it is a child of another layout.
  2848. </summary>
  2849. </member>
  2850. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarLayout.LayoutReferences">
  2851. <summary>
  2852. Design Time support property.
  2853. </summary>
  2854. </member>
  2855. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarLayoutConverter">
  2856. <summary>
  2857. ExplorerBarLayoutConverter class.
  2858. </summary>
  2859. </member>
  2860. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutConverter.#ctor">
  2861. <summary>
  2862. Initializes a new instance of the ExplorerBarLayoutConverter class.
  2863. </summary>
  2864. </member>
  2865. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  2866. <summary>
  2867. Overrides TypeConverter.CanConvertTo
  2868. </summary>
  2869. </member>
  2870. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarLayoutConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  2871. <summary>
  2872. Overrides TypeConverter.ConvertTo
  2873. </summary>
  2874. </member>
  2875. <member name="T:Janus.Windows.ExplorerBar.Design.ExplorerBarDesigner">
  2876. <summary>
  2877. </summary>
  2878. </member>
  2879. <member name="M:Janus.Windows.ExplorerBar.Design.ExplorerBarDesigner.#ctor">
  2880. <summary>
  2881. </summary>
  2882. </member>
  2883. <member name="M:Janus.Windows.ExplorerBar.Design.ExplorerBarDesigner.Initialize(System.ComponentModel.IComponent)">
  2884. <summary>
  2885. </summary>
  2886. <param name="component"></param>
  2887. </member>
  2888. <member name="M:Janus.Windows.ExplorerBar.Design.ExplorerBarDesigner.CanParent(System.Windows.Forms.Control)">
  2889. <summary>
  2890. </summary>
  2891. <param name="control"></param>
  2892. <returns></returns>
  2893. </member>
  2894. <member name="M:Janus.Windows.ExplorerBar.Design.ExplorerBarDesigner.WndProc(System.Windows.Forms.Message@)">
  2895. <summary>
  2896. </summary>
  2897. </member>
  2898. <member name="P:Janus.Windows.ExplorerBar.Design.ExplorerBarDesigner.Verbs">
  2899. <summary>
  2900. </summary>
  2901. </member>
  2902. <member name="P:Janus.Windows.ExplorerBar.ResourceFile2.ResourceManager">
  2903. <summary>
  2904. Returns the cached ResourceManager instance used by this class.
  2905. </summary>
  2906. </member>
  2907. <member name="P:Janus.Windows.ExplorerBar.ResourceFile2.Culture">
  2908. <summary>
  2909. Overrides the current thread's CurrentUICulture property for all
  2910. resource lookups using this strongly typed resource class.
  2911. </summary>
  2912. </member>
  2913. <member name="T:Janus.Windows.ExplorerBar.Design.ExplorerBarLayoutSerializer">
  2914. <summary>
  2915. Class used to serialize the ExplorerBarLayout
  2916. </summary>
  2917. </member>
  2918. <member name="P:Janus.Windows.ExplorerBar.Design.ExplorerBarLayoutSerializer.LayoutType">
  2919. <summary>
  2920. Returns the type of the layout file
  2921. </summary>
  2922. </member>
  2923. <member name="T:Janus.Windows.ExplorerBar.BorderControl">
  2924. <summary>
  2925. Summary description for BorderControl.
  2926. </summary>
  2927. </member>
  2928. <member name="F:Janus.Windows.ExplorerBar.BorderControl.components">
  2929. <summary>
  2930. Required designer variable.
  2931. </summary>
  2932. </member>
  2933. <member name="M:Janus.Windows.ExplorerBar.BorderControl.Dispose(System.Boolean)">
  2934. <summary>
  2935. Clean up any resources being used.
  2936. </summary>
  2937. </member>
  2938. <member name="M:Janus.Windows.ExplorerBar.BorderControl.InitializeComponent">
  2939. <summary>
  2940. Required method for Designer support - do not modify
  2941. the contents of this method with the code editor.
  2942. </summary>
  2943. </member>
  2944. <member name="T:Janus.Windows.ExplorerBar.GroupEventArgs">
  2945. <summary>
  2946. Provides data for the GroupClick, GroupCollapsed and GroupExpanded events.
  2947. </summary>
  2948. </member>
  2949. <member name="M:Janus.Windows.ExplorerBar.GroupEventArgs.#ctor(Janus.Windows.ExplorerBar.ExplorerBarGroup)">
  2950. <summary>
  2951. Initialize a new instance of the GroupEventArgs class
  2952. </summary>
  2953. </member>
  2954. <member name="P:Janus.Windows.ExplorerBar.GroupEventArgs.Group">
  2955. <summary>
  2956. Gets the ExplorerBarGroup containing the data.
  2957. </summary>
  2958. </member>
  2959. <member name="T:Janus.Windows.ExplorerBar.GroupCancelEventArgs">
  2960. <summary>
  2961. Provides data for the GroupExpanding and GroupCollapsing events.
  2962. </summary>
  2963. </member>
  2964. <member name="P:Janus.Windows.ExplorerBar.GroupCancelEventArgs.Group">
  2965. <summary>
  2966. Gets the ExplorerBarGroup containing the data.
  2967. </summary>
  2968. </member>
  2969. <member name="P:Janus.Windows.ExplorerBar.GroupCancelEventArgs.Cancel">
  2970. <summary>
  2971. Gets or sets a value indicating whether the event should be canceled.
  2972. </summary>
  2973. </member>
  2974. <member name="T:Janus.Windows.ExplorerBar.ItemEventArgs">
  2975. <summary>
  2976. Provides data for the ItemClick event.
  2977. </summary>
  2978. </member>
  2979. <member name="M:Janus.Windows.ExplorerBar.ItemEventArgs.#ctor(Janus.Windows.ExplorerBar.ExplorerBarItem)">
  2980. <summary>
  2981. Initialize a new instance of the ItemEventArgs class
  2982. </summary>
  2983. </member>
  2984. <member name="P:Janus.Windows.ExplorerBar.ItemEventArgs.Item">
  2985. <summary>
  2986. Gets the ExplorerBarItem containing the data.
  2987. </summary>
  2988. </member>
  2989. <member name="T:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs">
  2990. <summary>
  2991. Provides data for the DrawExplorerBarArea event.
  2992. </summary>
  2993. </member>
  2994. <member name="M:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs.PaintBackground">
  2995. <summary>
  2996. Draws the background of the area being painted.
  2997. </summary>
  2998. </member>
  2999. <member name="P:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs.Graphics">
  3000. <summary>
  3001. Gets the graphics surface to draw the ExplorerBar area on.
  3002. </summary>
  3003. </member>
  3004. <member name="P:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs.Bounds">
  3005. <summary>
  3006. Gets the rectangle that represents the bounds of the area being drawn.
  3007. </summary>
  3008. </member>
  3009. <member name="P:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs.Group">
  3010. <summary>
  3011. Gets the ExplorerBarGroup object being painted.
  3012. </summary>
  3013. </member>
  3014. <member name="P:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs.Item">
  3015. <summary>
  3016. Gets the ExplorerBarItem object being painted.
  3017. </summary>
  3018. </member>
  3019. <member name="P:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs.BackBrush">
  3020. <summary>
  3021. Gets a Brush object that can be used to draw the background.
  3022. </summary>
  3023. </member>
  3024. <member name="P:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs.ForeBrush">
  3025. <summary>
  3026. Gets a Brush object that can be used to draw the foreground.
  3027. </summary>
  3028. </member>
  3029. <member name="P:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs.BackColor">
  3030. <summary>
  3031. Gets the background color of the area being draw.
  3032. </summary>
  3033. </member>
  3034. <member name="P:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs.ForeColor">
  3035. <summary>
  3036. Gets the foreground color of the area being drawn.
  3037. </summary>
  3038. </member>
  3039. <member name="P:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs.ExplorerBarArea">
  3040. <summary>
  3041. Gets the type of the ExplorerBar area being drawn.
  3042. </summary>
  3043. </member>
  3044. <member name="P:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventArgs.Handled">
  3045. <summary>
  3046. Gets or sets a value that specifies whether the area was drawn by the owner.
  3047. </summary>
  3048. </member>
  3049. <member name="T:Janus.Windows.ExplorerBar.ItemEventHandler">
  3050. <summary>
  3051. Represents the method that will handle the ItemClick event of the ExplorerBar.
  3052. </summary>
  3053. </member>
  3054. <member name="T:Janus.Windows.ExplorerBar.GroupEventHandler">
  3055. <summary>
  3056. Represents the method that will handle the GroupClick, GroupCollapsed and GroupExpanded events of the ExplorerBar.
  3057. </summary>
  3058. </member>
  3059. <member name="T:Janus.Windows.ExplorerBar.GroupCancelEventHandler">
  3060. <summary>
  3061. Represents the method that will handle the GroupCollapsing and GroupExpanding events of the ExplorerBar.
  3062. </summary>
  3063. </member>
  3064. <member name="T:Janus.Windows.ExplorerBar.DrawExplorerBarAreaEventHandler">
  3065. <summary>
  3066. Represents the method that will handle the DrawExplorerBarArea event of the ExplorerBar.
  3067. </summary>
  3068. </member>
  3069. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarVisualStyleAreas">
  3070. <summary>
  3071. Summary description for AreaStyles.
  3072. </summary>
  3073. </member>
  3074. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarVisualStyleAreas.BackgroundStyle">
  3075. <summary>
  3076. Gets or sets a value specifying the style for the background of the ExplorerBar control.
  3077. </summary>
  3078. </member>
  3079. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarVisualStyleAreas.BorderStyle">
  3080. <summary>
  3081. Gets or sets a value specifying the style for the border of the ExplorerBar control.
  3082. </summary>
  3083. </member>
  3084. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarVisualStyleAreas.HoverItemStyle">
  3085. <summary>
  3086. Gets or sets a value specifying the style for the items in the ExplorerBar control when the mouse is over them.
  3087. </summary>
  3088. </member>
  3089. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarVisualStyleAreas.SelectedItemStyle">
  3090. <summary>
  3091. Gets or sets a value specifying the style for the selected item in the ExplorerBar control.
  3092. </summary>
  3093. </member>
  3094. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarVisualStyleAreas.GroupHeaderStyle">
  3095. <summary>
  3096. Gets or sets a value specifying the style for the group headers in the ExplorerBar control.
  3097. </summary>
  3098. </member>
  3099. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarVisualStyleAreas.ItemsStyle">
  3100. <summary>
  3101. Gets or sets a value specifying the style for the items in the ExplorerBar control.
  3102. </summary>
  3103. </member>
  3104. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection">
  3105. <summary>
  3106. Encapsulates a collection of ExplorerBarGroup objects for use by the ExplorerBar control.
  3107. </summary>
  3108. </member>
  3109. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.Contains(Janus.Windows.ExplorerBar.ExplorerBarGroup)">
  3110. <summary>
  3111. Determines if the specified ExplorerBarGroup object is a member of the collection.
  3112. </summary>
  3113. <param name="group">The ExplorerBarGroup object to locate in the collection.</param>
  3114. <returns>true if the group is found in the ExplorerBarGroupCollection; otherwise, false.</returns>
  3115. </member>
  3116. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.Insert(System.Int32,Janus.Windows.ExplorerBar.ExplorerBarGroup)">
  3117. <summary>
  3118. Inserts a new ExplorerBarGroup object in the collection at the specified location.
  3119. </summary>
  3120. <param name="index">The indexed location within the collection to insert the ExplorerBarGroup object.</param>
  3121. <param name="group">The ExplorerBarGroup object to insert.</param>
  3122. </member>
  3123. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.AddRange(Janus.Windows.ExplorerBar.ExplorerBarGroup[])">
  3124. <summary>
  3125. Adds an array of ExplorerBarGroup objects to the collection.
  3126. </summary>
  3127. <param name="groups">An array of ExplorerBarGroup objects to add to the collection.</param>
  3128. </member>
  3129. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.Add(Janus.Windows.ExplorerBar.ExplorerBarGroup)">
  3130. <summary>
  3131. Adds the ExplorerBarGroup object to the end of the ExplorerBarGroupCollection.
  3132. </summary>
  3133. <param name="group">The ExplorerBarGroup to be added after all existing groups.</param>
  3134. </member>
  3135. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.Add(System.String)">
  3136. <summary>
  3137. Creates a new ExplorerBarGroup using the specified value and adds it to the end of the ExplorerBarGroupCollection.
  3138. </summary>
  3139. <param name="text">The text of the new ExplorerBarGroup.</param>
  3140. </member>
  3141. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.Remove(Janus.Windows.ExplorerBar.ExplorerBarGroup)">
  3142. <summary>
  3143. Removes a given ExplorerBarGroup from the collection.
  3144. </summary>
  3145. <param name="group">The ExplorerBarGroup object to remove from the collection.</param>
  3146. </member>
  3147. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.RemoveAt(System.Int32)">
  3148. <summary>
  3149. Removes the ExplorerBarGroup at the specified index of the collection.
  3150. </summary>
  3151. <param name="index">The indexed location of the ExplorerBarGroup object in the collection.</param>
  3152. </member>
  3153. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.MoveAt(System.Int32,Janus.Windows.ExplorerBar.ExplorerBarGroup)">
  3154. <summary>
  3155. Moves the ExplorerBarGroup to the specified index in the collection
  3156. </summary>
  3157. </member>
  3158. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.OnClear">
  3159. <summary>
  3160. Performs additional custom processes when clearing the contents of the ExplorerBarGroupCollection class.
  3161. </summary>
  3162. </member>
  3163. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.OnClearComplete">
  3164. <summary>
  3165. Performs additional custom processes after clearing the contents of the ExplorerBarGroupCollection class.
  3166. </summary>
  3167. </member>
  3168. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.Item(System.Int32)">
  3169. <summary>
  3170. Gets the ExplorerBarGroup object at the specified indexed location in the ExplorerBarGroupCollection.
  3171. </summary>
  3172. <param name="index">The indexed location of the ExplorerBarGroup in the collection.</param>
  3173. </member>
  3174. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroupCollection.Item(System.String)">
  3175. <summary>
  3176. Gets the ExplorerBarGroup object with the specified key in the ExplorerBarGroupCollection.
  3177. </summary>
  3178. <param name="key">The key of the ExplorerBarGroup in the collection.</param>
  3179. </member>
  3180. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarContainerControl">
  3181. <summary>
  3182. Summary description for ExplorerBarContainerControl.
  3183. </summary>
  3184. </member>
  3185. <member name="F:Janus.Windows.ExplorerBar.ExplorerBarContainerControl.components">
  3186. <summary>
  3187. Required designer variable.
  3188. </summary>
  3189. </member>
  3190. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarContainerControl.#ctor">
  3191. <summary>
  3192. Initialize a new instance of the ExplorerBarContainerControl class.
  3193. </summary>
  3194. </member>
  3195. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarContainerControl.OnResize(System.EventArgs)">
  3196. <summary>
  3197. Raises the System.Windows.Forms.Control.Resize event.
  3198. </summary>
  3199. <param name="e">A System.EventArgs that contains the event data.</param>
  3200. </member>
  3201. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarContainerControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
  3202. <summary>
  3203. Raises the System.Windows.Forms.Control.PaintBackground event.
  3204. </summary>
  3205. <param name="e">A System.Windows.Forms.PaintEventArgs that contains the event data.</param>
  3206. </member>
  3207. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarContainerControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
  3208. <summary>
  3209. Raises the System.Windows.Forms.Control.Paint event.
  3210. </summary>
  3211. <param name="e">A System.Windows.Forms.PaintEventArgs that contains the event data.</param>
  3212. </member>
  3213. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarContainerControl.Dispose(System.Boolean)">
  3214. <summary>
  3215. Clean up any resources being used.
  3216. </summary>
  3217. </member>
  3218. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarContainerControl.InitializeComponent">
  3219. <summary>
  3220. Required method for Designer support - do not modify
  3221. the contents of this method with the code editor.
  3222. </summary>
  3223. </member>
  3224. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarContainerControl.ExplorerBar">
  3225. <summary>
  3226. Gets the ExplorerBar control that this ExplorerBarContainerControl is assigned to.
  3227. </summary>
  3228. </member>
  3229. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarContainerControl.Group">
  3230. <summary>
  3231. Gets the ExplorerBarGroup object that this ExplorerBarContainerControl is assigned to.
  3232. </summary>
  3233. </member>
  3234. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarContainerControl.Item">
  3235. <summary>
  3236. Gets the ExplorerBarItem object that this ExplorerBarContainerControl is assigned to.
  3237. </summary>
  3238. </member>
  3239. <member name="T:Janus.Windows.ExplorerBar.ResourceFile">
  3240. <summary>
  3241. A strongly-typed resource class, for looking up localized strings, etc.
  3242. </summary>
  3243. </member>
  3244. <member name="P:Janus.Windows.ExplorerBar.ResourceFile.ResourceManager">
  3245. <summary>
  3246. Returns the cached ResourceManager instance used by this class.
  3247. </summary>
  3248. </member>
  3249. <member name="P:Janus.Windows.ExplorerBar.ResourceFile.Culture">
  3250. <summary>
  3251. Overrides the current thread's CurrentUICulture property for all
  3252. resource lookups using this strongly typed resource class.
  3253. </summary>
  3254. </member>
  3255. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarColorScheme">
  3256. <summary>
  3257. Summary description for ColorScheme.
  3258. </summary>
  3259. </member>
  3260. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarGroup">
  3261. <summary>
  3262. Represents a group in the ExplorerBar control.
  3263. </summary>
  3264. </member>
  3265. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroup.#ctor(System.String)">
  3266. <summary>
  3267. Initializes a new instance of the ExplorerBarGroup class and displays the assigned text on the group.
  3268. </summary>
  3269. <param name="text">The text to display on the new ExplorerBarGroup.</param>
  3270. </member>
  3271. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroup.#ctor">
  3272. <summary>
  3273. Initializes a new instance of the ExplorerBarGroup class.
  3274. </summary>
  3275. </member>
  3276. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroup.ShouldSerializeWatermarkImage">
  3277. <summary>
  3278. Indicates whether the WatermarkImage property should be persisted.
  3279. </summary>
  3280. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  3281. </member>
  3282. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroup.ResetWatermarkImage">
  3283. <summary>
  3284. Resets the WatermarkImage property to its default value.
  3285. </summary>
  3286. </member>
  3287. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroup.ResetFormatStyle">
  3288. <summary>
  3289. Resets the FormatStyle property to its default value.
  3290. </summary>
  3291. </member>
  3292. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroup.ShouldSerializeFormatStyle">
  3293. <summary>
  3294. Indicates whether the FormatStyle property should be persisted.
  3295. </summary>
  3296. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  3297. </member>
  3298. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroup.ResetItemsFormatStyle">
  3299. <summary>
  3300. Resets the ItemsFormatStyle property to its default value.
  3301. </summary>
  3302. </member>
  3303. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroup.ShouldSerializeItemsFormatStyle">
  3304. <summary>
  3305. Indicates whether the ItemsFormatStyle property should be persisted.
  3306. </summary>
  3307. <returns>true if the property value has changed from its default; otherwise, false.</returns>
  3308. </member>
  3309. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ColumnSpan">
  3310. <summary>
  3311. Gets or sets the number of columns in the ExplorerBar control that the group spans.
  3312. </summary>
  3313. </member>
  3314. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Container">
  3315. <summary>
  3316. Gets or sets a value that indicates whether the group should act as a container for other controls.
  3317. </summary>
  3318. </member>
  3319. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.HeaderHeight">
  3320. <summary>
  3321. Gets or sets the height of the header of ExplorerBarGroup in pixels.
  3322. </summary>
  3323. </member>
  3324. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ContainerHeight">
  3325. <summary>
  3326. Gets or sets the height of the ExplorerBarContainerControl in pixels.
  3327. </summary>
  3328. </member>
  3329. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ContainerControl">
  3330. <summary>
  3331. Gets or sets the ExplorerBarContainerControl associated to a ExplorerBarGroup acting as container for other controls.
  3332. </summary>
  3333. </member>
  3334. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Tag">
  3335. <summary>
  3336. Gets or sets an object that contains data to associate with the ExplorerBarGroup.
  3337. </summary>
  3338. </member>
  3339. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Icon">
  3340. <summary>
  3341. Gets or sets the icon that is displayed on the ExplorerBarGroup.
  3342. </summary>
  3343. </member>
  3344. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.TagString">
  3345. <summary>
  3346. Gets or sets a string that contains data to associate with the ExplorerBarGroup.
  3347. </summary>
  3348. </member>
  3349. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Index">
  3350. <summary>
  3351. Gets the position of the ExplorerBarGroup in the ExplorerBarGroupCollection.
  3352. </summary>
  3353. </member>
  3354. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Key">
  3355. <summary>
  3356. Gets or sets a string that uniquely identifies this ExplorerBarGroup in a collection.
  3357. </summary>
  3358. </member>
  3359. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.TextAlignment">
  3360. <summary>
  3361. Gets or sets the alignment of the text in the ExplorerBarGroup.
  3362. </summary>
  3363. </member>
  3364. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ImageAlignment">
  3365. <summary>
  3366. Gets or sets the alignment of the image in the ExplorerBarGroup.
  3367. </summary>
  3368. </member>
  3369. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Enabled">
  3370. <summary>
  3371. Gets or sets a value indicating whether the ExplorerBarGroup is enabled.
  3372. </summary>
  3373. </member>
  3374. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Visible">
  3375. <summary>
  3376. Gets or sets a value indicating whether the ExplorerBarGroup is visble.
  3377. </summary>
  3378. </member>
  3379. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.HeaderBounds">
  3380. <summary>
  3381. Gets or sets the size and location of the group's header in the ExplorerBar control.
  3382. </summary>
  3383. </member>
  3384. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ButtonAlignment">
  3385. <summary>
  3386. Gets or sets the alignment of the expand and close buttons on the ExplorerBarGroup.
  3387. </summary>
  3388. </member>
  3389. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.CloseButtonAlignment">
  3390. <summary>
  3391. Gets or sets the alignment of the close button on the ExplorerBarGroup.
  3392. </summary>
  3393. </member>
  3394. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ExpandButtonAlignment">
  3395. <summary>
  3396. Gets or sets the alignment of the expand button on the ExplorerBarGroup.
  3397. </summary>
  3398. </member>
  3399. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Cursor">
  3400. <summary>
  3401. Gets or sets the cursor that is displayed when the mouse pointer is over the group.
  3402. </summary>
  3403. </member>
  3404. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Expandable">
  3405. <summary>
  3406. Gets or sets a value indicating whether the expand button is displayed on the group.
  3407. </summary>
  3408. </member>
  3409. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.CollapsedButtonImageIndex">
  3410. <summary>
  3411. Gets or sets the image list index value of the image displayed instead of the default collapsed button image.
  3412. </summary>
  3413. </member>
  3414. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.CollapsedButtonImageKey">
  3415. <summary>
  3416. Gets or sets the key accessor for the image in the ImageList displayed instead of the default collapsed button image.
  3417. </summary>
  3418. </member>
  3419. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ExpandButtonImageIndex">
  3420. <summary>
  3421. Gets or sets the image list index value of the image displayed instead of the default expand button image.
  3422. </summary>
  3423. </member>
  3424. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ExpandButtonImageKey">
  3425. <summary>
  3426. Gets or sets the key accessor for the image in the ImageList displayed instead of the default expand button image.
  3427. </summary>
  3428. </member>
  3429. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ShowCloseButton">
  3430. <summary>
  3431. Gets or sets a value indicating whether the close button is displayed on the group.
  3432. </summary>
  3433. </member>
  3434. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Items">
  3435. <summary>
  3436. Gets a collection containing all the items in this group.
  3437. </summary>
  3438. </member>
  3439. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Image">
  3440. <summary>
  3441. Gets or sets the image displayed on the ExplorerBarGroup.
  3442. </summary>
  3443. </member>
  3444. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.FocusImageIndex">
  3445. <summary>
  3446. Gets or sets the index value of the image displayed by the ExplorerBarGroup when the mouse moves over it.
  3447. </summary>
  3448. </member>
  3449. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.FocusImageKey">
  3450. <summary>
  3451. Gets or sets the key accessor for the image in the ImageList displayed by the ExplorerBarGroup when the mouse moves over it.
  3452. </summary>
  3453. </member>
  3454. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.DisabledImageIndex">
  3455. <summary>
  3456. Gets or sets the index value of the image displayed by the ExplorerBarGroup when it is disabled.
  3457. </summary>
  3458. </member>
  3459. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.DisabledImageKey">
  3460. <summary>
  3461. Gets or sets the key accessor for the image in the ImageList displayed by the ExplorerBarGroup when it is disabled.
  3462. </summary>
  3463. </member>
  3464. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ImageIndex">
  3465. <summary>
  3466. Gets or sets the index value of the image displayed by the ExplorerBarGroup.
  3467. </summary>
  3468. </member>
  3469. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ImageKey">
  3470. <summary>
  3471. Gets or sets the key accessor for the image in the ImageList displayed by the ExplorerBarGroup.
  3472. </summary>
  3473. </member>
  3474. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ShowGroupBorder">
  3475. <summary>
  3476. Gets or sets a value that indicates whether a border is drawn around the group.
  3477. </summary>
  3478. </member>
  3479. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.WatermarkImage">
  3480. <summary>
  3481. Gets a ExplorerWatermarkImage that contains the information used to draw a watermark image in the background.
  3482. </summary>
  3483. </member>
  3484. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Text">
  3485. <summary>
  3486. Gets or sets the text displayed on the ExplorerBarGroup.
  3487. </summary>
  3488. </member>
  3489. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ToolTipText">
  3490. <summary>
  3491. Gets or sets the text that appears as a ToolTip for the ExplorerBarGroup.
  3492. </summary>
  3493. </member>
  3494. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.SpecialGroup">
  3495. <summary>
  3496. Gets or a value that indicates whether the group should be displayed as a special group.
  3497. </summary>
  3498. </member>
  3499. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.BackgroundImage">
  3500. <summary>
  3501. Gets or sets the background image displayed in the background of the group.
  3502. </summary>
  3503. </member>
  3504. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.BackgroundImageDrawMode">
  3505. <summary>
  3506. Gets or sets a value specifying how the background image is draw in the ExplorerBar.
  3507. </summary>
  3508. </member>
  3509. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ExplorerBar">
  3510. <summary>
  3511. Gets the ExplorerBar control that this ExplorerBarGroup object is assigned to.
  3512. </summary>
  3513. </member>
  3514. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.FormatStyle">
  3515. <summary>
  3516. Gets the ExplorerBarFormatStyle used to draw this ExplorerBarGroup in the ExplorerBar control.
  3517. </summary>
  3518. </member>
  3519. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.Expanded">
  3520. <summary>
  3521. Gets or sets a value indicating whether the ExplorerBarGroup is expanded.
  3522. </summary>
  3523. </member>
  3524. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ShowGroupCaption">
  3525. <summary>
  3526. Gets or sets a value that indicates whether the header section is displayed in the ExplorerBar control.
  3527. </summary>
  3528. </member>
  3529. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ItemsStateStyles">
  3530. <summary>
  3531. Gets the ExplorerBarStateStyles that holds the format styles used to draw the items whitin this group in their different states.
  3532. </summary>
  3533. </member>
  3534. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.StateStyles">
  3535. <summary>
  3536. Gets the ExplorerBarStateStyles that holds the format styles used to draw the header in its different states.
  3537. </summary>
  3538. </member>
  3539. <member name="P:Janus.Windows.ExplorerBar.ExplorerBarGroup.ItemsFormatStyle">
  3540. <summary>
  3541. Gets the ExplorerBarFormatStyle used to draw the ExplorerBarItem objects whitin this group.
  3542. </summary>
  3543. </member>
  3544. <member name="T:Janus.Windows.ExplorerBar.ExplorerBarGroupConverter">
  3545. <summary>
  3546. </summary>
  3547. </member>
  3548. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupConverter.#ctor">
  3549. <summary>
  3550. Initialize a new instance of the ExplorerBarGroupConverter class
  3551. </summary>
  3552. </member>
  3553. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  3554. <summary>
  3555. Overrides TypeConverter.CanConvertTo
  3556. </summary>
  3557. </member>
  3558. <member name="M:Janus.Windows.ExplorerBar.ExplorerBarGroupConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  3559. <summary>
  3560. Overrides TypeConverter.ConvertTo
  3561. </summary>
  3562. </member>
  3563. <member name="T:Janus.Windows.ExplorerBar.Internal.ThemePaint">
  3564. <summary>
  3565. Summary description for ThemePaint.
  3566. </summary>
  3567. </member>
  3568. </members>
  3569. </doc>