Infragistics2.Win.UltraWinDataSource.v9.2.XML 208 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Infragistics2.Win.UltraWinDataSource.v9.2</name>
  5. </assembly>
  6. <members>
  7. <member name="M:Infragistics.Shared.LocalizedCategoryAttribute.GetLocalizedString(System.String)">
  8. <summary>
  9. Returns the localized category name
  10. </summary>
  11. <param name="value">Name of the category to retreive</param>
  12. <returns>The localized string value</returns>
  13. </member>
  14. <member name="M:Infragistics.Shared.UltraLicenseAttribute.GetLicensedWithProducts">
  15. <summary>
  16. Return the list of products that this control can be licensed with
  17. </summary>
  18. </member>
  19. <member name="T:Infragistics.Win.UltraWinDataSource.Serialization.Binder">
  20. <summary>
  21. Controls class loading and mandates what class to load.
  22. </summary>
  23. </member>
  24. <member name="M:Infragistics.Win.UltraWinDataSource.Serialization.Binder.BindToType(System.String,System.String)">
  25. <summary>
  26. Controls the binding of a serialized object to a type
  27. </summary>
  28. <param name="assemblyName">Specifies the Assembly name of the serialized object</param>
  29. <param name="typeName">Specifies the Type name of the serialized object.</param>
  30. <returns>The type of the object the formatter creates a new instance of.</returns>
  31. </member>
  32. <member name="T:Infragistics.Win.UltraWinDataSource.DataSourceEventIds">
  33. <summary>
  34. Uniquely identifies each UltraDataSource event.
  35. </summary>
  36. </member>
  37. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.CellDataRequested">
  38. <summary>
  39. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event.
  40. </summary>
  41. </member>
  42. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.CellDataUpdated">
  43. <summary>
  44. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated"/> event.
  45. </summary>
  46. </member>
  47. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.CellDataUpdating">
  48. <summary>
  49. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> event.
  50. </summary>
  51. </member>
  52. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.InitializeDataRow">
  53. <summary>
  54. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.InitializeDataRow"/> event.
  55. </summary>
  56. </member>
  57. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.InitializeRowsCollection">
  58. <summary>
  59. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.InitializeRowsCollection"/> event.
  60. </summary>
  61. </member>
  62. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.RowAdded">
  63. <summary>
  64. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> event.
  65. </summary>
  66. </member>
  67. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.RowAdding">
  68. <summary>
  69. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> event.
  70. </summary>
  71. </member>
  72. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.RowDeleted">
  73. <summary>
  74. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/> event.
  75. </summary>
  76. </member>
  77. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.RowDeleting">
  78. <summary>
  79. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleting"/> event.
  80. </summary>
  81. </member>
  82. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.RowBeginEdit">
  83. <summary>
  84. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowBeginEdit"/> event.
  85. </summary>
  86. </member>
  87. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.RowEndEdit">
  88. <summary>
  89. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowEndEdit"/> event.
  90. </summary>
  91. </member>
  92. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.RowCancelEdit">
  93. <summary>
  94. Event id that identifies <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowCancelEdit"/> event.
  95. </summary>
  96. </member>
  97. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventIds.LastEventId">
  98. <summary>
  99. Keep the last event id used.
  100. </summary>
  101. </member>
  102. <member name="T:Infragistics.Win.UltraWinDataSource.DataSourceEventGroups">
  103. <summary>
  104. Identifies groups of UltraDataSource specific events.
  105. </summary>
  106. </member>
  107. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventGroups.AllEvents">
  108. <summary>
  109. All events
  110. </summary>
  111. </member>
  112. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventGroups.BeforeEvents">
  113. <summary>
  114. Before events
  115. </summary>
  116. </member>
  117. <member name="F:Infragistics.Win.UltraWinDataSource.DataSourceEventGroups.AfterEvents">
  118. <summary>
  119. After events
  120. </summary>
  121. </member>
  122. <member name="T:Infragistics.Win.UltraWinDataSource.PropertyIds">
  123. <summary>
  124. Uniquely identify each property.
  125. </summary>
  126. </member>
  127. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.AllowAdd">
  128. <summary>
  129. <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowAdd"/> property
  130. </summary>
  131. </member>
  132. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.AllowDelete">
  133. <summary>
  134. <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowDelete"/> property
  135. </summary>
  136. </member>
  137. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.ReadOnly">
  138. <summary>
  139. <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ReadOnly"/> property
  140. </summary>
  141. </member>
  142. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.Added">
  143. <summary>
  144. Item was added to the collection
  145. </summary>
  146. </member>
  147. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.Removed">
  148. <summary>
  149. Item was removed to the collection
  150. </summary>
  151. </member>
  152. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.Cleared">
  153. <summary>
  154. Collection was cleared
  155. </summary>
  156. </member>
  157. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.DataType">
  158. <summary>
  159. <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowDelete"/> property
  160. </summary>
  161. </member>
  162. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.DefaultValue">
  163. <summary>
  164. <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.DefaultValue"/> property
  165. </summary>
  166. </member>
  167. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.Column">
  168. <summary>
  169. <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataColumn"/> property
  170. </summary>
  171. </member>
  172. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.Columns">
  173. <summary>
  174. <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection"/> property
  175. </summary>
  176. </member>
  177. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.Band">
  178. <summary>
  179. <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataBand"/> property
  180. </summary>
  181. </member>
  182. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.Bands">
  183. <summary>
  184. <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection"/> property
  185. </summary>
  186. </member>
  187. <member name="F:Infragistics.Win.UltraWinDataSource.PropertyIds.AllowDBNull">
  188. <summary>
  189. <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.AllowDBNull"/> property
  190. </summary>
  191. </member>
  192. <member name="T:Infragistics.Win.UltraWinDataSource.DataSourceEventManager">
  193. <summary>
  194. Class for managing an UltraDataSource' events. It maintains an
  195. enabled flag for each event as well as a nested 'in progress'
  196. count and it exposes methods for firing each event.
  197. </summary>
  198. </member>
  199. <member name="M:Infragistics.Win.UltraWinDataSource.DataSourceEventManager.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataSource)">
  200. <summary>
  201. Contructor.
  202. </summary>
  203. <param name="ultraDataSource">UltraDataSource that this event manager will be asociated with.</param>
  204. </member>
  205. <member name="M:Infragistics.Win.UltraWinDataSource.DataSourceEventManager.InProgress(Infragistics.Win.UltraWinDataSource.DataSourceEventIds)">
  206. <summary>
  207. Returns true if the event is in progress (in progress count > 0)
  208. </summary>
  209. <param name="eventid">The id of the event</param>
  210. <returns>true if the event is in progress; otherwise, false.</returns>
  211. </member>
  212. <member name="M:Infragistics.Win.UltraWinDataSource.DataSourceEventManager.IsEnabled(Infragistics.Win.UltraWinDataSource.DataSourceEventIds)">
  213. <summary>
  214. Returns true if the event is enabled
  215. </summary>
  216. <param name="eventid">The id of the event.</param>
  217. <returns>true if the event is enabled; otherwise, false.</returns>
  218. </member>
  219. <member name="M:Infragistics.Win.UltraWinDataSource.DataSourceEventManager.SetEnabled(Infragistics.Win.UltraWinDataSource.DataSourceEventIds,System.Boolean)">
  220. <summary>
  221. Sets a specific event to enabled or disabled.
  222. </summary>
  223. </member>
  224. <member name="M:Infragistics.Win.UltraWinDataSource.DataSourceEventManager.IsEnabled(Infragistics.Win.UltraWinDataSource.DataSourceEventGroups)">
  225. <summary>
  226. Returns true if all events in the group are enabled
  227. </summary>
  228. <param name="group">The id of the events.</param>
  229. <returns>true if the event group is enabled; otherwise, false.</returns>
  230. </member>
  231. <member name="M:Infragistics.Win.UltraWinDataSource.DataSourceEventManager.SetEnabled(Infragistics.Win.UltraWinDataSource.DataSourceEventGroups,System.Boolean)">
  232. <summary>
  233. Sets a specific event to enabled or disabled
  234. </summary>
  235. <param name="group">The id of the event.</param>
  236. <param name="enabled">True to enable the firing of the events, false to disable.</param>
  237. </member>
  238. <member name="T:Infragistics.Win.UltraWinDataSource.CellDataRequestedEventHandler">
  239. <summary>
  240. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event.
  241. </summary>
  242. </member>
  243. <member name="T:Infragistics.Win.UltraWinDataSource.CellDataUpdatingEventHandler">
  244. <summary>
  245. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> event.
  246. </summary>
  247. </member>
  248. <member name="T:Infragistics.Win.UltraWinDataSource.CellDataUpdatedEventHandler">
  249. <summary>
  250. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated"/> event.
  251. </summary>
  252. </member>
  253. <member name="T:Infragistics.Win.UltraWinDataSource.InitializeDataRowEventHandler">
  254. <summary>
  255. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.InitializeDataRow"/> event.
  256. </summary>
  257. </member>
  258. <member name="T:Infragistics.Win.UltraWinDataSource.InitializeRowsCollectionEventHandler">
  259. <summary>
  260. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.InitializeRowsCollection"/> event.
  261. </summary>
  262. </member>
  263. <member name="T:Infragistics.Win.UltraWinDataSource.RowAddingEventHandler">
  264. <summary>
  265. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> event.
  266. </summary>
  267. </member>
  268. <member name="T:Infragistics.Win.UltraWinDataSource.RowAddedEventHandler">
  269. <summary>
  270. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> event.
  271. </summary>
  272. </member>
  273. <member name="T:Infragistics.Win.UltraWinDataSource.RowDeletingEventHandler">
  274. <summary>
  275. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleting"/> event.
  276. </summary>
  277. </member>
  278. <member name="T:Infragistics.Win.UltraWinDataSource.RowDeletedEventHandler">
  279. <summary>
  280. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/> event.
  281. </summary>
  282. </member>
  283. <member name="T:Infragistics.Win.UltraWinDataSource.RowBeginEditEventHandler">
  284. <summary>
  285. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/> event.
  286. </summary>
  287. </member>
  288. <member name="T:Infragistics.Win.UltraWinDataSource.RowEndEditEventHandler">
  289. <summary>
  290. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/> event.
  291. </summary>
  292. </member>
  293. <member name="T:Infragistics.Win.UltraWinDataSource.RowCancelEditEventHandler">
  294. <summary>
  295. Delegate for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/> event.
  296. </summary>
  297. </member>
  298. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataRowEventArgs">
  299. <summary>
  300. Base class for event args that have an associated row.
  301. </summary>
  302. </member>
  303. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  304. <summary>
  305. Constructor.
  306. </summary>
  307. <param name="row"></param>
  308. </member>
  309. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRowEventArgs.Row">
  310. <summary>
  311. Gets the row.
  312. </summary>
  313. </member>
  314. <member name="T:Infragistics.Win.UltraWinDataSource.CellDataRequestedEventArgs">
  315. <summary>
  316. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event.
  317. </summary>
  318. </member>
  319. <member name="M:Infragistics.Win.UltraWinDataSource.CellDataRequestedEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow,Infragistics.Win.UltraWinDataSource.UltraDataColumn)">
  320. <summary>
  321. Constructor.
  322. </summary>
  323. <param name="row">The row</param>
  324. <param name="column">The column</param>
  325. </member>
  326. <member name="P:Infragistics.Win.UltraWinDataSource.CellDataRequestedEventArgs.Row">
  327. <summary>
  328. Gets the row.
  329. </summary>
  330. </member>
  331. <member name="P:Infragistics.Win.UltraWinDataSource.CellDataRequestedEventArgs.Column">
  332. <summary>
  333. Gets the column.
  334. </summary>
  335. </member>
  336. <member name="P:Infragistics.Win.UltraWinDataSource.CellDataRequestedEventArgs.CacheData">
  337. <summary>
  338. Specifies whether to cache the data. Default value is <b>true</b>. Set this to false if you want to prevent the UltraDataSource from keeping the data. As a result <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event will be fired again the next time the data for the cell is needed.
  339. </summary>
  340. </member>
  341. <member name="P:Infragistics.Win.UltraWinDataSource.CellDataRequestedEventArgs.Data">
  342. <summary>
  343. Gets or sets the cell data. Set this property to the cell's value.
  344. </summary>
  345. </member>
  346. <member name="T:Infragistics.Win.UltraWinDataSource.CellDataUpdatingEventArgs">
  347. <summary>
  348. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> event.
  349. </summary>
  350. </member>
  351. <member name="M:Infragistics.Win.UltraWinDataSource.CellDataUpdatingEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow,Infragistics.Win.UltraWinDataSource.UltraDataColumn,System.Object)">
  352. <summary>
  353. Constructor.
  354. </summary>
  355. <param name="row">The row</param>
  356. <param name="column">The column</param>
  357. <param name="newValue">New value of the cell.</param>
  358. </member>
  359. <member name="P:Infragistics.Win.UltraWinDataSource.CellDataUpdatingEventArgs.Row">
  360. <summary>
  361. Gets the row.
  362. </summary>
  363. </member>
  364. <member name="P:Infragistics.Win.UltraWinDataSource.CellDataUpdatingEventArgs.Column">
  365. <summary>
  366. Gets the column.
  367. </summary>
  368. </member>
  369. <member name="P:Infragistics.Win.UltraWinDataSource.CellDataUpdatingEventArgs.NewValue">
  370. <summary>
  371. New value of the cell. You can set this to a different value.
  372. </summary>
  373. </member>
  374. <member name="P:Infragistics.Win.UltraWinDataSource.CellDataUpdatingEventArgs.CacheData">
  375. <summary>
  376. Specifies whether to cache the data. Default value is <b>true</b>. Set this to false if you want to prevent the UltraDataSource from keeping the data. If there is some existing data that's cached for the column, it will be cleared. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event will be fired the next time the data for the cell is needed.
  377. </summary>
  378. </member>
  379. <member name="T:Infragistics.Win.UltraWinDataSource.CellDataUpdatedEventArgs">
  380. <summary>
  381. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated"/> event.
  382. </summary>
  383. </member>
  384. <member name="M:Infragistics.Win.UltraWinDataSource.CellDataUpdatedEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow,Infragistics.Win.UltraWinDataSource.UltraDataColumn,System.Object)">
  385. <summary>
  386. Constructor.
  387. </summary>
  388. <param name="row">The row</param>
  389. <param name="column">The column</param>
  390. <param name="newValue">The new value of the cell.</param>
  391. </member>
  392. <member name="P:Infragistics.Win.UltraWinDataSource.CellDataUpdatedEventArgs.Row">
  393. <summary>
  394. Gets the row.
  395. </summary>
  396. </member>
  397. <member name="P:Infragistics.Win.UltraWinDataSource.CellDataUpdatedEventArgs.Column">
  398. <summary>
  399. Gets the column.
  400. </summary>
  401. </member>
  402. <member name="P:Infragistics.Win.UltraWinDataSource.CellDataUpdatedEventArgs.NewValue">
  403. <summary>
  404. New value of the cell.
  405. </summary>
  406. </member>
  407. <member name="T:Infragistics.Win.UltraWinDataSource.InitializeDataRowEventArgs">
  408. <summary>
  409. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.InitializeDataRow"/> event.
  410. </summary>
  411. </member>
  412. <member name="M:Infragistics.Win.UltraWinDataSource.InitializeDataRowEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  413. <summary>
  414. Constructor.
  415. </summary>
  416. <param name="row"></param>
  417. </member>
  418. <member name="T:Infragistics.Win.UltraWinDataSource.InitializeRowsCollectionEventArgs">
  419. <summary>
  420. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.InitializeRowsCollection"/> event.
  421. </summary>
  422. </member>
  423. <member name="M:Infragistics.Win.UltraWinDataSource.InitializeRowsCollectionEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection)">
  424. <summary>
  425. Constructor.
  426. </summary>
  427. <param name="rows">The rows collection that is being initialized.</param>
  428. </member>
  429. <member name="P:Infragistics.Win.UltraWinDataSource.InitializeRowsCollectionEventArgs.Rows">
  430. <summary>
  431. Gets the row scollection that is being initialized.
  432. </summary>
  433. </member>
  434. <member name="T:Infragistics.Win.UltraWinDataSource.RowAddingEventArgs">
  435. <summary>
  436. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> event.
  437. </summary>
  438. </member>
  439. <member name="M:Infragistics.Win.UltraWinDataSource.RowAddingEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection,System.Int32)">
  440. <summary>
  441. Constructor.
  442. </summary>
  443. <param name="rows">The rows collection to which the row is being added.</param>
  444. <param name="index">the location in the collection at which to add the new row.</param>
  445. </member>
  446. <member name="P:Infragistics.Win.UltraWinDataSource.RowAddingEventArgs.Rows">
  447. <summary>
  448. Gets the rows collection to which the row is being added.
  449. </summary>
  450. </member>
  451. <member name="P:Infragistics.Win.UltraWinDataSource.RowAddingEventArgs.Index">
  452. <summary>
  453. Specifies the location in the collection at which to add the new row. You can set this property to a new value to change the location where the new row will get added.
  454. </summary>
  455. </member>
  456. <member name="T:Infragistics.Win.UltraWinDataSource.RowAddedEventArgs">
  457. <summary>
  458. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> event.
  459. </summary>
  460. </member>
  461. <member name="M:Infragistics.Win.UltraWinDataSource.RowAddedEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  462. <summary>
  463. Constructor.
  464. </summary>
  465. <param name="row"></param>
  466. </member>
  467. <member name="T:Infragistics.Win.UltraWinDataSource.RowDeletingEventArgs">
  468. <summary>
  469. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleting"/> event.
  470. </summary>
  471. </member>
  472. <member name="M:Infragistics.Win.UltraWinDataSource.RowDeletingEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  473. <summary>
  474. Constructor.
  475. </summary>
  476. <param name="row">The row being deleted.</param>
  477. </member>
  478. <member name="P:Infragistics.Win.UltraWinDataSource.RowDeletingEventArgs.Row">
  479. <summary>
  480. Gets the row being deleted.
  481. </summary>
  482. </member>
  483. <member name="T:Infragistics.Win.UltraWinDataSource.RowDeletedEventArgs">
  484. <summary>
  485. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/> event.
  486. </summary>
  487. </member>
  488. <member name="M:Infragistics.Win.UltraWinDataSource.RowDeletedEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  489. <summary>
  490. Constructor.
  491. </summary>
  492. <param name="row"></param>
  493. </member>
  494. <member name="T:Infragistics.Win.UltraWinDataSource.RowBeginEditEventArgs">
  495. <summary>
  496. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowBeginEdit"/> event.
  497. </summary>
  498. </member>
  499. <member name="M:Infragistics.Win.UltraWinDataSource.RowBeginEditEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  500. <summary>
  501. Constructor.
  502. </summary>
  503. <param name="row"></param>
  504. </member>
  505. <member name="T:Infragistics.Win.UltraWinDataSource.RowEndEditEventArgs">
  506. <summary>
  507. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowEndEdit"/> event.
  508. </summary>
  509. </member>
  510. <member name="M:Infragistics.Win.UltraWinDataSource.RowEndEditEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  511. <summary>
  512. Constructor.
  513. </summary>
  514. <param name="row"></param>
  515. </member>
  516. <member name="T:Infragistics.Win.UltraWinDataSource.RowCancelEditEventArgs">
  517. <summary>
  518. Event args for <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowCancelEdit"/> event.
  519. </summary>
  520. </member>
  521. <member name="M:Infragistics.Win.UltraWinDataSource.RowCancelEditEventArgs.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  522. <summary>
  523. Constructor.
  524. </summary>
  525. <param name="row"></param>
  526. </member>
  527. <member name="T:Infragistics.Win.UltraWinDataSource.Design.IDataSourceDesignInfo">
  528. <summary>
  529. Interface implemented by UltraDataSource. For internal use only.
  530. </summary>
  531. </member>
  532. <member name="P:Infragistics.Win.UltraWinDataSource.Design.IDataSourceDesignInfo.DesignMode">
  533. <summary>
  534. When designing the UltraDataSource in the designer, we want to allow the
  535. binding manager to be able to add rows so that the data structure for
  536. child bands can be extracted properly.
  537. </summary>
  538. </member>
  539. <member name="P:Infragistics.Win.UltraWinDataSource.Design.IDataSourceDesignInfo.Initializing">
  540. <summary>
  541. For internal use only. A flag that's used by the UltraDataSource to suspend
  542. binding related notification while deserializing.
  543. </summary>
  544. </member>
  545. <member name="T:Infragistics.Win.UltraWinDataSource.Resources">
  546. <summary>
  547. Exposes a <see cref="T:Infragistics.Shared.ResourceCustomizer"/> instance for this assembly.
  548. </summary>
  549. <seealso cref="P:Infragistics.Win.UltraWinDataSource.Resources.Customizer"/>
  550. <seealso cref="T:Infragistics.Shared.ResourceCustomizer"/>
  551. </member>
  552. <member name="M:Infragistics.Win.UltraWinDataSource.Resources.GetString(System.String,System.Object[])">
  553. <summary>
  554. Returns the resource string using the specified name and default culture.
  555. </summary>
  556. <param name="name">Name of the string resource to return.</param>
  557. <param name="args">Arguments supplied to the string.Format method when formatting the string.</param>
  558. <returns>The resource string using the specified resource name and default culture.</returns>
  559. </member>
  560. <member name="M:Infragistics.Win.UltraWinDataSource.Resources.GetString(System.String)">
  561. <summary>
  562. Returns the resource string using the specified resource name and default culture. The string is then formatted using the arguments specified.
  563. </summary>
  564. <param name="name">Name of the string resource to return.</param>
  565. <returns>The resource string using the specified resource name and default culture.</returns>
  566. </member>
  567. <member name="M:Infragistics.Win.UltraWinDataSource.Resources.GetObject(System.String)">
  568. <summary>
  569. Returns the resource object using the specified name.
  570. </summary>
  571. <param name="name">Name of the resource item</param>
  572. <returns>An object containing the specified resource</returns>
  573. </member>
  574. <member name="P:Infragistics.Win.UltraWinDataSource.Resources.Customizer">
  575. <summary>
  576. Returns the <see cref="T:Infragistics.Shared.ResourceCustomizer"/> for this assembly.
  577. </summary>
  578. <seealso cref="T:Infragistics.Shared.ResourceCustomizer"/>
  579. </member>
  580. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataBand">
  581. <summary>
  582. UltraDataBand class. Represents a band (analogous to a table) in the data structure of the UltraDataSource.
  583. </summary>
  584. <remarks>
  585. <p class="body">
  586. An <b>UltraDataBand</b> defines columns and child bands.
  587. Use the <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.Band"/> property to get the top-most band.
  588. You can add columns to a band using its <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.Columns"/> collection.
  589. You can also define one or more child bands using its <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/>
  590. collection. This effectively lets you create a hierarchical data structure.
  591. </p>
  592. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.Band"/>
  593. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.Columns"/>
  594. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/>
  595. </remarks>
  596. </member>
  597. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.#ctor(System.String)">
  598. <summary>
  599. Constructor used for serialization/deserialization.
  600. </summary>
  601. </member>
  602. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ShouldSerialize">
  603. <summary>
  604. Returns true if the object has some non-default settings.
  605. </summary>
  606. <returns>true if the object has some non-default settings.</returns>
  607. </member>
  608. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ShouldSerializeAllowAdd">
  609. <summary>
  610. Returns true if the <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowAdd"/> is set to its non-default value of false.
  611. </summary>
  612. <returns>Returns true if this property is not set to its default value</returns>
  613. </member>
  614. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ShouldSerializeAllowDelete">
  615. <summary>
  616. Returns true if the <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowDelete"/> is set to its non-default value of false.
  617. </summary>
  618. <returns>Returns true if this property is not set to its default value</returns>
  619. </member>
  620. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ShouldSerializeReadOnly">
  621. <summary>
  622. Returns true if the <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ReadOnly"/> is set to its non-default value of true.
  623. </summary>
  624. <returns>Returns true if this property is not set to its default value</returns>
  625. </member>
  626. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ShouldSerializeKey">
  627. <summary>
  628. Returns true if this property is not set to its default value. <b>ShouldSerializeKey</b> always returns False for the <b>UltraDataBand</b> object since the band keys are serialized via the key parameter to the constructor.
  629. </summary>
  630. </member>
  631. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ShouldSerializeColumns">
  632. <summary>
  633. Returns true if this property is not set to its default value
  634. </summary>
  635. <returns>Returns true if this property is not set to its default value</returns>
  636. </member>
  637. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ShouldSerializeChildBands">
  638. <summary>
  639. Returns true if this property is not set to its default value
  640. </summary>
  641. <returns>Returns true if this property is not set to its default value</returns>
  642. </member>
  643. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ResetCachedValues">
  644. <summary>
  645. Clears cell values of rows associated with this band. This will cause the UltraDataSource component to fire <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event for cells next time the values for those cells are needed.
  646. </summary>
  647. <remarks>
  648. <p class="body">
  649. You can also use the UltraDataRowsCollection's <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ResetCachedValues"/> method to
  650. clear the cached cell values of a particular row collection. UltraDataRow also exposes
  651. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValues"/> method.
  652. </p>
  653. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ResetCachedValues"/>
  654. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValues"/>
  655. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValue(System.Int32)"/>
  656. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Clear"/>
  657. </remarks>
  658. </member>
  659. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ResetAllowAdd">
  660. <summary>
  661. Resets the property to its default value of true.
  662. </summary>
  663. </member>
  664. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ResetAllowDelete">
  665. <summary>
  666. Resets the property to its default value of true.
  667. </summary>
  668. </member>
  669. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ResetReadOnly">
  670. <summary>
  671. Resets the property to its default value of true.
  672. </summary>
  673. </member>
  674. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ResetColumns">
  675. <summary>
  676. Clears the columns collection.
  677. </summary>
  678. </member>
  679. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ResetChildBands">
  680. <summary>
  681. Clears the child bands collection.
  682. </summary>
  683. </member>
  684. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.Reset">
  685. <summary>
  686. Resets the object to its default state.
  687. </summary>
  688. <remarks>
  689. <p class="body">
  690. <b>Note</b> that this method clears the columns and the child bands collections.
  691. </p>
  692. </remarks>
  693. </member>
  694. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.Move(Infragistics.Win.UltraWinDataSource.UltraDataBand,Infragistics.Win.RelativePosition)">
  695. <summary>
  696. Moves this band after or before the specified band depending upon the value of relative position parameter.
  697. </summary>
  698. <param name="relativeBand">The band object relative to which this band will be moved.</param>
  699. <param name="relativePosition">The relative position.</param>
  700. <remarks>
  701. <p class="body">
  702. You can use the <b>Move</b> method to change the order of bands in a bands collection.
  703. Note that this method is not supported on the root band since the root band doesn't
  704. belong to any bands collection as it never has any siblings.
  705. </p>
  706. <p class="body">
  707. The <b>UltraDataColumn</b> object also exposes <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.Move(Infragistics.Win.UltraWinDataSource.UltraDataColumn,Infragistics.Win.RelativePosition)"/> method
  708. that lets you change the order of columns in a columns collection.
  709. </p>
  710. </remarks>
  711. </member>
  712. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  713. <summary>
  714. Invoked during the serialization of the object.
  715. </summary>
  716. <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> used to obtain the serialized properties of the object</param>
  717. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  718. </member>
  719. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  720. <summary>
  721. Constructor used to deserialization to initialize a new instance of the class with the serialized property values
  722. </summary>
  723. <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> used to obtain the serialized properties of the object</param>
  724. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  725. </member>
  726. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.OnObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
  727. <summary>
  728. Fires when a property of this object or any of it's sub-objects changes.
  729. </summary>
  730. <param name="propChange">The Property change info which describes the chain of property changes.</param>
  731. </member>
  732. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ToString">
  733. <summary>
  734. Returns an empty string.
  735. </summary>
  736. <returns>An empty string.</returns>
  737. </member>
  738. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.Key">
  739. <summary>
  740. Overridden. The Key of the item in its collection. This proeprty specifies the name of the band.
  741. </summary>
  742. <remarks>
  743. <p class="body">
  744. The <b>Key</b> of a band is also used as the the list name of the row collection
  745. associated with the band. ITypedList's GetListName implementation returns this
  746. value. The keys have to be unique across all the bands.
  747. </p>
  748. </remarks>
  749. </member>
  750. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ParentCollection">
  751. <summary>
  752. Bands collection that contains this band object. If this band is the root
  753. band then this property will return <b>null</b> (<b>Nothing</b> in VB).
  754. </summary>
  755. </member>
  756. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ParentBand">
  757. <summary>
  758. Returns the parent band. If this band is the top most band, then ParentBand will return null.
  759. </summary>
  760. </member>
  761. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.DataSource">
  762. <summary>
  763. Returns the associated UltraDataSource component.
  764. </summary>
  765. </member>
  766. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowAdd">
  767. <summary>
  768. Indicates whether controls bound to this data source are allowed to add rows
  769. to row collections associated with this band.
  770. </summary>
  771. <remarks>
  772. <p class="body">
  773. <b>Note</b> that this property only controls whether the controls bound to this
  774. data source are allowed to add new rows. It does not control whether you can add
  775. rows to the data source directly to the <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection"/>.
  776. </p>
  777. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowAdd"/>
  778. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add"/>
  779. </remarks>
  780. </member>
  781. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowDelete">
  782. <summary>
  783. Indicates whether controls bound to this data source are allowed to delete rows
  784. from row collections associated with this band.
  785. </summary>
  786. <p class="body">
  787. <b>Note</b> that this property only controls whether the controls bound to this
  788. data source are allowed to add new rows. It does not control whether you can add
  789. rows to the data source directly to the <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection"/>.
  790. </p>
  791. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowDelete"/>
  792. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.RemoveAt(System.Int32)"/>
  793. </member>
  794. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ReadOnly">
  795. <summary>
  796. Indicates whether any modifications to data, including adding and deleting of rows, are allowed in row collections associated with this band.
  797. </summary>
  798. <remarks>
  799. <p class="body">Setting <b>ReadOnly</b> to true will prevent the user from modifying cell values as well as from adding and removing of rows regardless of <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowAdd"/> and <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowDelete"/> property settings. This property caues the IBindingList.ReadOnly implementation in UltraDataSource to return true.</p>
  800. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowAdd"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowDelete"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.ReadOnly"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ReadOnly"/>
  801. </remarks>
  802. </member>
  803. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.Columns">
  804. <summary>
  805. Columns associated with this band.
  806. </summary>
  807. <remarks>
  808. <p class="body">
  809. You can use the returned columns collection to add one or more columns.
  810. </p>
  811. <p class="body">
  812. <b>Note:</b> To add a field that represents a child band (child rows) add a
  813. an <b>UltraDataChildBand</b> to the <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/>
  814. collection.
  815. </p>
  816. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Add(System.String,System.Type)"/>
  817. </remarks>
  818. </member>
  819. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands">
  820. <summary>
  821. Returns a collection of bands that are child bands of this band.
  822. </summary>
  823. <remarks>
  824. <p class="body">
  825. You can use the <b>ChildBands</b> collection to add one or more
  826. child bands to a band. The root band can be accessed using the
  827. <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.Band"/> property of the UltraDataSource.
  828. </p>
  829. <seealso cref="T:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection"/>
  830. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.Band"/>
  831. </remarks>
  832. </member>
  833. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.Index">
  834. <summary>
  835. Retruns the index of the band in the parent collection. If this is the root
  836. band, returns -1 since the root band doesn't have a parent collection.
  837. </summary>
  838. </member>
  839. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataBand.UltraDataBandTypeConverter">
  840. <summary>
  841. UltraDataBand type converter.
  842. </summary>
  843. </member>
  844. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.UltraDataBandTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  845. <summary>
  846. Returns whether this converter can convert the object to the specified type, using the specified context.
  847. </summary>
  848. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  849. <param name="destinationType">A System.Type that represents the type you want to convert to.</param>
  850. <returns>true if this converter can perform the conversion; otherwise, false.</returns>
  851. </member>
  852. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.UltraDataBandTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  853. <summary>
  854. Converts the given value object to the specified type, using the specified
  855. context and culture information.
  856. </summary>
  857. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  858. <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture is assumed.</param>
  859. <param name="value">The System.Object to convert.</param>
  860. <param name="destinationType">The System.Type to convert the value parameter to.</param>
  861. <returns>An System.Object that represents the converted value.</returns>
  862. </member>
  863. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRootBand.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  864. <summary>
  865. Constructor used to deserialization to initialize a new instance of the class with the serialized property values
  866. </summary>
  867. <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> used to obtain the serialized properties of the object</param>
  868. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  869. </member>
  870. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRootBand.ShouldSerializeKey">
  871. <summary>
  872. Returns true if this property is not set to its default value.
  873. </summary>
  874. </member>
  875. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection">
  876. <summary>
  877. UltraDataBandsCollection class. Represents a collection of bands.
  878. </summary>
  879. <remarks>
  880. <p class="body"><b>UltraDataBandsCollection</b> class represents a collection of bands.</p>
  881. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/>
  882. </remarks>
  883. </member>
  884. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataBand)">
  885. <summary>
  886. Constructor.
  887. </summary>
  888. <param name="parentBand">The parent band.</param>
  889. </member>
  890. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.Add(System.String)">
  891. <summary>
  892. Adds a new band with the specified key to the collection.
  893. </summary>
  894. <param name="bandKey">Key of the new band.</param>
  895. <returns>Returns the new band.</returns>
  896. </member>
  897. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.Insert(System.Int32,System.String)">
  898. <summary>
  899. Adds a new band with the specified key to the collection at the specified location.
  900. </summary>
  901. <param name="index">Location in the collection at which to insert the band.</param>
  902. <param name="bandKey">Key of the new band.</param>
  903. <returns>Returns the new band.</returns>
  904. </member>
  905. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.Remove(System.String)">
  906. <summary>
  907. Removes the band with the specified key from the collection.
  908. </summary>
  909. <param name="bandKey">The key of the band to remove.</param>
  910. </member>
  911. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.Remove(Infragistics.Win.UltraWinDataSource.UltraDataBand)">
  912. <summary>
  913. Removes the specified band from the collection.
  914. </summary>
  915. <param name="band">The band to remove.</param>
  916. </member>
  917. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.RemoveAt(System.Int32)">
  918. <summary>
  919. Removes band at the specified location from the collection.
  920. </summary>
  921. <param name="index">The index of the band to remove.</param>
  922. </member>
  923. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.Clear">
  924. <summary>
  925. Removes all the bands from the collection.
  926. </summary>
  927. </member>
  928. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.AddRange(System.Object[])">
  929. <summary>
  930. AddRange method for serialization and deserialization.
  931. </summary>
  932. </member>
  933. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  934. <summary>
  935. Constructor used to deserialization to initialize a new instance of the class with the serialized property values
  936. </summary>
  937. <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> used to obtain the serialized properties of the object</param>
  938. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  939. </member>
  940. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)">
  941. <summary>
  942. Invoked when the deserialization of the component is completed.
  943. </summary>
  944. <param name="sender">Reserved</param>
  945. </member>
  946. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.OnObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
  947. <summary>
  948. Fires when a property of this object or any of it's sub-objects changes.
  949. </summary>
  950. <param name="propChange">The Property change info which describes the chain of property changes.</param>
  951. </member>
  952. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.ToString">
  953. <summary>
  954. Returns an empty string.
  955. </summary>
  956. <returns>An empty string.</returns>
  957. </member>
  958. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.ValidateKeyDoesNotExist(System.String,Infragistics.Shared.IKeyedSubObject)">
  959. <summary>
  960. Validates that the key doesn't already exist.
  961. </summary>
  962. <param name="key">The key to check</param>
  963. <param name="ignoreObject">Don't throw an exception if the key matches this item.</param>
  964. <exception cref="T:System.ArgumentException">Key already exists.</exception>
  965. </member>
  966. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.InitialCapacity">
  967. <summary>
  968. Specifies the initial capacity of the collection.
  969. </summary>
  970. </member>
  971. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.IsReadOnly">
  972. <summary>
  973. Returns false
  974. </summary>
  975. </member>
  976. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.AllowDuplicateKeys">
  977. <summary>
  978. Overridden. Always returns false since columns collection does not allow having two columns with the same key.
  979. </summary>
  980. </member>
  981. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.AllowEmptyKeys">
  982. <summary>
  983. Returns true if the collection allows items to be added that do not have key values.
  984. </summary>
  985. </member>
  986. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.ParentBand">
  987. <summary>
  988. Band this bands collection is a child of. Band returned by this property is the parent band of all the bands contained in this collection.
  989. </summary>
  990. </member>
  991. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.Item(System.String)">
  992. <summary>
  993. Indexer. Gets the band with the specified key.
  994. </summary>
  995. </member>
  996. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.Item(System.Int32)">
  997. <summary>
  998. Indexer. Gets the band with the specified key.
  999. </summary>
  1000. </member>
  1001. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandsCollectionUITypeEditor">
  1002. <summary>
  1003. BandsCollectionUITypeEditor prevents the default collection type editor
  1004. from displaying an ellipsis button.
  1005. </summary>
  1006. </member>
  1007. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandsCollectionUITypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
  1008. <summary>
  1009. Used to determine the type of UIEditor that will be displayed.
  1010. </summary>
  1011. <param name="context">ITypeDescriptorContext</param>
  1012. <returns>UITypeEditorEditStyle specifying the type of UIEditor.</returns>
  1013. </member>
  1014. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandsCollectionConverter">
  1015. <summary>
  1016. Summary description for UltraDataBandsCollectionConverter.
  1017. </summary>
  1018. </member>
  1019. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandsCollectionConverter.#ctor">
  1020. <summary>
  1021. constructor
  1022. </summary>
  1023. </member>
  1024. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandsCollectionConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
  1025. <summary>
  1026. Returns whether this object supports properties, using the specified context.
  1027. </summary>
  1028. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  1029. <returns>true if <see cref="M:System.ComponentModel.TypeConverter.GetProperties(System.Object)"/> should be called to find the properties of this object; otherwise, false.</returns>
  1030. </member>
  1031. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandsCollectionConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
  1032. <summary>
  1033. Returns a collection of properties for the type of array specified by the
  1034. value parameter, using the specified context and attributes.
  1035. </summary>
  1036. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  1037. <param name="value">An <see cref="T:System.Object"/> that specifies the type of array for which to get properties.</param>
  1038. <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
  1039. <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> with the properties that are exposed for this data type, or null if there are no properties.</returns>
  1040. </member>
  1041. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor">
  1042. <summary>
  1043. </summary>
  1044. </member>
  1045. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataBand,System.String)">
  1046. <summary>
  1047. constructor
  1048. </summary>
  1049. <param name="band"></param>
  1050. <param name="name"></param>
  1051. </member>
  1052. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.CanResetValue(System.Object)">
  1053. <summary>
  1054. Returns true
  1055. </summary>
  1056. <param name="component">The component to test for reset capability.</param>
  1057. <returns>Returns true</returns>
  1058. </member>
  1059. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.GetValue(System.Object)">
  1060. <summary>
  1061. Returns band object
  1062. </summary>
  1063. <param name="component">The component to test for reset capability.</param>
  1064. <returns>The band object.</returns>
  1065. </member>
  1066. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.ResetValue(System.Object)">
  1067. <summary>
  1068. Does nothing
  1069. </summary>
  1070. <param name="component">The component to test for reset capability.</param>
  1071. </member>
  1072. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.SetValue(System.Object,System.Object)">
  1073. <summary>
  1074. Does nothing
  1075. </summary>
  1076. <param name="component">The component with the property value that is to be set.</param>
  1077. <param name="value">The new value.</param>
  1078. </member>
  1079. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.ShouldSerializeValue(System.Object)">
  1080. <summary>
  1081. Returns false
  1082. </summary>
  1083. <param name="component">The component with the property to be examined for persistence.</param>
  1084. <returns>false</returns>
  1085. </member>
  1086. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.Category">
  1087. <summary>
  1088. Gets category
  1089. </summary>
  1090. </member>
  1091. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.ResourceName">
  1092. <summary>
  1093. Gets/SEts resource name
  1094. </summary>
  1095. </member>
  1096. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.ResourceValue">
  1097. <summary>
  1098. Gets resource value
  1099. </summary>
  1100. </member>
  1101. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.ComponentType">
  1102. <summary>
  1103. Gets the type of the component this propertyvis bound to.
  1104. </summary>
  1105. <returns>A <see cref="T:System.Type"/> that represents the type of component this property is bound
  1106. to. When the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.GetValue(System.Object)"/>
  1107. or <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.SetValue(System.Object,System.Object)"/>
  1108. methods are invoked, the object specified might be an instance of this type.
  1109. </returns>
  1110. </member>
  1111. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.IsReadOnly">
  1112. <summary>
  1113. Return false
  1114. </summary>
  1115. </member>
  1116. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandsCollection.UltraDataBandPropertyDescriptor.PropertyType">
  1117. <summary>
  1118. Gets the type of the property.
  1119. </summary>
  1120. <returns>A <see cref="T:System.Type"/> that represents the type of the property.</returns>
  1121. </member>
  1122. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataColumn">
  1123. <summary>
  1124. UltraDataColumn class. Represents a column in the data structure of the UltraDataSource.
  1125. </summary>
  1126. <remarks>
  1127. <p class="body">
  1128. You can define one or more columns using the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Add(System.String,System.Type)"/>
  1129. method of the <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection"/>.
  1130. </p>
  1131. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.Columns"/>
  1132. <seealso cref="T:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection"/>
  1133. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Add(System.String,System.Type)"/>
  1134. </remarks>
  1135. </member>
  1136. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.#ctor(System.String)">
  1137. <summary>
  1138. Constructor used for serialization/deserialization.
  1139. </summary>
  1140. </member>
  1141. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ResetCachedValues">
  1142. <summary>
  1143. Clears the cell values of rows associated with this column. This will cause the UltraDataSource componenet to fire <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event for cells next time the data for those cells is needed.
  1144. </summary>
  1145. </member>
  1146. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ResetReadOnly">
  1147. <summary>
  1148. Resets the property to its default value of true.
  1149. </summary>
  1150. </member>
  1151. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ResetDefaultValue">
  1152. <summary>
  1153. Resets the property to its default value of null.
  1154. </summary>
  1155. </member>
  1156. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ResetDataType">
  1157. <summary>
  1158. Resets the data type to its default value of type of string.
  1159. </summary>
  1160. </member>
  1161. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ResetAllowDBNull">
  1162. <summary>
  1163. Resets the AllowDBNull property its default value.
  1164. </summary>
  1165. </member>
  1166. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.Reset">
  1167. <summary>
  1168. Resets the object to its default state.
  1169. </summary>
  1170. </member>
  1171. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.Move(Infragistics.Win.UltraWinDataSource.UltraDataColumn,Infragistics.Win.RelativePosition)">
  1172. <summary>
  1173. Moves this column after or before the specified column depending upon the value of relative position parameter.
  1174. </summary>
  1175. <param name="relativeColumn">The column object relative to which this column will be moved.</param>
  1176. <param name="relativePosition">The relative position.</param>
  1177. <remarks>
  1178. <p class="body">
  1179. You can use the <b>Move</b> method to change the order of columns in a columns collection.
  1180. </p>
  1181. <p class="body">
  1182. The <b>UltraDataBand</b> object also exposes <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.Move(Infragistics.Win.UltraWinDataSource.UltraDataBand,Infragistics.Win.RelativePosition)"/> method
  1183. that lets you change the order of bands in a bands collection.
  1184. </p>
  1185. </remarks>
  1186. </member>
  1187. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ShouldSerialize">
  1188. <summary>
  1189. Returns true if the object has some non-default settings.
  1190. </summary>
  1191. <returns>true if the object has some non-default settings.</returns>
  1192. </member>
  1193. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ShouldSerializeReadOnly">
  1194. <summary>
  1195. Returns true if the <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ReadOnly"/> is set to its non-default value of true.
  1196. </summary>
  1197. <returns>Returns true if this property is not set to its default value</returns>
  1198. </member>
  1199. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ShouldSerializeKey">
  1200. <summary>
  1201. Returns true if this property is not set to its default value. <b>ShouldSerializeKey</b> always returns False for the <b>Band</b> object since the band key can never be changed.
  1202. </summary>
  1203. </member>
  1204. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ShouldSerializeDefaultValue">
  1205. <summary>
  1206. Returns true if DefaultValue is set to a non-null value.
  1207. </summary>
  1208. <returns>Returns true if this property is not set to its default value</returns>
  1209. </member>
  1210. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ShouldSerializeDataType">
  1211. <summary>
  1212. Returns true if the <b>DataType</b> property needs to be serialized.
  1213. </summary>
  1214. <returns>Returns true if this property is not set to its default value</returns>
  1215. </member>
  1216. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ShouldSerializeAllowDBNull">
  1217. <summary>
  1218. Returns true if the <b>AllowDBNull</b> property needs to be serialized.
  1219. </summary>
  1220. <returns>Returns true if this property is not set to its default value</returns>
  1221. </member>
  1222. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  1223. <summary>
  1224. Invoked during the serialization of the object.
  1225. </summary>
  1226. <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> used to obtain the serialized properties of the object</param>
  1227. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  1228. </member>
  1229. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  1230. <summary>
  1231. Constructor used to deserialization to initialize a new instance of the class with the serialized property values
  1232. </summary>
  1233. <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> used to obtain the serialized properties of the object</param>
  1234. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  1235. </member>
  1236. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.OnObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
  1237. <summary>
  1238. Fires when a property of this object or any of it's sub-objects changes.
  1239. </summary>
  1240. <param name="propChange">The Property change info which describes the chain of property changes.</param>
  1241. </member>
  1242. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ToString">
  1243. <summary>
  1244. Returns an empty string.
  1245. </summary>
  1246. <returns>An empty string.</returns>
  1247. </member>
  1248. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.Key">
  1249. <summary>
  1250. The Key of the item in its collection. This property specifies the name of the column.
  1251. </summary>
  1252. <remarks>
  1253. <p class="body">
  1254. The propertyDescriptor associated with this column will use the value of this
  1255. property as its name. In other words the bound controls will use this value
  1256. as the name of the column.
  1257. </p>
  1258. </remarks>
  1259. </member>
  1260. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.Band">
  1261. <summary>
  1262. Returns the band columns in this collection are associated with.
  1263. </summary>
  1264. </member>
  1265. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.DataType">
  1266. <summary>
  1267. Column's data type.
  1268. </summary>
  1269. </member>
  1270. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.DefaultValue">
  1271. <summary>
  1272. Default value that's used when no value is specified for a cell of this column.
  1273. </summary>
  1274. </member>
  1275. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ParentCollection">
  1276. <summary>
  1277. Returns the columns collection this column is associated with. Typically the returned columns collection would contain this column.
  1278. </summary>
  1279. </member>
  1280. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ReadOnly">
  1281. <summary>
  1282. Indicates whether modifying of cell contents is allowed in this column.
  1283. </summary>
  1284. <remarks>
  1285. <p class="body">Setting <b>ReadOnly</b> to true on an UltraDataColumn object will cause the associated PropertyDescriptor's IsReadOnly implementation to return true.</p>
  1286. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ReadOnly"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.ReadOnly"/>
  1287. </remarks>
  1288. </member>
  1289. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.Index">
  1290. <summary>
  1291. Retruns the index of the column in the parent collection.
  1292. </summary>
  1293. <remarks>
  1294. <p class="body">
  1295. The <b>Index</b> property returns the location of this column in the
  1296. <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection"/> that this column belongs to.
  1297. This property returns the same value as the
  1298. <b>UltraDataColumnsCollection.IndexOf</b> method of the
  1299. UltraDataColumnsCollection.
  1300. </p>
  1301. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ParentCollection"/>
  1302. </remarks>
  1303. </member>
  1304. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.AllowDBNull">
  1305. <summary>
  1306. Specifies whether the user is allowed to enter null values in the cells of this column.
  1307. </summary>
  1308. <remarks>
  1309. <p class="body">Specifies whether the user is allowed to enter null values in the cells of this column. More precisely, setting this property to <b>False</b> will cause the associated property descriptor to not accept null and DBNull values. You can still set null values through code regardless of this property setting.</p>
  1310. </remarks>
  1311. </member>
  1312. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataColumn.UltraDataColumnTypeConverter">
  1313. <summary>
  1314. UltraDataBand type converter.
  1315. </summary>
  1316. </member>
  1317. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.UltraDataColumnTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  1318. <summary>
  1319. Returns whether this converter can convert the object to the specified type, using the specified context.
  1320. </summary>
  1321. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  1322. <param name="destinationType">A System.Type that represents the type you want to convert to.</param>
  1323. <returns>true if this converter can perform the conversion; otherwise, false.</returns>
  1324. </member>
  1325. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumn.UltraDataColumnTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  1326. <summary>
  1327. Converts the given value object to the specified type, using the specified
  1328. context and culture information.
  1329. </summary>
  1330. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  1331. <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture is assumed.</param>
  1332. <param name="value">The System.Object to convert.</param>
  1333. <param name="destinationType">The System.Type to convert the value parameter to.</param>
  1334. <returns>An System.Object that represents the converted value.</returns>
  1335. </member>
  1336. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection">
  1337. <summary>
  1338. UltraDataColumnsCollection class. Represents a collection of columns.
  1339. </summary>
  1340. <remarks>
  1341. <p class="body"><b>UltraDataColumnsCollection</b> class represents a collection of columns.</p>
  1342. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.Columns"/>
  1343. </remarks>
  1344. </member>
  1345. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Add(System.String,System.Type)">
  1346. <summary>
  1347. Adds a new column with the specified key and specified data type.
  1348. </summary>
  1349. <param name="columnKey">Key of the new column.</param>
  1350. <param name="dataType">Column's data type.</param>
  1351. <returns>Returns the new column.</returns>
  1352. </member>
  1353. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Add(System.String)">
  1354. <summary>
  1355. Adds a new column with the specified key and string data type.
  1356. </summary>
  1357. <param name="columnKey">Key of the new column.</param>
  1358. <returns>Returns the new column.</returns>
  1359. </member>
  1360. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Insert(System.Int32,System.String,System.Type)">
  1361. <summary>
  1362. Adds a new column with the specified key and specified data type to the collection at the spcified location.
  1363. </summary>
  1364. <param name="index">Location in the collection at which to insert the band.</param>
  1365. <param name="columnKey">Key of the new column.</param>
  1366. <param name="dataType">Column's data type.</param>
  1367. <returns>Returns the new column.</returns>
  1368. </member>
  1369. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Remove(System.String)">
  1370. <summary>
  1371. Removes the column with the specified key from the collection.
  1372. </summary>
  1373. <param name="columnKey">A value that uniquely identifies an object in a collection.</param>
  1374. </member>
  1375. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Remove(Infragistics.Win.UltraWinDataSource.UltraDataColumn)">
  1376. <summary>
  1377. Removes the specified column from the collection.
  1378. </summary>
  1379. <param name="column">The column to remove from the collection.</param>
  1380. </member>
  1381. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.RemoveAt(System.Int32)">
  1382. <summary>
  1383. Removes column at the specified location from the collection.
  1384. </summary>
  1385. <param name="index">The index of hte column to remove.</param>
  1386. </member>
  1387. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Clear">
  1388. <summary>
  1389. Removes all the columns from the collection.
  1390. </summary>
  1391. </member>
  1392. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.AddRange(System.Object[])">
  1393. <summary>
  1394. AddRange method for serialization and deserialization.
  1395. </summary>
  1396. </member>
  1397. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  1398. <summary>
  1399. Constructor used to deserialization to initialize a new instance of the class with the serialized property values
  1400. </summary>
  1401. <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> used to obtain the serialized properties of the object</param>
  1402. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  1403. </member>
  1404. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)">
  1405. <summary>
  1406. Invoked after the entire object graph has been deserialized.
  1407. </summary>
  1408. <param name="sender">The object that initiated the callback. The functionality for the this parameter is not currently implemented.</param>
  1409. </member>
  1410. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.OnObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
  1411. <summary>
  1412. Fires when a property of this object or any of it's sub-objects changes.
  1413. </summary>
  1414. <param name="propChange">The Property change info which describes the chain of property changes.</param>
  1415. </member>
  1416. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.ToString">
  1417. <summary>
  1418. Returns an empty string.
  1419. </summary>
  1420. <returns>An empty string.</returns>
  1421. </member>
  1422. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.ValidateKeyDoesNotExist(System.String,Infragistics.Shared.IKeyedSubObject)">
  1423. <summary>
  1424. Validates that the key doesn't already exist.
  1425. </summary>
  1426. <param name="key">The key to check</param>
  1427. <param name="ignoreObject">Don't throw an exception if the key matches this item.</param>
  1428. <exception cref="T:System.ArgumentException">Key already exists.</exception>
  1429. </member>
  1430. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.InitialCapacity">
  1431. <summary>
  1432. Specifies the initial capacity of the collection.
  1433. </summary>
  1434. </member>
  1435. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.IsReadOnly">
  1436. <summary>
  1437. Returns false
  1438. </summary>
  1439. </member>
  1440. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.AllowDuplicateKeys">
  1441. <summary>
  1442. Overridden. Always returns false since columns collection does not allow having two columns with the same key.
  1443. </summary>
  1444. </member>
  1445. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.AllowEmptyKeys">
  1446. <summary>
  1447. Returns true if the collection allows items to be added that do not have key values.
  1448. </summary>
  1449. </member>
  1450. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Band">
  1451. <summary>
  1452. Band object this columns collection is associated with. Returned band's Columns would point to this columns collection.
  1453. </summary>
  1454. </member>
  1455. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Item(System.String)">
  1456. <summary>
  1457. Gets the column with the specified key.
  1458. </summary>
  1459. </member>
  1460. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.Item(System.Int32)">
  1461. <summary>
  1462. Gets the column at the specified location in the collection.
  1463. </summary>
  1464. </member>
  1465. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.CacheKeys">
  1466. <summary>
  1467. Determines whether to use a hash table to store the keys and objects.
  1468. </summary>
  1469. <remarks>By use a hash table, performance of methods like ValidateKeyDoesNotExist and GetItem can be significantly improvied.</remarks>
  1470. </member>
  1471. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnsCollectionUITypeEditor">
  1472. <summary>
  1473. ColumnsCollectionUITypeEditor prevents the default collection type editor
  1474. from displaying an ellipsis button.
  1475. </summary>
  1476. </member>
  1477. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnsCollectionUITypeEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
  1478. <summary>
  1479. Used to determine the type of UIEditor that will be displayed.
  1480. </summary>
  1481. <param name="context">ITypeDescriptorContext</param>
  1482. <returns>UITypeEditorEditStyle specifying the type of UIEditor.</returns>
  1483. </member>
  1484. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnsCollectionConverter">
  1485. <summary>
  1486. Summary description for ColumnsCollectionConverter.
  1487. </summary>
  1488. </member>
  1489. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnsCollectionConverter.#ctor">
  1490. <summary>
  1491. constructor
  1492. </summary>
  1493. </member>
  1494. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnsCollectionConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
  1495. <summary>
  1496. Returns whether this object supports properties, using the specified context.
  1497. </summary>
  1498. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  1499. <returns>true if <see cref="M:System.ComponentModel.TypeConverter.GetProperties(System.Object)"/> should be called to find the properties of this object; otherwise, false.</returns>
  1500. </member>
  1501. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnsCollectionConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
  1502. <summary>
  1503. Returns a collection of properties for the type of array specified by the
  1504. value parameter, using the specified context and attributes.
  1505. </summary>
  1506. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  1507. <param name="value">An <see cref="T:System.Object"/> that specifies the type of array for which to get properties.</param>
  1508. <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
  1509. <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> with the properties that are exposed for this data type, or null if there are no properties.</returns>
  1510. </member>
  1511. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor">
  1512. <summary>
  1513. </summary>
  1514. </member>
  1515. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataColumn,System.String)">
  1516. <summary>
  1517. constructor
  1518. </summary>
  1519. <param name="column"></param>
  1520. <param name="name"></param>
  1521. </member>
  1522. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.CanResetValue(System.Object)">
  1523. <summary>
  1524. Returns true
  1525. </summary>
  1526. <param name="component">The component to test for reset capability.</param>
  1527. <returns>Returns true</returns>
  1528. </member>
  1529. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.GetValue(System.Object)">
  1530. <summary>
  1531. Returns column object
  1532. </summary>
  1533. <param name="component">The component to test for reset capability.</param>
  1534. <returns>The column object.</returns>
  1535. </member>
  1536. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.ResetValue(System.Object)">
  1537. <summary>
  1538. Does nothing
  1539. </summary>
  1540. <param name="component">The component to test for reset capability.</param>
  1541. </member>
  1542. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.SetValue(System.Object,System.Object)">
  1543. <summary>
  1544. Does nothing
  1545. </summary>
  1546. <param name="component">The component with the property value that is to be set.</param>
  1547. <param name="value">The new value.</param>
  1548. </member>
  1549. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.ShouldSerializeValue(System.Object)">
  1550. <summary>
  1551. Returns false
  1552. </summary>
  1553. <param name="component">The component with the property to be examined for persistence.</param>
  1554. <returns>false</returns>
  1555. </member>
  1556. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.Category">
  1557. <summary>
  1558. Gets category
  1559. </summary>
  1560. </member>
  1561. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.ResourceName">
  1562. <summary>
  1563. Gets/SEts resource name
  1564. </summary>
  1565. </member>
  1566. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.ResourceValue">
  1567. <summary>
  1568. Gets resource value
  1569. </summary>
  1570. </member>
  1571. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.ComponentType">
  1572. <summary>
  1573. Gets the type of the component this propertyvis bound to.
  1574. </summary>
  1575. <returns>A <see cref="T:System.Type"/> that represents the type of component this property is bound
  1576. to. When the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.GetValue(System.Object)"/>
  1577. or <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.SetValue(System.Object,System.Object)"/>
  1578. methods are invoked, the object specified might be an instance of this type.
  1579. </returns>
  1580. </member>
  1581. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.IsReadOnly">
  1582. <summary>
  1583. Return false
  1584. </summary>
  1585. </member>
  1586. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnsCollection.UltraDataColumnPropertyDescriptor.PropertyType">
  1587. <summary>
  1588. Gets the type of the property.
  1589. </summary>
  1590. <returns>A <see cref="T:System.Type"/> that represents the type of the property.</returns>
  1591. </member>
  1592. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor">
  1593. <summary>
  1594. Property descriptor associated with an <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataColumn"/> instance.
  1595. </summary>
  1596. </member>
  1597. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.CanResetValue(System.Object)">
  1598. <summary>
  1599. Returns true
  1600. </summary>
  1601. <param name="component">The component to test for reset capability.</param>
  1602. <returns>Returns true</returns>
  1603. </member>
  1604. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.GetValue(System.Object)">
  1605. <summary>
  1606. Returns the passed in object.
  1607. </summary>
  1608. <param name="component">The component to test for reset capability.</param>
  1609. <returns>the passed in object.</returns>
  1610. </member>
  1611. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.ResetValue(System.Object)">
  1612. <summary>
  1613. Does nothing
  1614. </summary>
  1615. <param name="component">The component to test for reset capability.</param>
  1616. </member>
  1617. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.SetValue(System.Object,System.Object)">
  1618. <summary>
  1619. Component is an instance of UltraGridRow for which to set
  1620. the value to the bound list.
  1621. </summary>
  1622. <param name="component">The component with the property value that is to be set.</param>
  1623. <param name="value">The new value.</param>
  1624. </member>
  1625. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.ShouldSerializeValue(System.Object)">
  1626. <summary>
  1627. Returns true
  1628. </summary>
  1629. <param name="component">The component with the property to be examined for persistence.</param>
  1630. <returns>true</returns>
  1631. </member>
  1632. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.Column">
  1633. <summary>
  1634. Returns the associated column.
  1635. </summary>
  1636. </member>
  1637. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.Name">
  1638. <summary>
  1639. Returns the key of the column.
  1640. </summary>
  1641. </member>
  1642. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.DisplayName">
  1643. <summary>
  1644. Gets the name that can be displayed in a window, such as a Properties window.
  1645. </summary>
  1646. <returns>The name to display for the member.</returns>
  1647. </member>
  1648. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.IsReadOnly">
  1649. <summary>
  1650. Return true if the column is read-only
  1651. </summary>
  1652. </member>
  1653. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.PropertyType">
  1654. <summary>
  1655. Gets the type of the property.
  1656. </summary>
  1657. <returns>A <see cref="T:System.Type"/> that represents the type of the property.</returns>
  1658. </member>
  1659. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.ComponentType">
  1660. <summary>
  1661. Gets the type of the component this propertyvis bound to.
  1662. </summary>
  1663. <returns>A <see cref="T:System.Type"/> that represents the type of component this property is bound
  1664. to. When the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.GetValue(System.Object)"/>
  1665. or <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataColumnPropertyDescriptor.SetValue(System.Object,System.Object)"/>
  1666. methods are invoked, the object specified might be an instance of this type.
  1667. </returns>
  1668. </member>
  1669. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor">
  1670. <summary>
  1671. Property descriptor associated with an <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataBand"/> instance.
  1672. </summary>
  1673. </member>
  1674. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.CanResetValue(System.Object)">
  1675. <summary>
  1676. Returns true
  1677. </summary>
  1678. <param name="component">The component to test for reset capability.</param>
  1679. <returns>Returns true</returns>
  1680. </member>
  1681. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.GetValue(System.Object)">
  1682. <summary>
  1683. Returns the passed in object.
  1684. </summary>
  1685. <param name="component">The component to test for reset capability.</param>
  1686. <returns>the passed in object.</returns>
  1687. </member>
  1688. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.ResetValue(System.Object)">
  1689. <summary>
  1690. Does nothing
  1691. </summary>
  1692. <param name="component">The component to test for reset capability.</param>
  1693. </member>
  1694. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.SetValue(System.Object,System.Object)">
  1695. <summary>
  1696. Component is an instance of UltraGridRow for which to set
  1697. the value to the bound list.
  1698. </summary>
  1699. <param name="component">The component with the property value that is to be set.</param>
  1700. <param name="value">The new value.</param>
  1701. </member>
  1702. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.ShouldSerializeValue(System.Object)">
  1703. <summary>
  1704. Returns true
  1705. </summary>
  1706. <param name="component">The component with the property to be examined for persistence.</param>
  1707. <returns>true</returns>
  1708. </member>
  1709. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.Band">
  1710. <summary>
  1711. Retruns the associated band.
  1712. </summary>
  1713. </member>
  1714. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.Name">
  1715. <summary>
  1716. Returns the name of the band.
  1717. </summary>
  1718. </member>
  1719. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.IsReadOnly">
  1720. <summary>
  1721. Return true if the band is read-only
  1722. </summary>
  1723. </member>
  1724. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.PropertyType">
  1725. <summary>
  1726. Gets the type of the property.
  1727. </summary>
  1728. <returns>A <see cref="T:System.Type"/> that represents the type of the property.</returns>
  1729. </member>
  1730. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.ComponentType">
  1731. <summary>
  1732. Gets the type of the component this propertyvis bound to.
  1733. </summary>
  1734. <returns>A <see cref="T:System.Type"/> that represents the type of component this property is bound
  1735. to. When the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.GetValue(System.Object)"/>
  1736. or <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataBandPropertyDescriptor.SetValue(System.Object,System.Object)"/>
  1737. methods are invoked, the object specified might be an instance of this type.
  1738. </returns>
  1739. </member>
  1740. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataRow">
  1741. <summary>
  1742. Represents a row in the UltraDataSource.
  1743. </summary>
  1744. <remarks>
  1745. <p class="body">
  1746. You can add one or more rows to a row collection using the
  1747. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add"/> method of the <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection"/>.
  1748. </p>
  1749. <seealso cref="T:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection"/>
  1750. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.Rows"/>
  1751. </remarks>
  1752. </member>
  1753. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection)">
  1754. <summary>
  1755. Constructor.
  1756. </summary>
  1757. <param name="parentCollection">The parent colletion to which this row belongs.</param>
  1758. </member>
  1759. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.#ctor(System.Object[],System.Object[],System.Object)">
  1760. <summary>
  1761. Constructor for Deserialization
  1762. </summary>
  1763. <remarks>This constructor is for internal infrastructure purposes and should not be used.</remarks>
  1764. <param name="rowData">The row data.</param>
  1765. <param name="childIslands">The child islands</param>
  1766. <param name="tag">The Tag of the row</param>
  1767. </member>
  1768. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.#ctor(System.Object[],System.Object[])">
  1769. <summary>
  1770. Constructor for Deserialization
  1771. </summary>
  1772. <remarks>This constructor is for internal infrastructure purposes and should not be used.</remarks>
  1773. <param name="rowData">The row data.</param>
  1774. <param name="childIslands">The child islands</param>
  1775. </member>
  1776. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.#ctor(System.Object[])">
  1777. <summary>
  1778. Constructor for Deserialization
  1779. </summary>
  1780. <remarks>This constructor is for internal infrastructure purposes and should not be used.</remarks>
  1781. <param name="rowData">The row data.</param>
  1782. </member>
  1783. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.#ctor(System.Object[],System.Object)">
  1784. <summary>
  1785. Constructor for Deserialization
  1786. </summary>
  1787. <remarks>This constructor is for internal infrastructure purposes and should not be used.</remarks>
  1788. <param name="rowData">The row data.</param>
  1789. <param name="tag">The Tag of the row</param>
  1790. </member>
  1791. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ShouldSerializeTag">
  1792. <summary>
  1793. Returns true if the tag value is a string or a primitive type.
  1794. </summary>
  1795. </member>
  1796. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.GetCellValue(System.Int32)">
  1797. <summary>
  1798. Gets the cell value associated with the specified column.
  1799. </summary>
  1800. <param name="columnIndex">The index of the column whose value to get.</param>
  1801. <remarks>
  1802. <p class="body">
  1803. Sets the cell value associated with the specified column. This overload does not raise the
  1804. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event if the cell value has not been set.
  1805. </p>
  1806. </remarks>
  1807. <returns>The value of the cell.</returns>
  1808. </member>
  1809. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.GetCellValue(System.String)">
  1810. <summary>
  1811. Gets the cell value associated with the specified column.
  1812. </summary>
  1813. <param name="columnKey">The key of the column whose value to get.</param>
  1814. <remarks>
  1815. <p class="body">
  1816. Sets the cell value associated with the specified column. This overload does not raise the
  1817. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event if the cell value has not been set.
  1818. </p>
  1819. </remarks>
  1820. <returns>The value of the cell.</returns>
  1821. </member>
  1822. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.GetCellValue(Infragistics.Win.UltraWinDataSource.UltraDataColumn)">
  1823. <summary>
  1824. Gets the cell value associated with the specified column.
  1825. </summary>
  1826. <param name="column">The column whose value to get.</param>
  1827. <remarks>
  1828. <p class="body">
  1829. Sets the cell value associated with the specified column. This overload does not raise the
  1830. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event if the cell value has not been set.
  1831. </p>
  1832. </remarks>
  1833. <returns>The value of the cell.</returns>
  1834. </member>
  1835. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.GetCellValue(System.Int32,System.Boolean)">
  1836. <summary>
  1837. Gets the cell value associated with the specified column.
  1838. </summary>
  1839. <param name="columnIndex">The index of the column whose value to get.</param>
  1840. <param name="raiseCellDataRequestedEvent">Specifies whether to raise the
  1841. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event if the cell's value has not
  1842. been set.</param>
  1843. <returns>The value of the cell.</returns>
  1844. </member>
  1845. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.GetCellValue(System.String,System.Boolean)">
  1846. <summary>
  1847. Gets the cell value associated with the specified column.
  1848. </summary>
  1849. <param name="columnKey">The key of the column whose value to get.</param>
  1850. <param name="raiseCellDataRequestedEvent">Specifies whether to raise the
  1851. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event if the cell's value has not
  1852. been set.</param>
  1853. <returns>The value of the cell.</returns>
  1854. </member>
  1855. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.GetCellValue(Infragistics.Win.UltraWinDataSource.UltraDataColumn,System.Boolean)">
  1856. <summary>
  1857. Gets the cell value associated with the specified column.
  1858. </summary>
  1859. <param name="column">The column whose value to get.</param>
  1860. <param name="raiseCellDataRequestedEvent">Specifies whether to raise the
  1861. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event if the cell's value has not
  1862. been set.</param>
  1863. <returns>The value of the cell.</returns>
  1864. </member>
  1865. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.SetCellValue(System.Int32,System.Object)">
  1866. <summary>
  1867. Sets the cell value associated with the specified column.
  1868. </summary>
  1869. <param name="columnIndex">The index of the column whose value to set.</param>
  1870. <param name="value">The new cell value.</param>
  1871. <remarks>
  1872. <p class="body">
  1873. Sets the cell value associated with the specified column. This overload does not raise the
  1874. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated"/> events.
  1875. </p>
  1876. </remarks>
  1877. </member>
  1878. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.SetCellValue(System.String,System.Object)">
  1879. <summary>
  1880. Sets the cell value associated with the specified column.
  1881. </summary>
  1882. <param name="columnKey">The key of the column whose value to set.</param>
  1883. <param name="value">The new cell value.</param>
  1884. <remarks>
  1885. <p class="body">
  1886. Sets the cell value associated with the specified column. This overload does not raise the
  1887. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated"/> events.
  1888. </p>
  1889. </remarks>
  1890. </member>
  1891. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.SetCellValue(Infragistics.Win.UltraWinDataSource.UltraDataColumn,System.Object)">
  1892. <summary>
  1893. Sets the cell value associated with the specified column.
  1894. </summary>
  1895. <param name="column">The column whose value to set.</param>
  1896. <param name="value">The new cell value.</param>
  1897. <remarks>
  1898. <p class="body">
  1899. Sets the cell value associated with the specified column. This overload does not raise the
  1900. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated"/> events.
  1901. </p>
  1902. </remarks>
  1903. </member>
  1904. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.SetCellValue(System.Int32,System.Object,System.Boolean)">
  1905. <summary>
  1906. Sets the cell value associated with the specified column.
  1907. </summary>
  1908. <param name="columnIndex">The index of the column whose value to set.</param>
  1909. <param name="value">The new cell value.</param>
  1910. <param name="raiseCellUpdateEvents">Specifies whether to raise the
  1911. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated"/>
  1912. events.</param>
  1913. </member>
  1914. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.SetCellValue(System.String,System.Object,System.Boolean)">
  1915. <summary>
  1916. Sets the cell value associated with the specified column.
  1917. </summary>
  1918. <param name="columnKey">The key of the column whose value to set.</param>
  1919. <param name="value">The new cell value.</param>
  1920. <param name="raiseCellUpdateEvents">Specifies whether to raise the
  1921. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated"/>
  1922. events.</param>
  1923. </member>
  1924. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.SetCellValue(Infragistics.Win.UltraWinDataSource.UltraDataColumn,System.Object,System.Boolean)">
  1925. <summary>
  1926. Sets the cell value associated with the specified column.
  1927. </summary>
  1928. <param name="column">The column whose value to set.</param>
  1929. <param name="value">The new cell value.</param>
  1930. <param name="raiseCellUpdateEvents">Specifies whether to raise the
  1931. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated"/>
  1932. events.</param>
  1933. </member>
  1934. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.GetChildRows(System.String)">
  1935. <summary>
  1936. Gets the child rows associated with the child band with the specified key in the child bands collection of the row's band.
  1937. </summary>
  1938. <param name="childBandKey">Child band key. Child bands collection returned by <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/> property of this row's band must contain an entry with this key.</param>
  1939. <returns>Returns the child rows.</returns>
  1940. <remarks>
  1941. <p class="body">
  1942. The row's band must have a child band defined with the specified key. The
  1943. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/> property of the <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataBand"/>
  1944. is used to define the child bands.
  1945. </p>
  1946. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/>
  1947. </remarks>
  1948. </member>
  1949. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.GetChildRows(System.Int32)">
  1950. <summary>
  1951. Gets the child rows associated with the child band at the childBandIndex location in the child bands collection of the row's band.
  1952. </summary>
  1953. <param name="childBandIndex">Index in the child bands collection returned by <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/> property of this row's band.</param>
  1954. <returns>Returns the child rows.</returns>
  1955. <remarks>
  1956. <p class="body">
  1957. The row's band must have child bands defined. The
  1958. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/> property of the <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataBand"/>
  1959. is used to define the child bands.
  1960. </p>
  1961. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/>
  1962. </remarks>
  1963. </member>
  1964. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.GetChildRows(Infragistics.Win.UltraWinDataSource.UltraDataBand)">
  1965. <summary>
  1966. Gets the child rows for the specified child band.
  1967. </summary>
  1968. <param name="childBand">Child rows associated with this child band will be returned.</param>
  1969. <returns>The child rows of the specified child band.</returns>
  1970. <remarks>
  1971. <p class="body">
  1972. The specified band must be a child band of the band associated with this row.
  1973. The <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/> property of the <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataBand"/>
  1974. is used to define the child bands.
  1975. </p>
  1976. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/>
  1977. </remarks>
  1978. </member>
  1979. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValue(System.Int32)">
  1980. <summary>
  1981. Clears the cached cell value associated with the column with the specified index. This will result in the component raising <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event for the cell the next time the cell value is needed
  1982. </summary>
  1983. <param name="columnIndex">Specifies the index of the column whose cell value is to be cleared.</param>
  1984. <remarks>
  1985. <p class="body">
  1986. You can use the UltraDataRow's <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValues"/> method to clear
  1987. values of all cells. The <b>UltraDataRowsCollection</b> also exposes
  1988. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ResetCachedValues"/> method that lets you clear
  1989. cell values of all rows in a row collection.
  1990. </p>
  1991. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValues"/>
  1992. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ResetCachedValues"/>
  1993. </remarks>
  1994. </member>
  1995. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValue(System.String)">
  1996. <summary>
  1997. Clears the cached cell value associated with the column with the specified key. This will result in the component raising <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event for the cell the next time the cell value is needed
  1998. </summary>
  1999. <param name="columnKey">Specifies the index of the column whose cell value is to be cleared.</param>
  2000. <remarks>
  2001. <p class="body">
  2002. You can use the UltraDataRow's <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValues"/> method to clear
  2003. values of all cells. The <b>UltraDataRowsCollection</b> also exposes
  2004. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ResetCachedValues"/> method that lets you clear
  2005. cell values of all rows in a row collection.
  2006. </p>
  2007. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValues"/>
  2008. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ResetCachedValues"/>
  2009. </remarks>
  2010. </member>
  2011. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValue(Infragistics.Win.UltraWinDataSource.UltraDataColumn)">
  2012. <summary>
  2013. Clears the cached cell value associated with the specified column. This will result in the component raising <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event for the cell the next time the cell value is needed.
  2014. </summary>
  2015. <param name="column">Specifies the column whose cell value is to be cleared.</param>
  2016. <remarks>
  2017. <p class="body">
  2018. You can use the UltraDataRow's <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValues"/> method to clear
  2019. values of all cells. The <b>UltraDataRowsCollection</b> also exposes
  2020. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ResetCachedValues"/> method that lets you clear
  2021. cell values of all rows in a row collection.
  2022. </p>
  2023. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValues"/>
  2024. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ResetCachedValues"/>
  2025. </remarks>
  2026. </member>
  2027. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValues">
  2028. <summary>
  2029. Clears all the cached cell values. This will result in the component raising <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event for the cells of this row the next time the cell values are needed.
  2030. </summary>
  2031. <remarks>
  2032. <p class="body">
  2033. You can use the UltraDataRow's <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValue(System.Int32)"/> method to clear
  2034. the cell value of a specific column.
  2035. </p>
  2036. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValue(System.Int32)"/>
  2037. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ResetCachedValues"/>
  2038. </remarks>
  2039. </member>
  2040. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  2041. <summary>
  2042. Gets serialization information with all of the non-default information
  2043. required to reinstantiate the object.
  2044. </summary>
  2045. <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> used to obtain the serialized properties of the object</param>
  2046. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  2047. </member>
  2048. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  2049. <summary>
  2050. Constructor used to deserialization to initialize a new instance of the class with the serialized property values
  2051. </summary>
  2052. <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> used to obtain the serialized properties of the object</param>
  2053. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  2054. </member>
  2055. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRow.Band">
  2056. <summary>
  2057. Gets the band associated with this row.
  2058. </summary>
  2059. </member>
  2060. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRow.ParentCollection">
  2061. <summary>
  2062. Returns the parent collection.
  2063. </summary>
  2064. </member>
  2065. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRow.ParentRow">
  2066. <summary>
  2067. Gets the parent row.
  2068. </summary>
  2069. </member>
  2070. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRow.DataSource">
  2071. <summary>
  2072. Gets the associated UltraDataSource component.
  2073. </summary>
  2074. </member>
  2075. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRow.Tag">
  2076. <summary>
  2077. Gets or sets the tag. The tag property can be used to logically attach another object or value to this object.
  2078. </summary>
  2079. </member>
  2080. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRow.Index">
  2081. <summary>
  2082. Index of this row in the parent collection.
  2083. </summary>
  2084. </member>
  2085. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRow.Item(System.Int32)">
  2086. <summary>
  2087. Gets or sets the cell value associated with the column with the specified index.
  2088. </summary>
  2089. </member>
  2090. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRow.Item(System.String)">
  2091. <summary>
  2092. Gets or sets the cell value associated with the column with the specified key.
  2093. </summary>
  2094. </member>
  2095. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRow.Item(Infragistics.Win.UltraWinDataSource.UltraDataColumn)">
  2096. <summary>
  2097. Gets or sets the cell value associated with the specified column.
  2098. </summary>
  2099. </member>
  2100. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataRow.UltraDataRowTypeConverter">
  2101. <summary>
  2102. UltraDataRow type converter.
  2103. </summary>
  2104. </member>
  2105. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.UltraDataRowTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  2106. <summary>
  2107. Returns whether this converter can convert the object to the specified type, using the specified context.
  2108. </summary>
  2109. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  2110. <param name="destinationType">A System.Type that represents the type you want to convert to.</param>
  2111. <returns>true if this converter can perform the conversion; otherwise, false.</returns>
  2112. </member>
  2113. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.UltraDataRowTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  2114. <summary>
  2115. Converts the given value object to the specified type, using the specified
  2116. context and culture information.
  2117. </summary>
  2118. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  2119. <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture is assumed.</param>
  2120. <param name="value">The System.Object to convert.</param>
  2121. <param name="destinationType">The System.Type to convert the value parameter to.</param>
  2122. <returns>An System.Object that represents the converted value.</returns>
  2123. </member>
  2124. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection">
  2125. <summary>
  2126. UltraDataRowsCollection class. Contains one or more rows.
  2127. </summary>
  2128. <remarks>
  2129. <p class="body">
  2130. An <b>UltraDataRowsCollection</b> collection contains one or more
  2131. <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataRow"/> instances. It also implements
  2132. <b>IBindingList</b> and <b>ITypedList</b> .NET data binding interfaces.
  2133. </p>
  2134. <p class="body">
  2135. You can add one or more rows using the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add"/>
  2136. or <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Insert(System.Int32)"/> methods. You can also use the
  2137. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.SetCount(System.Int32)"/> method to specify that the
  2138. collection contain a specified number of rows. With <b>SetCount</b> you don't have to
  2139. call <b>Add</b> or <b>Insert</b> methods multiple times. Also <b>SetCount</b>
  2140. will lazily create rows when they are accessed thus making it more
  2141. efficient.
  2142. </p>
  2143. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add"/>
  2144. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Insert(System.Int32)"/>
  2145. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Remove(Infragistics.Win.UltraWinDataSource.UltraDataRow)"/>
  2146. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.SetCount(System.Int32)"/>
  2147. </remarks>
  2148. </member>
  2149. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataBand,Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  2150. <summary>
  2151. Constructor.
  2152. </summary>
  2153. <param name="band"></param>
  2154. <param name="parentRow"></param>
  2155. </member>
  2156. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.#ctor(Infragistics.Win.UltraWinDataSource.UltraDataRow[],System.Object)">
  2157. <summary>
  2158. Constructor.
  2159. </summary>
  2160. <param name="rows">An arrow of rows.</param>
  2161. <param name="tag">The Tag of the collection.</param>
  2162. </member>
  2163. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ShouldSerializeTag">
  2164. <summary>
  2165. Returns true if the tag value is a string or a primitive type.
  2166. </summary>
  2167. </member>
  2168. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.IndexOf(Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  2169. <summary>
  2170. Gets the index of the specified row in the collection.
  2171. </summary>
  2172. <param name="row">Object whose index should be returned</param>
  2173. <returns>The index of value if found in the list; otherwise, -1.</returns>
  2174. </member>
  2175. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Contains(Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  2176. <summary>
  2177. Indicates whether the specified row is contained in the collection.
  2178. </summary>
  2179. <param name="row">Object to evaluate</param>
  2180. <returns>true if the item is found in the list; otherwise, false.</returns>
  2181. </member>
  2182. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add">
  2183. <summary>
  2184. Adds a new row to the collection.
  2185. </summary>
  2186. <returns>Returns the new row that was added to the collection.</returns>
  2187. </member>
  2188. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add(System.Boolean)">
  2189. <summary>
  2190. Adds a new row to the collection.
  2191. </summary>
  2192. <param name="raiseAddEvents">Specifies whether to raise <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> events.</param>
  2193. <returns>Returns the new row that was added to the collection.</returns>
  2194. <remarks>
  2195. <p class="body"><b>Add</b> method creates a new row and adds it to the collection. If <b>raiseAddEvents</b> argument is true, <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> are raised. If <b>RowAdding</b> event is canceled, no new row is added to the collection and this method returns null.</p>
  2196. </remarks>
  2197. </member>
  2198. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add(System.Boolean,System.Boolean)">
  2199. <summary>
  2200. Adds a new row to the collection.
  2201. </summary>
  2202. <param name="raiseAddEvents">Specifies whether to raise <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> events.</param>
  2203. <param name="bypassEditState">If this parameter is specified as <b>True</b> then the added row will be put in Edit and AddNew states. When a row
  2204. is in Edit state it can be cancelled by calling ((IEditableObject)row).CancelEdit. The end user can cancel
  2205. such a row by hitting Escape key twice on the row (if the row were being displayed in an UltraGrid or DataGrid).
  2206. Cancelling a row in edit state reverts the cell values to their original values (as they
  2207. were when the BeginEdit was called). When a row in AddNew state is canceled, it's
  2208. removed from the collection. Overloads of this method that do not take this parameter default it to <b>True</b>.</param>
  2209. <returns>Returns the new row that was added to the collection.</returns>
  2210. <remarks>
  2211. <p class="body"><b>Add</b> method creates a new row and adds it to the collection. If <b>raiseAddEvents</b> argument is true, <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> are raised. If <b>RowAdding</b> event is canceled, no new row is added to the collection and this method returns null.</p>
  2212. </remarks>
  2213. </member>
  2214. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add(System.Object[])">
  2215. <summary>
  2216. Adds a new row to the collection.
  2217. </summary>
  2218. <param name="cellValues">Specifies the cell values with which to initialize the new row. An exception is thrown if the array is null or has more elements thant the number of columns or if a value cannot be converted to the data type of the corresponding column.</param>
  2219. <returns>Returns the new row that was added to the collection.</returns>
  2220. </member>
  2221. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add(System.Boolean,System.Object[])">
  2222. <summary>
  2223. Adds a new row to the collection.
  2224. </summary>
  2225. <param name="raiseAddEvents">Specifies whether to raise <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> events.</param>
  2226. <param name="cellValues">Specifies the cell values with which to initialize the new row. An exception is thrown if the array is null or has more elements thant the number of columns or if a value cannot be converted to the data type of the corresponding column.</param>
  2227. <returns>Returns the new row that was added to the collection.</returns>
  2228. <remarks>
  2229. <p class="body"><b>Add</b> method creates a new row and adds it to the collection. If <b>raiseAddEvents</b> argument is true, <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> are raised. If <b>RowAdding</b> event is canceled, no new row is added to the collection and this method returns null.</p>
  2230. </remarks>
  2231. </member>
  2232. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add(System.Boolean,System.Object[],System.Boolean)">
  2233. <summary>
  2234. Adds a new row to the collection.
  2235. </summary>
  2236. <param name="raiseAddEvents">Specifies whether to raise <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> events. Overloads of this method that do not take this parameter default it to <b>False</b>.</param>
  2237. <param name="cellValues">Specifies the cell values with which to initialize the new row. An exception is thrown if the array is null or has more elements thant the number of columns or if a value cannot be converted to the data type of the corresponding column.</param>
  2238. <param name="bypassEditState">If this parameter is specified as <b>True</b> then the added row will be put in Edit and AddNew states. When a row
  2239. is in Edit state it can be cancelled by calling ((IEditableObject)row).CancelEdit. The end user can cancel
  2240. such a row by hitting Escape key twice on the row (if the row were being displayed in an UltraGrid or DataGrid).
  2241. Cancelling a row in edit state reverts the cell values to their original values (as they
  2242. were when the BeginEdit was called). When a row in AddNew state is canceled, it's
  2243. removed from the collection. Overloads of this method that do not take this parameter default it to <b>True</b>.</param>
  2244. <returns>Returns the new row that was added to the collection.</returns>
  2245. <remarks>
  2246. <p class="body"><b>Add</b> method creates a new row and adds it to the collection. If <b>raiseAddEvents</b> argument is true, <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> are raised. If <b>RowAdding</b> event is canceled, no new row is added to the collection and this method returns null.</p>
  2247. </remarks>
  2248. </member>
  2249. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Insert(System.Int32)">
  2250. <summary>
  2251. Adds a new row to the collection at the specified location.
  2252. </summary>
  2253. <param name="index">Location in the collection at which to add the new row to.</param>
  2254. <returns>Returns the new row that was added to the collection.</returns>
  2255. </member>
  2256. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Insert(System.Int32,System.Boolean)">
  2257. <summary>
  2258. Adds a new row to the collection at the spcified location.
  2259. </summary>
  2260. <param name="index">Location in the collection at which to add the new row to.</param>
  2261. <param name="raiseAddEvents">Specifies whether to raise <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> events.</param>
  2262. <returns>Returns the new row that was added to the collection.</returns>
  2263. <remarks>
  2264. <p class="body"><b>Insert</b> method creates a new row and adds it to the collection at the specified location. If <b>raiseAddEvents</b> argument is true, <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> are raised. If <b>RowAdding</b> event is canceled, no new row is added to the collection and this method returns null.</p>
  2265. </remarks>
  2266. </member>
  2267. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Insert(System.Int32,System.Boolean,System.Boolean)">
  2268. <summary>
  2269. Adds a new row to the collection at the spcified location.
  2270. </summary>
  2271. <param name="index">Location in the collection at which to add the new row to.</param>
  2272. <param name="raiseAddEvents">Specifies whether to raise <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> events.</param>
  2273. <param name="bypassEditState">If this parameter is specified as <b>True</b> then the added row will be put in Edit and AddNew states. When a row
  2274. is in Edit state it can be cancelled by calling ((IEditableObject)row).CancelEdit. The end user can cancel
  2275. such a row by hitting Escape key twice on the row (if the row were being displayed in an UltraGrid or DataGrid).
  2276. Cancelling a row in edit state reverts the cell values to their original values (as they
  2277. were when the BeginEdit was called). When a row in AddNew state is canceled, it's
  2278. removed from the collection. Overloads of this method that do not take this parameter default it to <b>True</b>.</param>
  2279. <returns>Returns the new row that was added to the collection.</returns>
  2280. <remarks>
  2281. <p class="body"><b>Insert</b> method creates a new row and adds it to the collection at the specified location. If <b>raiseAddEvents</b> argument is true, <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> are raised. If <b>RowAdding</b> event is canceled, no new row is added to the collection and this method returns null.</p>
  2282. </remarks>
  2283. </member>
  2284. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Insert(System.Int32,System.Object[])">
  2285. <summary>
  2286. Adds a new row to the collection at the specified location.
  2287. </summary>
  2288. <param name="index">Location in the collection at which to add the new row to.</param>
  2289. <param name="cellValues">Optional parameter. Specifies the cell values with which to initialize the new row. An exception is thrown if the array has more elements thant the number of columns or if a value cannot be converted to the data type of the corresponding column.</param>
  2290. <returns>Returns the new row that was added to the collection.</returns>
  2291. </member>
  2292. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Insert(System.Int32,System.Boolean,System.Object[])">
  2293. <summary>
  2294. Adds a new row to the collection at the spcified location.
  2295. </summary>
  2296. <param name="index">Location in the collection at which to add the new row to.</param>
  2297. <param name="raiseAddEvents">Specifies whether to raise <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> events.</param>
  2298. <param name="cellValues">Optional parameter. Specifies the cell values with which to initialize the new row. An exception is thrown if the array has more elements thant the number of columns or if a value cannot be converted to the data type of the corresponding column.</param>
  2299. <returns>Returns the new row that was added to the collection.</returns>
  2300. <remarks>
  2301. <p class="body"><b>Insert</b> method creates a new row and adds it to the collection at the specified location. If <b>raiseAddEvents</b> argument is true, <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> are raised. If <b>RowAdding</b> event is canceled, no new row is added to the collection and this method returns null.</p>
  2302. </remarks>
  2303. </member>
  2304. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Insert(System.Int32,System.Boolean,System.Object[],System.Boolean)">
  2305. <summary>
  2306. Adds a new row to the collection at the spcified location.
  2307. </summary>
  2308. <param name="index">Location in the collection at which to add the new row to.</param>
  2309. <param name="raiseAddEvents">Specifies whether to raise <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> events.</param>
  2310. <param name="cellValues">Optional parameter. Specifies the cell values with which to initialize the new row. An exception is thrown if the array has more elements thant the number of columns or if a value cannot be converted to the data type of the corresponding column.</param>
  2311. <param name="bypassEditState">If this parameter is specified as <b>True</b> then the added row will be put in Edit and AddNew states. When a row
  2312. is in Edit state it can be cancelled by calling ((IEditableObject)row).CancelEdit. The end user can cancel
  2313. such a row by hitting Escape key twice on the row (if the row were being displayed in an UltraGrid or DataGrid).
  2314. Cancelling a row in edit state reverts the cell values to their original values (as they
  2315. were when the BeginEdit was called). When a row in AddNew state is canceled, it's
  2316. removed from the collection. Overloads of this method that do not take this parameter default it to <b>True</b>.</param>
  2317. <returns>Returns the new row that was added to the collection.</returns>
  2318. <remarks>
  2319. <p class="body"><b>Insert</b> method creates a new row and adds it to the collection at the specified location. If <b>raiseAddEvents</b> argument is true, <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> are raised. If <b>RowAdding</b> event is canceled, no new row is added to the collection and this method returns null.</p>
  2320. </remarks>
  2321. </member>
  2322. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Remove(Infragistics.Win.UltraWinDataSource.UltraDataRow)">
  2323. <summary>
  2324. Removes the specified row from the collection. If the row doesn't exist in the collection, this method does nothing.
  2325. </summary>
  2326. <param name="row">Row to remove from the collection.</param>
  2327. </member>
  2328. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Remove(Infragistics.Win.UltraWinDataSource.UltraDataRow,System.Boolean)">
  2329. <summary>
  2330. Removes the specified row from the collection. If the row doesn't exist in the collection, this method does nothing.
  2331. </summary>
  2332. <param name="row">Row to remove from the collection.</param>
  2333. <param name="raiseDeleteEvents">Specifies whether to raise <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleting"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/> events.</param>
  2334. <remarks>
  2335. <p class="body"><b>Remove</b> method removes the specified row from the collection. If <b>raiseDeleteEvents</b> argument is true,<see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleting"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/> events are raised. If <b>RowDeleting</b> event is canceled, the row is not removed.</p>
  2336. </remarks>
  2337. </member>
  2338. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.RemoveAt(System.Int32)">
  2339. <summary>
  2340. Removes the row at the specified location.
  2341. </summary>
  2342. <param name="index">The index of the row to remove.</param>
  2343. </member>
  2344. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.RemoveAt(System.Int32,System.Boolean)">
  2345. <summary>
  2346. Removes the row at the specified location.
  2347. </summary>
  2348. <param name="index">The index of the row to remove.</param>
  2349. <param name="raiseDeleteEvents">Specifies whether to raise <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleting"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/> events.</param>
  2350. <remarks>
  2351. <p class="body"><b>RemoveAt</b> method removes the row at the specified location from the collection. If <b>raiseDeleteEvents</b> argument is true,<see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleting"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/> events are raised. If <b>RowDeleting</b> event is canceled, row is not removed.</p>
  2352. </remarks>
  2353. </member>
  2354. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Clear">
  2355. <summary>
  2356. Clears the rows collection.
  2357. </summary>
  2358. <remarks>
  2359. <p class="body"><b>Clear</b> method removes all the rows from the collection. This has the same effect as setting the count to 0 by calling <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.SetCount(System.Int32)"/>. Note: Calling this method does not raise RowDeleting and RowDeleted events.</p>
  2360. </remarks>
  2361. </member>
  2362. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.NotifyListReset">
  2363. <summary>
  2364. Fires ListChanged notification with the ListChanged type of Reset on the IBindingList implementation causing bound controls to refresh themselves by reloading the data.
  2365. </summary>
  2366. </member>
  2367. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.SetCount(System.Int32)">
  2368. <summary>
  2369. Sets the row count to the specified count. If the new count is greater than the current count, new rows are added at the end of the collection. If the new count is less than the current count, rows are removed from the end of the collection.
  2370. </summary>
  2371. <param name="newCount">The new count of the collection.</param>
  2372. <remarks>
  2373. <p class="body">Note: <b>SetCount</b> method does not raise add (RowAdding, RowAdded) or delete (RowDeleting, RowDeleted) events when it does add or remove items.</p>
  2374. </remarks>
  2375. </member>
  2376. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.SetCount(System.Int32,System.Boolean)">
  2377. <summary>
  2378. Sets the row count to the specified count. If the new count is greater than the current count, new rows are added at the end of the collection. If the new count is less than the current count, rows are removed from the end of the collection.
  2379. </summary>
  2380. <param name="newCount">The new count of the collection.</param>
  2381. <param name="forceNotifyListReset">If the count is different, <b>SetCount</b> always fires ListChanged notification with Reset as the ListChanged type on the IBindingList implementaion so the controls bound to this data source reload the data and refresh themselves. However if the count is the same, this method by default doesn't fire the ListChanged notification. Specify true for the <b>forceNotifyListReset</b> parameter to force this method to fire ListChanged even when the new count is the same as the old count.</param>
  2382. <remarks>
  2383. <p class="body">Note: <b>SetCount</b> method does not raise add (RowAdding, RowAdded) or delete (RowDeleting, RowDeleted) events when it does add or remove items.</p>
  2384. </remarks>
  2385. </member>
  2386. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ResetCachedValues">
  2387. <summary>
  2388. Clears all cached cell values. This will result in the component raising <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event for cells the next time the cell values are needed.
  2389. </summary>
  2390. <remarks>
  2391. <p class="body">
  2392. You can use the UltraDataRowsCollection's <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ResetCachedValues"/> method to
  2393. clear the cached cell values of a particular row collection. UltraDataRow also exposes
  2394. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValues"/> method.
  2395. </p>
  2396. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataBand.ResetCachedValues"/>
  2397. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValues"/>
  2398. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValue(System.Int32)"/>
  2399. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Clear"/>
  2400. </remarks>
  2401. </member>
  2402. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ShouldSerialize">
  2403. <summary>
  2404. Indicates if any of the property values differ from the default value.
  2405. </summary>
  2406. <returns>True if the object needs to be serialized.</returns>
  2407. </member>
  2408. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.AddRange(System.Object[])">
  2409. <summary>
  2410. AddRange method for serialization and deserialization.
  2411. </summary>
  2412. <param name="rows">An arrow of rows to add.</param>
  2413. </member>
  2414. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  2415. <summary>
  2416. Constructor used to deserialization to initialize a new instance of the class with the serialized property values
  2417. </summary>
  2418. <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> used to obtain the serialized properties of the object</param>
  2419. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  2420. </member>
  2421. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Band">
  2422. <summary>
  2423. Gets the band associated with the row collection.
  2424. </summary>
  2425. </member>
  2426. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ParentRow">
  2427. <summary>
  2428. Gets the parent row.
  2429. </summary>
  2430. </member>
  2431. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.DataSource">
  2432. <summary>
  2433. Associated UltraDataSource component.
  2434. </summary>
  2435. </member>
  2436. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Tag">
  2437. <summary>
  2438. Gets or sets the tag. The tag property can be used to logically attach another object or value to this object.
  2439. </summary>
  2440. </member>
  2441. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Count">
  2442. <summary>
  2443. Returns the number of items in this collection.
  2444. </summary>
  2445. <remarks>
  2446. <p class="body">
  2447. The <b>Count</b> property returns the number of rows contained in this row collection.
  2448. You can add one or more rows using the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add"/>
  2449. or <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Insert(System.Int32)"/> methods. You can also use the
  2450. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.SetCount(System.Int32)"/> method to specify that the
  2451. collection contain a specified number of rows. With <b>SetCount</b> you don't have to
  2452. call <b>Add</b> or <b>Insert</b> methods multiple times. Also <b>SetCount</b>
  2453. will lazily create rows when they are accessed thus making it more
  2454. efficient.
  2455. </p>
  2456. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.SetCount(System.Int32)"/>
  2457. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Add"/>
  2458. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Remove(Infragistics.Win.UltraWinDataSource.UltraDataRow)"/>
  2459. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Clear"/>
  2460. </remarks>
  2461. </member>
  2462. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.Item(System.Int32)">
  2463. <summary>
  2464. Indexer.
  2465. </summary>
  2466. </member>
  2467. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.ListChanged">
  2468. <summary>
  2469. IBindingList.ListChanged event implementation.
  2470. </summary>
  2471. </member>
  2472. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.UltraDataRowsCollectionTypeConverter">
  2473. <summary>
  2474. UltraDataRowsCollection type converter.
  2475. </summary>
  2476. </member>
  2477. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.UltraDataRowsCollectionTypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
  2478. <summary>
  2479. Returns whether this converter can convert the object to the specified type, using the specified context.
  2480. </summary>
  2481. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  2482. <param name="destinationType">A System.Type that represents the type you want to convert to.</param>
  2483. <returns>true if this converter can perform the conversion; otherwise, false.</returns>
  2484. </member>
  2485. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.UltraDataRowsCollectionTypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
  2486. <summary>
  2487. Converts the given value object to the specified type, using the specified
  2488. context and culture information.
  2489. </summary>
  2490. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  2491. <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture is assumed.</param>
  2492. <param name="value">The System.Object to convert.</param>
  2493. <param name="destinationType">The System.Type to convert the value parameter to.</param>
  2494. <returns>An System.Object that represents the converted value.</returns>
  2495. </member>
  2496. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataRootRowsCollection.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  2497. <summary>
  2498. Constructor used to deserialization to initialize a new instance of the class with the serialized property values
  2499. </summary>
  2500. <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> used to obtain the serialized properties of the object</param>
  2501. <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
  2502. </member>
  2503. <member name="T:Infragistics.Win.UltraWinDataSource.UltraDataSource">
  2504. <summary>
  2505. UltraDataSource component. UltraDataSource is a bindable data source that provides the ability to define hierarchical data structure and provides capability to serialize out the data.
  2506. </summary>
  2507. </member>
  2508. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.#ctor">
  2509. <summary>
  2510. Constructor. Initializes a new instance of <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/>.
  2511. </summary>
  2512. </member>
  2513. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.#ctor(System.ComponentModel.IContainer)">
  2514. <summary>
  2515. Constructor. Initializes a new instance of <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/>.
  2516. </summary>
  2517. <param name="container">An <see cref="T:System.ComponentModel.IContainer"/> that represents the container of the <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/></param>
  2518. </member>
  2519. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnCellDataRequested(Infragistics.Win.UltraWinDataSource.CellDataRequestedEventArgs)">
  2520. <summary>
  2521. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event.
  2522. </summary>
  2523. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2524. </member>
  2525. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnCellDataUpdating(Infragistics.Win.UltraWinDataSource.CellDataUpdatingEventArgs)">
  2526. <summary>
  2527. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> event.
  2528. </summary>
  2529. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2530. </member>
  2531. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnCellDataUpdated(Infragistics.Win.UltraWinDataSource.CellDataUpdatedEventArgs)">
  2532. <summary>
  2533. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated"/> event.
  2534. </summary>
  2535. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2536. </member>
  2537. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnInitializeDataRow(Infragistics.Win.UltraWinDataSource.InitializeDataRowEventArgs)">
  2538. <summary>
  2539. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.InitializeDataRow"/> event.
  2540. </summary>
  2541. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2542. </member>
  2543. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnInitializeRowsCollection(Infragistics.Win.UltraWinDataSource.InitializeRowsCollectionEventArgs)">
  2544. <summary>
  2545. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.InitializeRowsCollection"/> event.
  2546. </summary>
  2547. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2548. </member>
  2549. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnRowAdding(Infragistics.Win.UltraWinDataSource.RowAddingEventArgs)">
  2550. <summary>
  2551. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/> event.
  2552. </summary>
  2553. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2554. </member>
  2555. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnRowAdded(Infragistics.Win.UltraWinDataSource.RowAddedEventArgs)">
  2556. <summary>
  2557. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/> event.
  2558. </summary>
  2559. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2560. </member>
  2561. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnRowDeleting(Infragistics.Win.UltraWinDataSource.RowDeletingEventArgs)">
  2562. <summary>
  2563. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleting"/> event.
  2564. </summary>
  2565. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2566. </member>
  2567. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnRowDeleted(Infragistics.Win.UltraWinDataSource.RowDeletedEventArgs)">
  2568. <summary>
  2569. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/> event.
  2570. </summary>
  2571. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2572. </member>
  2573. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnRowBeginEdit(Infragistics.Win.UltraWinDataSource.RowBeginEditEventArgs)">
  2574. <summary>
  2575. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowBeginEdit"/> event.
  2576. </summary>
  2577. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2578. </member>
  2579. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnRowEndEdit(Infragistics.Win.UltraWinDataSource.RowEndEditEventArgs)">
  2580. <summary>
  2581. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowEndEdit"/> event.
  2582. </summary>
  2583. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2584. </member>
  2585. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnRowCancelEdit(Infragistics.Win.UltraWinDataSource.RowCancelEditEventArgs)">
  2586. <summary>
  2587. Fires the <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowCancelEdit"/> event.
  2588. </summary>
  2589. <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
  2590. </member>
  2591. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ShouldSerialize">
  2592. <summary>
  2593. Returns true if the object has some non-default settings.
  2594. </summary>
  2595. <returns>true if the object has some non-default settings.</returns>
  2596. </member>
  2597. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ShouldSerializeAllowAdd">
  2598. <summary>
  2599. Returns true if the <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowAdd"/> is set to its non-default value of false.
  2600. </summary>
  2601. <returns>Returns true if this property is not set to its default value</returns>
  2602. </member>
  2603. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ShouldSerializeAllowDelete">
  2604. <summary>
  2605. Returns true if the <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowDelete"/> is set to its non-default value of false.
  2606. </summary>
  2607. <returns>Returns true if this property is not set to its default value</returns>
  2608. </member>
  2609. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ShouldSerializeReadOnly">
  2610. <summary>
  2611. Returns true if the <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.ReadOnly"/> is set to its non-default value of true.
  2612. </summary>
  2613. <returns>Returns true if this property is not set to its default value</returns>
  2614. </member>
  2615. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ShouldSerializeBand">
  2616. <summary>
  2617. Returns true if the property needs to be serialized.
  2618. </summary>
  2619. <returns>Returns true if this property is not set to its default value</returns>
  2620. </member>
  2621. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ShouldSerializeRows">
  2622. <summary>
  2623. Returns true if the property needs to be serialized.
  2624. </summary>
  2625. <returns>Returns true if this property is not set to its default value</returns>
  2626. </member>
  2627. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ShouldSerializeUseBindingSource">
  2628. <summary>
  2629. Returns true if the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ShouldSerializeUseBindingSource"/> is set to its non-default value of true.
  2630. </summary>
  2631. <returns>Returns true if this property is not set to its default value</returns>
  2632. </member>
  2633. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ResetCachedValues">
  2634. <summary>
  2635. Clears all cached cell values. This will cause the UltraDataSource component to fire <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested"/> event for cells next time the values for those cells are needed.
  2636. </summary>
  2637. <remarks>
  2638. <p class="body">Note that calling ResetCachedValues clears the internal cache of data from the DataSource, but it does not notify bound controls. This means that if there is a control bound to the UltraDataSource (an UltraWinGrid, for example) that is currently displaying data, the control will not update it's display to reflect the new data unless something occurs to make it re-request the data. To force this to occur immediately, call the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection.NotifyListReset"/> method of the <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection"/>.</p>
  2639. </remarks>
  2640. </member>
  2641. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SuspendBindingNotifications">
  2642. <summary>
  2643. Suspends firing of IBindingList related notifications. This is useful if you want to make lot of modifications and temporarily prevent the controls bound to this data source from handling events associated with the data source modification.
  2644. </summary>
  2645. <remarks>
  2646. <p class="body">
  2647. This method along with the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SuspendBindingNotifications"/> can be used to temporarily
  2648. prevent UltraDataSource from firing ListChanged ItemChanged notifications. This can be useful in a situation
  2649. where a lot of cells need to be modified however for efficiency reasons you do not want to fire ListChanged
  2650. ItemChanged notification for every cell that's modified. In such a situation you would call
  2651. <b>SuspendBindingNotifications</b> and modify cells and then call <b>ResumeBindingNotifications</b>. When
  2652. ResumeBindingNotifications is called the UltraDataSource fires a single ListChanged Reset notification
  2653. for every row collection that was affected to cause the bound controls to reload the data. To prevent
  2654. the ResumeBindingNotifications from firing any notifications on resumption, use the overload of
  2655. ResumeBindingNotifications that takes in <b>fireNotifications</b> parameter. However note that if you
  2656. specify false for fireNotifications parameter then the bound controls may not reflect the changed
  2657. cell values. You will have to invalidate those controls manually yourself.
  2658. </p>
  2659. <p class="body">
  2660. Note: If the data source is bound to an UltraGrid, as expected, the UltraGrid will not fire InitializeRow
  2661. event for the rows you modify since it will not receive any ItemChanged notifications.
  2662. </p>
  2663. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.BindingNotificationsSuspended"/>, <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ResumeBindingNotifications"/>
  2664. </remarks>
  2665. </member>
  2666. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ResumeBindingNotifications">
  2667. <summary>
  2668. Resumes firing of IBindingList related notifications.
  2669. </summary>
  2670. <remarks>
  2671. <p class="body">
  2672. This method along with the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SuspendBindingNotifications"/> can be used to temporarily
  2673. prevent UltraDataSource from firing ListChanged ItemChanged notifications. This can be useful in a situation
  2674. where a lot of cells need to be modified however for efficiency reasons you do not want to fire ListChanged
  2675. ItemChanged notification for every cell that's modified. In such a situation you would call
  2676. <b>SuspendBindingNotifications</b> and modify cells and then call <b>ResumeBindingNotifications</b>. When
  2677. ResumeBindingNotifications is called the UltraDataSource fires a single ListChanged Reset notification
  2678. for every row collection that was affected to cause the bound controls to reload the data. To prevent
  2679. the ResumeBindingNotifications from firing any notifications on resumption, use the overload of
  2680. ResumeBindingNotifications that takes in <b>fireNotifications</b> parameter. However note that if you
  2681. specify false for fireNotifications parameter then the bound controls may not reflect the changed
  2682. cell values. You will have to invalidate those controls manually yourself.
  2683. </p>
  2684. <p class="body">
  2685. Note: If the data source is bound to an UltraGrid, as expected, the UltraGrid will not fire InitializeRow
  2686. event for the rows you modify since it will not receive any ItemChanged notifications.
  2687. </p>
  2688. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.BindingNotificationsSuspended"/>, <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SuspendBindingNotifications"/>
  2689. </remarks>
  2690. </member>
  2691. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ResumeBindingNotifications(System.Boolean)">
  2692. <summary>
  2693. Resumes firing of IBindingList related notifications.
  2694. </summary>
  2695. <remarks>
  2696. <p class="body">
  2697. This method along with the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SuspendBindingNotifications"/> can be used to temporarily
  2698. prevent UltraDataSource from firing ListChanged ItemChanged notifications. This can be useful in a situation
  2699. where a lot of cells need to be modified however for efficiency reasons you do not want to fire ListChanged
  2700. ItemChanged notification for every cell that's modified. In such a situation you would call
  2701. <b>SuspendBindingNotifications</b> and modify cells and then call <b>ResumeBindingNotifications</b>. When
  2702. ResumeBindingNotifications is called the UltraDataSource fires a single ListChanged Reset notification
  2703. for every row collection that was affected to cause the bound controls to reload the data. To prevent
  2704. the ResumeBindingNotifications from firing any notifications on resumption, use the overload of
  2705. ResumeBindingNotifications that takes in <b>fireNotifications</b> parameter. However note that if you
  2706. specify false for fireNotifications parameter then the bound controls may not reflect the changed
  2707. cell values. You will have to invalidate those controls manually yourself.
  2708. </p>
  2709. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.BindingNotificationsSuspended"/>, <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SuspendBindingNotifications"/>
  2710. </remarks>
  2711. </member>
  2712. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ResetAllowAdd">
  2713. <summary>
  2714. Resets the property to its default value of true.
  2715. </summary>
  2716. </member>
  2717. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ResetAllowDelete">
  2718. <summary>
  2719. Resets the property to its default value of true.
  2720. </summary>
  2721. </member>
  2722. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ResetReadOnly">
  2723. <summary>
  2724. Resets the property to its default value of true.
  2725. </summary>
  2726. </member>
  2727. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ResetBand">
  2728. <summary>
  2729. Resets the band. This will also clear the data strcture.
  2730. </summary>
  2731. </member>
  2732. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ResetUseBindingSource">
  2733. <summary>
  2734. Resets the property to its default value of true.
  2735. </summary>
  2736. </member>
  2737. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.Reset">
  2738. <summary>
  2739. Resets the object to its default state.
  2740. </summary>
  2741. </member>
  2742. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.GetBandByKey(System.String)">
  2743. <summary>
  2744. Returns a Band if the key exists anywhere in the band hierarchy or null if it does not.
  2745. </summary>
  2746. <param name="key">The key to search for.</param>
  2747. <returns>Returns a Band if the key exists anywhere in the band hierarchy or null if it does not.</returns>
  2748. <remarks>
  2749. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.Band"/>
  2750. <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/>
  2751. </remarks>
  2752. </member>
  2753. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.IO.Stream,System.Boolean)">
  2754. <summary>
  2755. Loads saved information from a stream containing the binary data.
  2756. </summary>
  2757. <remarks>
  2758. <p class="body">The <b>LoadFromBinary</b> method is used in conjunction with the
  2759. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.IO.Stream,System.Boolean)"/> method to persist the structure and data of the
  2760. <b>ultraDataSource</b>.</p>
  2761. </remarks>
  2762. <param name="stream">Stream containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2763. <param name="includeData">Determines whether that data is saved along with the data structure.</param>
  2764. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.IO.Stream,System.Boolean)"/>
  2765. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.IO.Stream,System.Boolean)"/>
  2766. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.IO.Stream,System.Boolean)"/>
  2767. </member>
  2768. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.IO.Stream)">
  2769. <summary>
  2770. Loads saved information from a stream containing the binary data.
  2771. </summary>
  2772. <remarks>
  2773. <p class="body">The <b>LoadFromBinary</b> method is used in conjunction with the
  2774. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.IO.Stream)"/> method to persist the structure and data of the
  2775. <b>ultraDataSource</b>.</p>
  2776. </remarks>
  2777. <param name="stream">Stream containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2778. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.IO.Stream)"/>
  2779. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.IO.Stream)"/>
  2780. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.IO.Stream)"/>
  2781. </member>
  2782. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.String,System.Boolean)">
  2783. <summary>
  2784. Loads saved information from a file containing the binary data.
  2785. </summary>
  2786. <remarks>
  2787. <p class="body">The <b>LoadFromBinary</b> method is used in conjunction with the
  2788. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.String,System.Boolean)"/> method to persist the structure and data of the
  2789. <b>ultraDataSource</b>.</p>
  2790. </remarks>
  2791. <param name="filename">The name of the file containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information.</param>
  2792. <param name="includeData">Determines whether that data is saved along with the data structure.</param>
  2793. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.String,System.Boolean)"/>
  2794. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.String,System.Boolean)"/>
  2795. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.String,System.Boolean)"/>
  2796. </member>
  2797. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.String)">
  2798. <summary>
  2799. Loads saved information from a file containing the binary data.
  2800. </summary>
  2801. <remarks>
  2802. <p class="body">The <b>LoadFromBinary</b> method is used in conjunction with the
  2803. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.String)"/> method to persist the structure and data of the
  2804. <b>ultraDataSource</b>.</p>
  2805. </remarks>
  2806. <param name="filename">The name of the file containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information.</param>
  2807. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.String)"/>
  2808. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.String)"/>
  2809. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.String)"/>
  2810. </member>
  2811. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.IO.Stream,System.Boolean)">
  2812. <summary>
  2813. Loads saved information from a stream containing the Xml data.
  2814. </summary>
  2815. <remarks>
  2816. <p class="body">The <b>LoadFromXml</b> method is used in conjunction with the
  2817. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.IO.Stream,System.Boolean)"/> method to persist the structure and data of the
  2818. <b>ultraDataSource</b>.</p>
  2819. </remarks>
  2820. <param name="stream">Stream containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2821. <param name="includeData">Determines whether that data is saved along with the data structure.</param>
  2822. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.IO.Stream,System.Boolean)"/>
  2823. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.IO.Stream,System.Boolean)"/>
  2824. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.IO.Stream,System.Boolean)"/>
  2825. </member>
  2826. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.IO.Stream)">
  2827. <summary>
  2828. Loads saved information from a stream containing the Xml data.
  2829. </summary>
  2830. <remarks>
  2831. <p class="body">The <b>LoadFromXml</b> method is used in conjunction with the
  2832. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.IO.Stream)"/> method to persist the structure and data of the
  2833. <b>ultraDataSource</b>.</p>
  2834. </remarks>
  2835. <param name="stream">Stream containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2836. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.IO.Stream)"/>
  2837. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.IO.Stream)"/>
  2838. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.IO.Stream)"/>
  2839. </member>
  2840. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.String,System.Boolean)">
  2841. <summary>
  2842. Loads saved information from a file containing the Xml data.
  2843. </summary>
  2844. <remarks>
  2845. <p class="body">The <b>LoadFromXml</b> method is used in conjunction with the
  2846. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.String,System.Boolean)"/> method to persist the structure and data of the
  2847. <b>ultraDataSource</b>.</p>
  2848. </remarks>
  2849. <param name="filename">The name of the file containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2850. <param name="includeData">Determines whether that data is saved along with the data structure.</param>
  2851. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.String,System.Boolean)"/>
  2852. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.String,System.Boolean)"/>
  2853. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.String,System.Boolean)"/>
  2854. </member>
  2855. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.String)">
  2856. <summary>
  2857. Loads saved information from a file containing the Xml data.
  2858. </summary>
  2859. <remarks>
  2860. <p class="body">The <b>LoadFromXml</b> method is used in conjunction with the
  2861. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.String)"/> method to persist the structure and data of the
  2862. <b>ultraDataSource</b>.</p>
  2863. </remarks>
  2864. <param name="filename">The name of the file containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2865. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.String)"/>
  2866. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.String)"/>
  2867. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.String)"/>
  2868. </member>
  2869. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.IO.Stream,System.Boolean)">
  2870. <summary>
  2871. Saves properties, structure, and data information to a binary stream.
  2872. </summary>
  2873. <remarks>
  2874. <p class="body">The <b>SaveAsBinary</b> method is used in conjunction with the
  2875. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.IO.Stream,System.Boolean)"/> method to persist the property settings and layout of the
  2876. <b>ultraDataSource</b>.</p>
  2877. </remarks>
  2878. <param name="stream">Stream containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2879. <param name="includeData">Determines whether that data is saved along with the data structure.</param>
  2880. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.IO.Stream,System.Boolean)"/>
  2881. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.IO.Stream,System.Boolean)"/>
  2882. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.IO.Stream,System.Boolean)"/>
  2883. </member>
  2884. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.IO.Stream)">
  2885. <summary>
  2886. Saves properties, structure, and data information to a binary stream.
  2887. </summary>
  2888. <remarks>
  2889. <p class="body">The <b>SaveAsBinary</b> method is used in conjunction with the
  2890. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.IO.Stream)"/> method to persist the property settings and layout of the
  2891. <b>ultraDataSource</b>.</p>
  2892. </remarks>
  2893. <param name="stream">Stream containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2894. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.IO.Stream)"/>
  2895. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.IO.Stream)"/>
  2896. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.IO.Stream)"/>
  2897. </member>
  2898. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.String,System.Boolean)">
  2899. <summary>
  2900. Saves properties, structure, and data information to a file in binary format.
  2901. </summary>
  2902. <remarks>
  2903. <p class="body">The <b>SaveAsBinary</b> method is used in conjunction with the
  2904. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.String,System.Boolean)"/> method to persist the property settings and layout of the
  2905. <b>ultraDataSource</b>.</p>
  2906. </remarks>
  2907. <param name="filename">The name of the file containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2908. <param name="includeData">Determines whether that data is saved along with the data structure.</param>
  2909. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.String,System.Boolean)"/>
  2910. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.String,System.Boolean)"/>
  2911. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.String,System.Boolean)"/>
  2912. </member>
  2913. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.String)">
  2914. <summary>
  2915. Saves properties, structure, and data information to a file in binary format.
  2916. </summary>
  2917. <remarks>
  2918. <p class="body">The <b>SaveAsBinary</b> method is used in conjunction with the
  2919. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.String)"/> method to persist the property settings and layout of the
  2920. <b>ultraDataSource</b>.</p>
  2921. </remarks>
  2922. <param name="filename">The name of the file containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2923. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.String)"/>
  2924. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.String)"/>
  2925. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.String)"/>
  2926. </member>
  2927. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.IO.Stream,System.Boolean)">
  2928. <summary>
  2929. Saves properties, structure, and data information to an Xml/soap stream.
  2930. </summary>
  2931. <remarks>
  2932. <p class="body">The <b>SaveAsBinary</b> method is used in conjunction with the
  2933. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.IO.Stream,System.Boolean)"/> method to persist the property settings and layout of the
  2934. <b>ultraDataSource</b>.</p>
  2935. </remarks>
  2936. <param name="stream">Stream containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2937. <param name="includeData">Determines whether that data is saved along with the data structure.</param>
  2938. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.IO.Stream,System.Boolean)"/>
  2939. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.IO.Stream,System.Boolean)"/>
  2940. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.IO.Stream,System.Boolean)"/>
  2941. </member>
  2942. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.IO.Stream)">
  2943. <summary>
  2944. Saves properties, structure, and data information to an Xml/soap stream.
  2945. </summary>
  2946. <remarks>
  2947. <p class="body">The <b>SaveAsBinary</b> method is used in conjunction with the
  2948. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.IO.Stream)"/> method to persist the property settings and layout of the
  2949. <b>ultraDataSource</b>.</p>
  2950. </remarks>
  2951. <param name="stream">Stream containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2952. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.IO.Stream)"/>
  2953. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.IO.Stream)"/>
  2954. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.IO.Stream)"/>
  2955. </member>
  2956. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.String,System.Boolean)">
  2957. <summary>
  2958. Saves properties, structure, and data information to a file in xml/soap format.
  2959. </summary>
  2960. <remarks>
  2961. <p class="body">The <b>SaveAsBinary</b> method is used in conjunction with the
  2962. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.String,System.Boolean)"/> method to persist the property settings and layout of the
  2963. <b>ultraDataSource</b>.</p>
  2964. </remarks>
  2965. <param name="filename">The name of the file containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2966. <param name="includeData">Determines whether that data is saved along with the data structure.</param>
  2967. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.String,System.Boolean)"/>
  2968. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.String,System.Boolean)"/>
  2969. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.String,System.Boolean)"/>
  2970. </member>
  2971. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsXml(System.String)">
  2972. <summary>
  2973. Saves properties, structure, and data information to a file in xml/soap format.
  2974. </summary>
  2975. <remarks>
  2976. <p class="body">The <b>SaveAsBinary</b> method is used in conjunction with the
  2977. <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.String)"/> method to persist the property settings and layout of the
  2978. <b>ultraDataSource</b>.</p>
  2979. </remarks>
  2980. <param name="filename">The name of the file containing the serialized <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataSource"/> information</param>
  2981. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SaveAsBinary(System.String)"/>
  2982. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromBinary(System.String)"/>
  2983. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.LoadFromXml(System.String)"/>
  2984. </member>
  2985. <member name="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
  2986. <summary>
  2987. Called when a property on a sub object has changed.
  2988. </summary>
  2989. <param name="propChangeInfo">A structure containing the property change information.</param>
  2990. </member>
  2991. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataRequested">
  2992. <summary>
  2993. Fired when data is requested by a control bound to this UltraDataSource for a particular cell and the UltraDataSource doesn't have the cell value.
  2994. </summary>
  2995. <remarks>
  2996. <p class="body"><b>CellDataRequested</b> event is fired when a control bound to the UltraDataSource requests value for a cell and UltraDataSource doesn't have the cell value. Once the value is provided, UltraDataSource will cache it and this event will not be fired for the cell next time. You can prevent the value from being cached by setting the <see cref="P:Infragistics.Win.UltraWinDataSource.CellDataRequestedEventArgs.CacheData"/> to false in the event handler.</p>
  2997. <p class="body">You can also provide cell values without having to hook into this event by using <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.SetCellValue(System.Int32,System.Object)"/> method. Also you can clear the cached value for a cell using <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataRow.ResetCachedValue(System.Int32)"/> method to cause this event to be fired next time for the cell.</p>
  2998. </remarks>
  2999. </member>
  3000. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating">
  3001. <summary>
  3002. Fired before a control bound to this UltraDataSource attempts to update a cell's value.
  3003. </summary>
  3004. <remarks>
  3005. <p class="body"><b>CellDataUpdating</b> is fired before a control bound to this UltraDataSource attempts to update a cell's value. You can cancel the update by setting Cancel to true off the <see cref="T:Infragistics.Win.UltraWinDataSource.CellDataUpdatingEventArgs"/> in which case the original value will be retained. You can also alter the update value by setting <see cref="P:Infragistics.Win.UltraWinDataSource.CellDataUpdatingEventArgs.NewValue"/> to a different value.</p>
  3006. <p class="body">By default the UltraDataSource will cache the new value of the cell. If you are managing the data then you may want to prevent the UltraDataSource from caching the value by setting <see cref="P:Infragistics.Win.UltraWinDataSource.CellDataUpdatingEventArgs.CacheData"/> to false.</p>
  3007. <p class="body"><b>Note</b> that this event is not be fired when you set the value in code.</p>
  3008. <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated"/>
  3009. </remarks>
  3010. </member>
  3011. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdated">
  3012. <summary>
  3013. Fired after a cell's data has been updated. This event occurs after <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> event.
  3014. </summary>
  3015. <remarks>
  3016. <p class="body">See <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/> for information on when this event is raised.</p>
  3017. <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.CellDataUpdating"/>
  3018. </remarks>
  3019. </member>
  3020. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.InitializeDataRow">
  3021. <summary>
  3022. Fired for every UltraDataRow when it's created.
  3023. </summary>
  3024. <remarks>
  3025. <p class="body"><b>InitializeDataRow</b> event is fired for every row when it's created.</p>
  3026. </remarks>
  3027. </member>
  3028. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.InitializeRowsCollection">
  3029. <summary>
  3030. Fired for every UltraDataRowsCollection when it's created.
  3031. </summary>
  3032. <remarks>
  3033. <p class="body">
  3034. The <b>InitializeRowsCollection</b> event is fired for every <see cref="T:Infragistics.Win.UltraWinDataSource.UltraDataRowsCollection"/> when it's created.
  3035. </p>
  3036. <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.InitializeDataRow"/>
  3037. </remarks>
  3038. </member>
  3039. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding">
  3040. <summary>
  3041. Fired when a control bound to this UltraDataSource attempts to add a new row to the UltraDataSource.
  3042. </summary>
  3043. <remarks>
  3044. <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded"/>
  3045. </remarks>
  3046. </member>
  3047. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdded">
  3048. <summary>
  3049. Fired after a control bound to this UltraDataSource adds a new row to the data source.
  3050. </summary>
  3051. <remarks>
  3052. <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowAdding"/>
  3053. </remarks>
  3054. </member>
  3055. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleting">
  3056. <summary>
  3057. Fired when a control bound to this UltraDataSource attempts to delete a row.
  3058. </summary>
  3059. <remarks>
  3060. <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted"/>
  3061. </remarks>
  3062. </member>
  3063. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowDeleted">
  3064. <summary>
  3065. Fired after a control bound to this UltraDataSource to deletes a row.
  3066. </summary>
  3067. </member>
  3068. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowBeginEdit">
  3069. <summary>
  3070. <b>RowBeginEdit</b> event is fired when BeginEdit on the <see cref="T:System.ComponentModel.IEditableObject"/> implementation of the UltraDataRow is called.
  3071. </summary>
  3072. <remarks>
  3073. <p class="body"><b>RowBeginEdit</b> event is fired when BeginEdit on the <see cref="T:System.ComponentModel.IEditableObject"/> implementation of the UltraDataRow is called. This typically happens when a bound control starts editing cells of a row. When one or more of the row cells are modified, <see cref="M:System.ComponentModel.IEditableObject.EndEdit"/> is called on the row object to commit those modifications. Optionally <see cref="M:System.ComponentModel.IEditableObject.CancelEdit"/> can be called to discard the modifications and restore the original values. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowBeginEdit"/>, <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowEndEdit"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowCancelEdit"/> events correspond to UltraDataRow implementation of <see cref="M:System.ComponentModel.IEditableObject.BeginEdit"/>, <see cref="M:System.ComponentModel.IEditableObject.EndEdit"/> and <see cref="M:System.ComponentModel.IEditableObject.CancelEdit"/>.</p>
  3074. <p class="body"><b>NOTE:</b> multiple rows can be in edit mode at the same time. As a result <b>RowBeginEdit</b> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowCancelEdit"/> or <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowEndEdit"/> can fire asynchronously for different rows.</p>
  3075. <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowEndEdit"/> <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowCancelEdit"/> <seealso cref="T:System.ComponentModel.IEditableObject"/>
  3076. </remarks>
  3077. </member>
  3078. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowEndEdit">
  3079. <summary>
  3080. <b>RowEndEdit</b> event is fired when EndEdit on the <see cref="T:System.ComponentModel.IEditableObject"/> implementation of the UltraDataRow is called.
  3081. </summary>
  3082. <remarks>
  3083. <p class="body"><b>RowEndEdit</b> event is fired when EndEdit on the <see cref="T:System.ComponentModel.IEditableObject"/> implementation of the UltraDataRow is called. Typically bound controls call EndEdit on a row to commit series of modifications that might have been made to a row. When one or more of the row cells are modified, <see cref="M:System.ComponentModel.IEditableObject.EndEdit"/> is called on the row object to commit those modifications. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowBeginEdit"/>, <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowEndEdit"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowCancelEdit"/> events correspond to UltraDataRow implementation of <see cref="M:System.ComponentModel.IEditableObject.BeginEdit"/>, <see cref="M:System.ComponentModel.IEditableObject.EndEdit"/> and <see cref="M:System.ComponentModel.IEditableObject.CancelEdit"/>.</p>
  3084. <p class="body"><b>NOTE:</b> multiple rows can be in edit mode at the same time. As a result <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowBeginEdit"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowCancelEdit"/> or <b>RowEndEdit</b> can fire asynchronously for different rows.</p>
  3085. <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowBeginEdit"/> <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowCancelEdit"/> <seealso cref="T:System.ComponentModel.IEditableObject"/>
  3086. </remarks>
  3087. </member>
  3088. <member name="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowCancelEdit">
  3089. <summary>
  3090. <b>RowCancelEdit</b> event is fired when CancelEdit on the <see cref="T:System.ComponentModel.IEditableObject"/> implementation of the UltraDataRow is called.
  3091. </summary>
  3092. <remarks>
  3093. <p class="body"><b>RowCancelEdit</b> event is fired when CancelEdit on the <see cref="T:System.ComponentModel.IEditableObject"/> implementation of the UltraDataRow is called. Typically bound controls call CancelEdit on a row to discard series of modifications that might have been made to a row and restore the original values. <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowBeginEdit"/>, <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowEndEdit"/> and <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowCancelEdit"/> events correspond to UltraDataRow implementation of <see cref="M:System.ComponentModel.IEditableObject.BeginEdit"/>, <see cref="M:System.ComponentModel.IEditableObject.EndEdit"/> and <see cref="M:System.ComponentModel.IEditableObject.CancelEdit"/>.</p>
  3094. <p class="body"><b>NOTE:</b> multiple rows can be in edit mode at the same time. As a result <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowBeginEdit"/> and <b>RowCancelEdit</b> or <see cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowEndEdit"/> can fire asynchronously for different rows.</p>
  3095. <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowBeginEdit"/> <seealso cref="E:Infragistics.Win.UltraWinDataSource.UltraDataSource.RowEndEdit"/> <seealso cref="T:System.ComponentModel.IEditableObject"/>
  3096. </remarks>
  3097. </member>
  3098. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.Rows">
  3099. <summary>
  3100. Gets the rows collection associated with the top most band.
  3101. </summary>
  3102. </member>
  3103. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.Band">
  3104. <summary>
  3105. Gets the top most band object.
  3106. </summary>
  3107. <remarks>
  3108. <p class="body">
  3109. The <b>Band</b> property returns the root band. To access the child bands use the
  3110. <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/> property of the band.
  3111. </p>
  3112. <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ChildBands"/>
  3113. <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.Columns"/>
  3114. <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.Rows"/>
  3115. </remarks>
  3116. </member>
  3117. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowAdd">
  3118. <summary>
  3119. Indicates whether row adding is allowed. Default is true.
  3120. </summary>
  3121. <remarks>
  3122. <p class="body">Setting <b>AllowAdd</b> to true will prevent the controls bound to this data source from adding rows to it.</p>
  3123. <p><seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowDelete"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.ReadOnly"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowDelete"/></p>
  3124. </remarks>
  3125. </member>
  3126. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowDelete">
  3127. <summary>
  3128. Indicates whether row deleting is allowed. Default is true.
  3129. </summary>
  3130. <remarks>
  3131. <p class="body">Setting <b>AllowDelete</b> to true will prevent the controls bound to this data source from deleting rows from it.</p>
  3132. <p><seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowAdd"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.ReadOnly"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowAdd"/></p>
  3133. </remarks>
  3134. </member>
  3135. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.ReadOnly">
  3136. <summary>
  3137. Indicates whether any modifications to data, including adding and deleting of rows, are allowed in row collections associated with this band.
  3138. </summary>
  3139. <remarks>
  3140. <p class="body">Setting <b>ReadOnly</b> to true makes the data source read-only so that the controls bound to this data source can not make any modifications. Setting it to true will prevent cell content modifications as well as adding and deleting of rows regardless of the <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowAdd"/> and <see cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowDelete"/> settings. This property caues the IBindingList.ReadOnly implementation in UltraDataSource to return true.</p>
  3141. <p><seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataColumn.ReadOnly"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.ReadOnly"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowAdd"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.AllowDelete"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowAdd"/> <seealso cref="P:Infragistics.Win.UltraWinDataSource.UltraDataBand.AllowDelete"/></p>
  3142. </remarks>
  3143. </member>
  3144. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.BindingNotificationsSuspended">
  3145. <summary>
  3146. Indicates whether IBindingList related notifications are suspended.
  3147. </summary>
  3148. <remarks>
  3149. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.SuspendBindingNotifications"/>
  3150. <seealso cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.ResumeBindingNotifications"/>
  3151. </remarks>
  3152. </member>
  3153. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.EventManager">
  3154. <summary>
  3155. The object that enables, disables and controls firing of specific control events.
  3156. </summary>
  3157. <remarks>
  3158. <p class="body">The <b>DataSourceEventManager</b> gives you a high degree of control over how the component invokes event procedures. You can use it to selectively enable and disable event procedures depending on the context of your application. You can also use the event manager to return information about the state of the component's events.</p>
  3159. <p class="body">The event manager's methods are used to determine the enabled state of an event (<see cref="M:Infragistics.Win.UltraWinDataSource.DataSourceEventManager.IsEnabled(Infragistics.Win.UltraWinDataSource.DataSourceEventIds)"/>), to selectively enable or disable events (<see cref="M:Infragistics.Win.UltraWinDataSource.DataSourceEventManager.SetEnabled(Infragistics.Win.UltraWinDataSource.DataSourceEventIds,System.Boolean)"/>), and to tell whether an event procedure is currently being processed (<see cref="M:Infragistics.Win.UltraWinDataSource.DataSourceEventManager.InProgress(Infragistics.Win.UltraWinDataSource.DataSourceEventIds)"/>). There is also an <seealso cref="P:Infragistics.Shared.EventManagerBase.AllEventsEnabled"/> property that you can check to quickly determine whether any events have been disabled by the event manager.</p>
  3160. </remarks>
  3161. </member>
  3162. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.SubObjectPropChangeHandler">
  3163. <summary>
  3164. Returns the event handler that for the <see cref="M:Infragistics.Win.UltraWinDataSource.UltraDataSource.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)"/> method that is used to receive notifications when a property on a sub-object has changed.
  3165. </summary>
  3166. </member>
  3167. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.About">
  3168. <summary>
  3169. Display the about dialog
  3170. </summary>
  3171. </member>
  3172. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.Infragistics#Shared#IUltraLicensedComponent#License">
  3173. <summary>
  3174. Returns the cached license for the control
  3175. </summary>
  3176. </member>
  3177. <member name="P:Infragistics.Win.UltraWinDataSource.UltraDataSource.UseBindingSource">
  3178. <summary>
  3179. Indicates whether to use BindingSource to manage currency managers via
  3180. ICurrencyManagerProvider implementation. Default value is <b>true</b>.
  3181. </summary>
  3182. <remarks>
  3183. In CLR2.0 framework, a new BindingSource data source wrapper object was introduced
  3184. that solved some performance issues with binding hierarchical data sources
  3185. with high number of bands. However BindingSource introduced some incompatibilities
  3186. with older behavior. You can use this property to fallback to not using BindingSource.
  3187. </remarks>
  3188. </member>
  3189. </members>
  3190. </doc>