123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627 |
- <?xml version="1.0" encoding="utf-8"?>
- <doc>
- <assembly>
- <name>DevExpress.DataAccess.v24.1.UI</name>
- </assembly>
- <members>
- <member name="N:DevExpress.DataAccess.UI">
- <summary>
- <para>Provides controls that allow you to work with data sets.</para>
- </summary>
- </member>
- <member name="N:DevExpress.DataAccess.UI.Design">
- <summary>
- <para>Contains classes that define the UI settings of applications providing Data Access functionality.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Design.DataSourceOptionsContainer">
- <summary>
- <para>Provides settings that define the data source options of an end-user application.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Design.DataSourceOptionsContainer.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Design.DataSourceOptionsContainer"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Design.DataSourceOptionsContainer.ObjectDataSourceLoadingBehavior">
- <summary>
- <para>Specifies whether to trust the object data sources available in the end-user application.</para>
- </summary>
- <value>A <see cref="T:DevExpress.DataAccess.DocumentLoadingBehavior"/> enumeration value.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Design.DataSourceOptionsContainer.Reset">
- <summary>
- <para>Restore the default data source settings.</para>
- </summary>
- </member>
- <member name="N:DevExpress.DataAccess.UI.EntityFramework">
- <summary>
- <para>Provides an application programming interface (API) to access the graphical user interface (GUI) related to configuring an Entity Framework data source connection.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.EntityFramework.EditFiltersContext">
- <summary>
- <para>Provides settings required to edit filter settings of an Entity Framework data source.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.EntityFramework.EditFiltersContext.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.EntityFramework.EditFiltersContext"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.EntityFramework.EditFiltersContext.ConnectionStorageService">
- <summary>
- <para>Specifies an object that provides a service functionality to store the data connection settings.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.EntityFramework.EditFiltersContext.ConnectionStringsProvider">
- <summary>
- <para>Specifies a storage of data connection settings.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.Data.Entity.IConnectionStringsProvider"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.EntityFramework.EditFiltersContext.Options">
- <summary>
- <para>Specifies the options to customize the Entity Framework <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see>.</para>
- </summary>
- <value>One or more <see cref="T:DevExpress.DataAccess.Wizard.EFWizardOptions"/> enumeration values.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.EntityFramework.EditFiltersContext.ParameterService">
- <summary>
- <para>Provides access to the service for managing report parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.EntityFramework.EditFiltersContext.SolutionTypesProvider">
- <summary>
- <para>Specifies the object that provides access to the known types in the current solution.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</value>
- </member>
- <member name="N:DevExpress.DataAccess.UI.Excel">
- <summary>
- <para>Provides an application programming interface (API) to access the graphical user interface (GUI) related to configuring an Excel data source connection.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Excel.EditDataSourceContext">
- <summary>
- <para>Provides settings required to edit an Excel data source connection.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.EditDataSourceContext.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Excel.EditDataSourceContext"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Excel.EditDataSourceContext.DataDirectoryPatchingService">
- <summary>
- <para>Patches a path to an Excel file.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.Data.Utils.IDataDirectoryPatchingService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Excel.EditDataSourceContext.ExcelSchemaProvider">
- <summary>
- <para>Specifies a provider of an Excel data source schema.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Excel.IExcelSchemaProvider"/> interface.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Excel.ExcelDataSourceUIHelper">
- <summary>
- <para>Provides functionality to configure the connection to an <see cref="T:DevExpress.DataAccess.Excel.ExcelDataSource"/> in code.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.ExcelDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.Excel.ExcelDataSource,DevExpress.DataAccess.UI.Excel.EditDataSourceContext)">
- <summary>
- <para>Invokes the Excel Data Source Editor with the specified settings.</para>
- </summary>
- <param name="dataSource">An <see cref="T:DevExpress.DataAccess.Excel.ExcelDataSource"/> object.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.Excel.EditDataSourceContext"/> object.</param>
- <returns>true, if the wizard was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.ExcelDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.Excel.ExcelDataSource,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Excel.IExcelSchemaProvider)">
- <summary>
- <para>Invokes the Excel Data Source Editor with the specified settings.</para>
- </summary>
- <param name="dataSource">An <see cref="T:DevExpress.DataAccess.Excel.ExcelDataSource"/> object.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface, specifying the wizard settings.</param>
- <param name="excelSchemaProvider">An object implementing the <see cref="T:DevExpress.DataAccess.Excel.IExcelSchemaProvider"/> interface.</param>
- <returns>true, if the wizard was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.ExcelDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.Excel.ExcelDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Excel.IExcelSchemaProvider)">
- <summary>
- <para>Invokes the Excel Data Source Editor with the specified settings.</para>
- </summary>
- <param name="dataSource">An <see cref="T:DevExpress.DataAccess.Excel.ExcelDataSource"/> object.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="excelSchemaProvider">An object implementing the <see cref="T:DevExpress.DataAccess.Excel.IExcelSchemaProvider"/> interface.</param>
- <returns>true, if the wizard was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.ExcelDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.Excel.ExcelDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Excel Data Source Editor with the specified settings.</para>
- </summary>
- <param name="dataSource">An <see cref="T:DevExpress.DataAccess.Excel.ExcelDataSource"/> object.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <returns>true, if the wizard was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.ExcelDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.Excel.ExcelDataSource,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Excel Data Source Editor with the specified settings.</para>
- </summary>
- <param name="dataSource">An <see cref="T:DevExpress.DataAccess.Excel.ExcelDataSource"/> object.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <returns>true, if the wizard was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.ExcelDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.Excel.ExcelDataSource)">
- <summary>
- <para>Invokes the Excel Data Source Editor with the specified settings.</para>
- </summary>
- <param name="dataSource">An <see cref="T:DevExpress.DataAccess.Excel.ExcelDataSource"/> object.</param>
- <returns>true, if the wizard was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.ExcelDataSourceUIHelper.EditDataSource``1(DevExpress.DataAccess.Excel.ExcelDataSource,DevExpress.DataAccess.UI.Excel.EditDataSourceContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes the Excel Data Source Editor with the specified settings.</para>
- </summary>
- <param name="dataSource">An <see cref="T:DevExpress.DataAccess.Excel.ExcelDataSource"/> object.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.Excel.EditDataSourceContext"/> object.</param>
- <param name="customizeWizard">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the wizard was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.ExcelDataSourceUIHelper.UpdateSchema(DevExpress.DataAccess.Excel.ExcelDataSource,DevExpress.DataAccess.UI.Excel.UpdateSchemaContext)">
- <summary>
- <para>Updates the data source schema available on the client in accordance with the current data source structure.</para>
- </summary>
- <param name="dataSource">An <see cref="T:DevExpress.DataAccess.Excel.ExcelDataSource"/> object.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.Excel.UpdateSchemaContext"/> object.</param>
- <returns>true, if the data source schema has been rebuilt; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.ExcelDataSourceUIHelper.UpdateSchema(DevExpress.DataAccess.Excel.ExcelDataSource,System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel,DevExpress.DataAccess.Excel.IExcelSchemaProvider)">
- <summary>
- <para>Updates the data source schema available on the client in accordance with the current data source structure.</para>
- </summary>
- <param name="dataSource">An <see cref="T:DevExpress.DataAccess.Excel.ExcelDataSource"/> object.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="schemaProvider">An object implementing the <see cref="T:DevExpress.DataAccess.Excel.IExcelSchemaProvider"/> interface.</param>
- <returns>true, if the data source schema has been rebuilt; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.ExcelDataSourceUIHelper.UpdateSchema(DevExpress.DataAccess.Excel.ExcelDataSource)">
- <summary>
- <para>Updates the data source schema available on the client in accordance with the current data source structure.</para>
- </summary>
- <param name="dataSource">An <see cref="T:DevExpress.DataAccess.Excel.ExcelDataSource"/> object.</param>
- <returns>true, if the data source schema has been rebuilt; otherwise, false.</returns>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Excel.UpdateSchemaContext">
- <summary>
- <para>Provides settings required to update an Excel data source schema.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Excel.UpdateSchemaContext.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Excel.UpdateSchemaContext"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Excel.UpdateSchemaContext.DataDirectoryPatchingService">
- <summary>
- <para>Patches a path to an Excel file.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.Data.Utils.IDataDirectoryPatchingService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Excel.UpdateSchemaContext.ExcelSchemaProvider">
- <summary>
- <para>Specifies a provider of an Excel data source schema.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Excel.IExcelSchemaProvider"/> interface.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.FilterEditorControl">
- <summary>
- <para>Allows users to build filter criteria and apply them to controls and data sources. Supports visual and text criteria edit modes.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.FilterEditorControl.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.FilterEditorControl.#ctor(System.Func{DevExpress.XtraEditors.FilterControl})">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> class.</para>
- </summary>
- <param name="getFilterControl">A method that returns the <see cref="T:DevExpress.XtraEditors.FilterControl"/> object that should be embedded in this <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> object.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ActiveEditor">
- <summary>
- <para>Returns the editor an end-user currently uses to edit operand value(s).</para>
- </summary>
- <value>A BaseEdit class descendant that is the currently used editor.</value>
- </member>
- <member name="E:DevExpress.DataAccess.UI.FilterEditorControl.ActiveEditorValidating">
- <summary>
- <para>Occurs when a currently active editor from the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>‘s “Visual” panel raises the Control.Validating event.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ActiveView">
- <summary>
- <para>Gets or sets the control’s active View.</para>
- </summary>
- <value>A DevExpress.XtraFilterEditor.FilterEditorActiveView enumeration value that specifies the control’s active View.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.AllowAggregateEditing">
- <summary>
- <para>Gets or sets whether filters can be created against properties that are List objects.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraEditors.FilterControlAllowAggregateEditing"/> enumeration value that specifies whether or not filters can be created against properties that are List objects.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.AppearanceEmptyValueColor">
- <summary>
- <para>Gets or sets a color of a null prompt text that substitutes empty values in the control’s “Visual” panel.</para>
- </summary>
- <value>A Color applied to empty value text blocks.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.AppearanceFieldNameColor">
- <summary>
- <para>Gets or sets the color applied to field names in the control’s “Visual” panel.</para>
- </summary>
- <value>A Color applied to field names.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.AppearanceGroupOperatorColor">
- <summary>
- <para>Gets or sets the color applied to group operators in the control’s “Visual” panel.</para>
- </summary>
- <value>A Color applied to group operators.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.AppearanceOperatorColor">
- <summary>
- <para>Gets or sets the color applied to operators in the control’s “Visual” panel.</para>
- </summary>
- <value>A Color applied to operators.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.AppearanceTreeLine">
- <summary>
- <para>Returns appearance settings applied to tree lines in the control’s “Visual” panel.</para>
- </summary>
- <value>An AppearanceObject applied to tree lines.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.AppearanceValueColor">
- <summary>
- <para>Gets or sets the color applied to values in the control’s “Visual” panel.</para>
- </summary>
- <value>A Color applied to values.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.FilterEditorControl.ApplyFilter">
- <summary>
- <para>Applies the filter criteria to the source control.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.FilterEditorControl.BeforeShowValueEditor">
- <summary>
- <para>Fires before the editor used to edit operands is shown on screen. Allows you to customize this editor.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.BorderStyle">
- <summary>
- <para>Gets or sets the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> border style.</para>
- </summary>
- <value>A BorderStyles enumeration value that specifies the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> border style.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.FilterEditorControl.ClearFilter">
- <summary>
- <para>Clears the filter criteria.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.FilterEditorControl.FilterChanged">
- <summary>
- <para>Fires when the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>‘s criteria changes.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.FilterColumns">
- <summary>
- <para>Gets or sets a collection of columns retrieved from this <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>‘s source control.</para>
- </summary>
- <value>A FilterColumnCollection that stores columns retrieved from this <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>‘s source control.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.FilterControl">
- <summary>
- <para>Returns the <see cref="T:DevExpress.XtraEditors.FilterControl"/> embedded in the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>‘s “Visual” panel.</para>
- </summary>
- <value>A FilterControl embedded in this <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.FilterCriteria">
- <summary>
- <para>Gets or sets the filter criteria.</para>
- </summary>
- <value>A <see cref="T:DevExpress.Data.Filtering.CriteriaOperator"/> object that represents the filter criteria.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.FilterString">
- <summary>
- <para>Gets or sets the final filter expression.</para>
- </summary>
- <value>A String value that is the final <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> filter expression.</value>
- </member>
- <member name="E:DevExpress.DataAccess.UI.FilterEditorControl.FilterTextChanged">
- <summary>
- <para>Fires whenever the <see cref="P:DevExpress.DataAccess.UI.FilterEditorControl.FilterString">FilterEditorControl.FilterString</see> property value changes.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.FilterViewInfo">
- <summary>
- <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.Font">
- <summary>
- <para>Gets or sets the control font.</para>
- </summary>
- <value>A Font for this <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.HasErrors">
- <summary>
- <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
- </summary>
- <value>For internal use.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.HasWarnings">
- <summary>
- <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
- </summary>
- <value>For internal use.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.IsFilterCriteriaValid">
- <summary>
- <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.IsModified">
- <summary>
- <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
- </summary>
- <value>For internal use.</value>
- </member>
- <member name="E:DevExpress.DataAccess.UI.FilterEditorControl.ItemDoubleClick">
- <summary>
- <para>Fires whenever a user clicks any <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> element (logical operator, filtering value, field name, etc.).</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.FilterEditorControl.LayoutChanged">
- <summary>
- <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.LevelIndent">
- <summary>
- <para>Gets or sets the horizontal offset for individual logical expressions inside the “Visual” panel.</para>
- </summary>
- <value>An Int32 value that is the horizontal offset.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.MenuManager">
- <summary>
- <para>Gets or sets the menu manager that specifies the look and feel settings for this <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>‘s menus.</para>
- </summary>
- <value>An Object that implements the DevExpress.Utils.Menu.IDXMenuManager interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.NodeSeparatorHeight">
- <summary>
- <para>Gets or sets the distance between separate logical expressions in the “Visual” panel.</para>
- </summary>
- <value>An Int32 value that is the distance between logical expressions.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.PanelAlignment">
- <summary>
- <para>Specifies the relative alignment of the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>‘s “Visual” and “Text” panels.</para>
- </summary>
- <value>An <see cref="T:System.Windows.Forms.Orientation"/> enumeration value that specifies the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> panels’ alignment.</value>
- </member>
- <member name="E:DevExpress.DataAccess.UI.FilterEditorControl.QueryCustomFunctions">
- <summary>
- <para>Allows you to add <see href="https://docs.devexpress.com/WindowsForms/400995/common-features/expressions/custom-function-based-filters">custom-function-based filters</see> (for example, ‘discount is more than 15%’) to Excel-style pop-up filter menus and/or the filter editor.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ReadOnly">
- <summary>
- <para>Gets or sets whether users can edit filter criteria.</para>
- </summary>
- <value>true if users can edit filter criteria; otherwise, false.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.FilterEditorControl.SetDefaultColumn(DevExpress.XtraEditors.Filtering.FilterColumn)">
- <summary>
- <para>Specifies a column the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> uses by default when a user creates a new logical expression.</para>
- </summary>
- <param name="column">The FilterColumn this <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> uses by default when a user creates a new logical expression.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.FilterEditorControl.SetFilterColumnsCollection(DevExpress.XtraEditors.Filtering.FilterColumnCollection,DevExpress.Utils.Menu.IDXMenuManager)">
- <summary>
- <para>Clears the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>‘s column collection and re-populates it manually with specific columns. The menu manager passed as the second parameter specifies the context menus’ look and feel settings.</para>
- </summary>
- <param name="columns">A FilterColumnCollection object that stores a new column set for this <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>.</param>
- <param name="manager">An object that implements the IDXMenuManager interface. This object specifies the look and feel settings of the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>‘s context menus.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.FilterEditorControl.SetFilterColumnsCollection(DevExpress.XtraEditors.Filtering.FilterColumnCollection)">
- <summary>
- <para>Clears the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>‘s column collection and re-populates it manually with specific columns.</para>
- </summary>
- <param name="columns">A FilterColumnCollection object that stores a new column set for this <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ShowCustomFunctions">
- <summary>
- <para>Gets or sets whether to show <see href="https://docs.devexpress.com/WindowsForms/400995/common-features/expressions/custom-function-based-filters">custom function-based filters</see>.</para>
- </summary>
- <value>True to show custom function-based filters; False to not show them; Default to enable/disable custom function-based filters depending on the global <see cref="F:DevExpress.XtraEditors.WindowsFormsSettings.DefaultSettingsCompatibilityMode"></see> setting.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ShowDateTimeFunctions">
- <summary>
- <para>Gets or sets whether to show the standard and advanced date-time functions (BeyondThisYear, LaterThisYear, Tomorrow, Today, Yesterday, LastWeek, etc.) for date-time fields.</para>
- </summary>
- <value>A DateTimeFunctionsShowMode enumaration value that specifies whether to show the standard and advanced date-time functions for date-time fields.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ShowDateTimeOperators">
- <summary>
- <para>Gets or sets whether date-time specific operators (BeyondThisYear, LaterThisYear, Tomorrow, Today, Yesterday, LastWeek, etc.) are available for date-time fields.</para>
- </summary>
- <value>true if date-time specific operators are available; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ShowFunctions">
- <summary>
- <para>Gets or sets whether or not the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> allows end-users to use specific functions and constants when building filter criteria.</para>
- </summary>
- <value>true if functions and constants are available; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ShowGroupCommandsIcon">
- <summary>
- <para>Gets or sets whether or not group commands are available at runtime via a separate button inside the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> “Visual” panel.</para>
- </summary>
- <value>true to move group commands to a separate button; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ShowIsNullOperatorsForStrings">
- <summary>
- <para>Gets or sets whether the “Visual” <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> panel allows end-users to utilize the IsNull operator for string values.</para>
- </summary>
- <value>true if the IsNull operator is available for string values; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ShowOperandTypeIcon">
- <summary>
- <para>Gets or sets whether a user can swap the second operand’s type (between the Value box and Field list). The Field list allows users to compare the first operand (field) with another field.</para>
- </summary>
- <value>true, to allow end-users to swap the second operand’s type; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ShowToolTips">
- <summary>
- <para>Gets or sets whether the control shows tooltips.</para>
- </summary>
- <value>true if the control shows tooltips; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.SortFilterColumns">
- <summary>
- <para>Gets or sets whether or not the <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> should sort its source control’s columns alphabetically in its menus.</para>
- </summary>
- <value>true if <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/> menus should display source control columns in an alphabetical order; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.SourceControl">
- <summary>
- <para>Gets or sets a source control associated with this <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>.</para>
- </summary>
- <value>An Object that is the source control for this <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.StyleController">
- <summary>
- <para>This member supports the internal infrastructure, and is not intended to be used directly from your code.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.UseMenuForOperandsAndOperators">
- <summary>
- <para>Gets or sets whether a menu or combobox editor is used to select operands and operators in a <see cref="T:DevExpress.DataAccess.UI.FilterEditorControl"/>. This property is not supported when filters are edited in a text-based form (see <see cref="P:DevExpress.DataAccess.UI.FilterEditorControl.ViewMode">FilterEditorControl.ViewMode</see>).</para>
- </summary>
- <value>true if a menu is used to select operands and operators; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.FilterEditorControl.ViewMode">
- <summary>
- <para>Gets or sets how a Filter Editor’s criteria can be edited.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraEditors.FilterEditorViewMode"/> enumeration value that specifies how a Filter Editor’s criteria can be edited.</value>
- </member>
- <member name="N:DevExpress.DataAccess.UI.MongoDB">
- <summary>
- <para>Contains classes that allow you to invoke and customize the Connection Editor and the Manage Queries dialog for the <see cref="T:DevExpress.DataAccess.MongoDB.MongoDBDataSource">MongoDB Data Source</see>.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.MongoDB.IMongoDBEditorsCustomizationService">
- <summary>
- <para>If implemented, allows you to display a custom Connection Editor or Manage Queries dialog.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.MongoDB.IMongoDBEditorsCustomizationService.CustomizeEditor(DevExpress.DataAccess.UI.MongoDB.MongoDBEditorId,DevExpress.DataAccess.UI.Wizard.IWizardCustomization{DevExpress.DataAccess.Wizard.Model.MongoDBDataSourceModel})">
- <summary>
- <para>Replaces the standard Connection Editor or Manage Queries dialog with a custom one.</para>
- </summary>
- <param name="editor">An editor to be customized.</param>
- <param name="tool">An object that contains customization settings.</param>
- </member>
- <member name="T:DevExpress.DataAccess.UI.MongoDB.ManageQueriesContext">
- <summary>
- <para>Contains settings used to display the Manage Queries dialog for the <see cref="T:DevExpress.DataAccess.MongoDB.MongoDBDataSource">MongoDB Data Source</see>.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.MongoDB.ManageQueriesContext.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.MongoDB.ManageQueriesContext"/> class.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.MongoDB.ManageQueriesContext.ParameterService">
- <summary>
- <para>Stores a service that manages external parameters of MongoDB queries in the Manage Queries dialog.</para>
- </summary>
- <value>An object that manages external parameters of MongoDB queries.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.MongoDB.ManageQueriesContext.PropertyGridServices">
- <summary>
- <para>Stores a service that displays the Property Grid in the Manage Queries dialog.</para>
- </summary>
- <value>A service that displays the Property Grid in the Manage Queries dialog.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.MongoDB.ManageQueriesContext.RepositoryItemsProvider">
- <summary>
- <para>Stores an object that contains <see href="https://docs.devexpress.com/WindowsForms/428/controls-and-libraries/vertical-grid/data-editing-and-validation/in-place-editors">repository items</see>. These items allow you to edit parameters of MongoDB queries in the Manage Queries dialog.</para>
- </summary>
- <value>An object that contains <see href="https://docs.devexpress.com/WindowsForms/428/controls-and-libraries/vertical-grid/data-editing-and-validation/in-place-editors">repository items</see>.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.MongoDB.MongoDBDataSourceUIHelper">
- <summary>
- <para>Contains methods that allow you to invoke the Connection Editor and the Manage Queries dialog for the <see cref="T:DevExpress.DataAccess.MongoDB.MongoDBDataSource">MongoDB Data Source</see>.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.MongoDB.MongoDBDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.MongoDB.MongoDBDataSourceBase,DevExpress.DataAccess.UI.MongoDB.ConfigureMongoDBConnectionContext)">
- <summary>
- <para>Invokes the Connection Editor with the specified settings for the <see cref="T:DevExpress.DataAccess.MongoDB.MongoDBDataSource">MongoDB Data Source</see>.</para>
- </summary>
- <param name="dataSource">A MongoDB data source.</param>
- <param name="context">An object that contains settings for the editor.</param>
- <returns>true if a user clicked the Finish button to close the editor; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.MongoDB.MongoDBDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.MongoDB.MongoDBDataSourceBase)">
- <summary>
- <para>Invokes the Connection Editor for the <see cref="T:DevExpress.DataAccess.MongoDB.MongoDBDataSource">MongoDB Data Source</see>.</para>
- </summary>
- <param name="dataSource">A MongoDB data source.</param>
- <returns>true if a user clicked the Finish button to close the editor; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.MongoDB.MongoDBDataSourceUIHelper.ConfigureConnection``1(DevExpress.DataAccess.MongoDB.MongoDBDataSourceBase,DevExpress.DataAccess.UI.MongoDB.ConfigureMongoDBConnectionContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes the Connection Editor with the specified settings and customization parameters for the <see cref="T:DevExpress.DataAccess.MongoDB.MongoDBDataSource">MongoDB Data Source</see>.</para>
- </summary>
- <param name="dataSource">A MongoDB data source.</param>
- <param name="context">An object that contains settings for the editor.</param>
- <param name="customizeWizard">A method that customizes the editor.</param>
- <typeparam name="TModel">A class that implements the IMongoDBDataSourceModel interface.</typeparam>
- <returns>true if a user clicked the Finish button to close the editor; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.MongoDB.MongoDBDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.MongoDB.MongoDBDataSourceBase,DevExpress.DataAccess.UI.MongoDB.ManageQueriesContext)">
- <summary>
- <para>Invokes the Manage Queries dialog with the specified settings for the <see cref="T:DevExpress.DataAccess.MongoDB.MongoDBDataSource">MongoDB Data Source</see>.</para>
- </summary>
- <param name="dataSource">A MongoDB data source.</param>
- <param name="context">An object that contains settings for the dialog.</param>
- <returns>true if a user clicked the OK button to close the dialog; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.MongoDB.MongoDBDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.MongoDB.MongoDBDataSourceBase)">
- <summary>
- <para>Invokes the Manage Queries dialog for the <see cref="T:DevExpress.DataAccess.MongoDB.MongoDBDataSource">MongoDB Data Source</see>.</para>
- </summary>
- <param name="dataSource">A MongoDB data source.</param>
- <returns>true if a user clicked the OK button to close the dialog; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.MongoDB.MongoDBDataSourceUIHelper.ManageQueries``1(DevExpress.DataAccess.MongoDB.MongoDBDataSourceBase,DevExpress.DataAccess.UI.MongoDB.ManageQueriesContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes the Manage Queries dialog with the specified settings and customization parameters for the <see cref="T:DevExpress.DataAccess.MongoDB.MongoDBDataSource">MongoDB Data Source</see>.</para>
- </summary>
- <param name="dataSource">A MongoDB data source.</param>
- <param name="context">An object that contains settings for the dialog.</param>
- <param name="customizeWizard">A method that customizes the dialog.</param>
- <typeparam name="TModel">A class that implements the IMongoDBDataSourceModel interface.</typeparam>
- <returns>true if a user clicked the OK button to close the dialog; otherwise, false.</returns>
- </member>
- <member name="T:DevExpress.DataAccess.UI.MongoDB.MongoDBEditorId">
- <summary>
- <para>Lists MongoDB editors.</para>
- </summary>
- </member>
- <member name="F:DevExpress.DataAccess.UI.MongoDB.MongoDBEditorId.Connection">
- <summary>
- <para>The Connection Editor.</para>
- </summary>
- </member>
- <member name="F:DevExpress.DataAccess.UI.MongoDB.MongoDBEditorId.Query">
- <summary>
- <para>The Manage Queries dialog.</para>
- </summary>
- </member>
- <member name="N:DevExpress.DataAccess.UI.ObjectBinding">
- <summary>
- <para>Provides an application programming interface (API) to access the graphical user interface (GUI) related to configuring an object data source connection.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext">
- <summary>
- <para>Provides settings required to edit the constructors of an object data source.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext.OperationMode">
- <summary>
- <para>Specifies the availability of an object data source’s data, schema or both on the client.</para>
- </summary>
- <value>An <see cref="T:DevExpress.DataAccess.Wizard.OperationMode"/> enumeration value.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext.ParameterService">
- <summary>
- <para>Specifies an object that provides a service functionality to manage report parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext.PropertyGridServices">
- <summary>
- <para>Specifies services that provide functionality to custom parameter editors displayed in the Property Grid that is invoked from the Data Source wizard.</para>
- </summary>
- <value>An object implementing the <see cref="T:System.IServiceProvider"/> interface that is used to obtain the service object of a specific type.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext.RepositoryItemsProvider">
- <summary>
- <para>Specifies an object that provides repository items for editing query parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext.SolutionTypesProvider">
- <summary>
- <para>Specifies an object that provides access to the known types in the current solution.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.ObjectBinding.EditDataMemberContext">
- <summary>
- <para>Provides settings required to edit the data members of an object data source.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.EditDataMemberContext.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.ObjectBinding.EditDataMemberContext"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditDataMemberContext.ParameterService">
- <summary>
- <para>Specifies an object that provides a service functionality to manage report parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditDataMemberContext.PropertyGridServices">
- <summary>
- <para>Specifies services that provide functionality to custom parameter editors displayed in the Property Grid that is invoked from the Data Source wizard.</para>
- </summary>
- <value>An object implementing the <see cref="T:System.IServiceProvider"/> interface that is used to obtain the service object of a specific type.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditDataMemberContext.RepositoryItemsProvider">
- <summary>
- <para>Specifies an object that provides repository items for editing query parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditDataMemberContext.SolutionTypesProvider">
- <summary>
- <para>Specifies an object that provides access to the known types in the current solution.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.ObjectBinding.EditDataSourceContext">
- <summary>
- <para>Provides settings required to edit an object data source.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.EditDataSourceContext.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.ObjectBinding.EditDataSourceContext"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditDataSourceContext.OperationMode">
- <summary>
- <para>Specifies the modes of operation available for an object data source.</para>
- </summary>
- <value>An <see cref="T:DevExpress.DataAccess.Wizard.OperationMode"/> enumeration value.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditDataSourceContext.ParameterService">
- <summary>
- <para>Specifies an object that provides a service functionality to manage report parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditDataSourceContext.PropertyGridServices">
- <summary>
- <para>Specifies services that provide functionality to custom parameter editors displayed in the Property Grid that is invoked from the Data Source wizard.</para>
- </summary>
- <value>An object implementing the <see cref="T:System.IServiceProvider"/> interface that is used to obtain the service object of a specific type.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditDataSourceContext.RepositoryItemsProvider">
- <summary>
- <para>Specifies an object that provides repository items for editing query parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditDataSourceContext.SolutionTypesProvider">
- <summary>
- <para>Specifies an object that provides access to the known types in the current solution.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.ObjectBinding.EditParametersContext">
- <summary>
- <para>Provides settings required to edit the parameters of an object data source.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.EditParametersContext.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.ObjectBinding.EditParametersContext"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditParametersContext.ParameterService">
- <summary>
- <para>Specifies an object that provides a service functionality to manage report parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditParametersContext.PropertyGridServices">
- <summary>
- <para>Specifies services that provide functionality to custom parameter editors displayed in the Property Grid that is invoked from the Data Source wizard.</para>
- </summary>
- <value>An object implementing the <see cref="T:System.IServiceProvider"/> interface that is used to obtain the service object of a specific type.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditParametersContext.RepositoryItemsProvider">
- <summary>
- <para>Specifies an object that provides repository items for editing query parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.ObjectBinding.EditParametersContext.SolutionTypesProvider">
- <summary>
- <para>Specifies an object that provides access to the known types in the current solution.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper">
- <summary>
- <para>Provides functionality to configure the connection to an <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/> in code.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditConstructor(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext)">
- <summary>
- <para>Invokes the Configure Constructor Settings dialog with the specified settings.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext"/> object.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditConstructor(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Invokes the Configure Constructor Settings dialog with the specified settings.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditConstructor(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.Wizard.OperationMode,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Invokes the Configure Constructor Settings dialog with the specified settings.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="operationMode">An <see cref="T:DevExpress.DataAccess.Wizard.OperationMode"/> enumeration value.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditConstructor(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.Wizard.OperationMode)">
- <summary>
- <para>Invokes the Configure Constructor Settings dialog with the specified settings.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="operationMode">An <see cref="T:DevExpress.DataAccess.Wizard.OperationMode"/> enumeration value.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditConstructor(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService)">
- <summary>
- <para>Invokes the Configure Constructor Settings dialog with the specified settings.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditConstructor(DevExpress.DataAccess.ObjectBinding.ObjectDataSource)">
- <summary>
- <para>Invokes the Configure Constructor Settings dialog with the specified settings.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditConstructor``1(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes the Configure Constructor Settings dialog with the specified settings.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.ObjectBinding.EditConstructorContext"/> object.</param>
- <param name="customizeWizard">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataMember(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.DataAccess.UI.ObjectBinding.EditDataMemberContext)">
- <summary>
- <para>Invokes a dialog that enables you to edit the data members of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.ObjectBinding.EditDataMemberContext"/> object.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataMember(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Invokes a dialog that enables you to edit the data members of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataMember(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService)">
- <summary>
- <para>Invokes a dialog that enables you to edit the data members of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataMember(DevExpress.DataAccess.ObjectBinding.ObjectDataSource)">
- <summary>
- <para>Invokes a dialog that enables you to edit the data members of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataMember``1(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.DataAccess.UI.ObjectBinding.EditDataMemberContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes a dialog that enables you to edit the data members of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.ObjectBinding.EditDataMemberContext"/> object.</param>
- <param name="customizeWizard">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.DataAccess.UI.ObjectBinding.EditDataSourceContext)">
- <summary>
- <para>Invokes a dialog that enables you to edit the settings of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.Excel.EditDataSourceContext"/> object.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Invokes a dialog that enables you to edit the settings of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.Wizard.OperationMode,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Invokes a dialog that enables you to edit the settings of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="operationMode">An <see cref="T:DevExpress.DataAccess.Wizard.OperationMode"/> enumeration value.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.Wizard.OperationMode)">
- <summary>
- <para>Invokes a dialog that enables you to edit the settings of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="operationMode">An <see cref="T:DevExpress.DataAccess.Wizard.OperationMode"/> enumeration value.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService)">
- <summary>
- <para>Invokes a dialog that enables you to edit the settings of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataSource(DevExpress.DataAccess.ObjectBinding.ObjectDataSource)">
- <summary>
- <para>Invokes a dialog that enables you to edit the settings of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditDataSource``1(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.DataAccess.UI.ObjectBinding.EditDataSourceContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes a dialog that enables you to edit the settings of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.Excel.EditDataSourceContext"/> object.</param>
- <param name="customizeWizard">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditParameters(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.DataAccess.UI.ObjectBinding.EditParametersContext)">
- <summary>
- <para>Invokes a dialog that enables you to edit the parameters of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.ObjectBinding.EditParametersContext"/> object.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditParameters(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Invokes a dialog that enables you to edit the parameters of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditParameters(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.Entity.ProjectModel.ISolutionTypesProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IParameterService)">
- <summary>
- <para>Invokes a dialog that enables you to edit the parameters of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="solutionTypesProvider">An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditParameters(DevExpress.DataAccess.ObjectBinding.ObjectDataSource)">
- <summary>
- <para>Invokes a dialog that enables you to edit the parameters of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.ObjectBinding.ObjectDataSourceUIHelper.EditParameters``1(DevExpress.DataAccess.ObjectBinding.ObjectDataSource,DevExpress.DataAccess.UI.ObjectBinding.EditParametersContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes a dialog that enables you to edit the parameters of an object data source.</para>
- </summary>
- <param name="objectDataSource">An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.ObjectBinding.EditParametersContext"/> object.</param>
- <param name="customizeWizard">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was closed by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="N:DevExpress.DataAccess.UI.Sql">
- <summary>
- <para>Provides an application programming interface (API) to access the graphical user interface (GUI) related to configuring a SQL data source connection.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext">
- <summary>
- <para>Contains settings used to display the Connection Editor dialog when the SqlDataSourceUIHelper.ConfigureConnection method is called.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext.ConnectionProviderService">
- <summary>
- <para>Specifies an object that enables the data connection’s serialization.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionProviderService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext.ConnectionStorageService">
- <summary>
- <para>Specifies an object that provides a service functionality to store the data connection settings.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext.DatabaseCredentialsSavingBehavior">
- <summary>
- <para>Specifies whether or not to serialize database credentials along with document layouts (e.g., report or dashboards). Optionally, you can enable your end-users to select the required behavior.</para>
- </summary>
- <value>A <see cref="T:DevExpress.DataAccess.Wizard.SensitiveInfoSavingBehavior"/> enumeration value.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext.DataProviders">
- <summary>
- <para>Specifies the list of data providers available for a data connection.</para>
- </summary>
- <value>A collection of <see cref="T:DevExpress.DataAccess.UI.Wizard.ProviderLookupItem"/> objects.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext.Options">
- <summary>
- <para>Specifies the settings of the Connection Editor wizard options.</para>
- </summary>
- <value>A <see cref="T:DevExpress.DataAccess.Wizard.SqlWizardOptions"/> enumeration value.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Sql.EditQueryContext">
- <summary>
- <para>Contains settings used to display the <see href="https://docs.devexpress.com/XtraReports/17308/visual-studio-report-designer/sql-query-builder">Query Builder</see> dialog when the SqlDataSourceUIHelper.EditQuery or SqlDataSourceUIHelper.ManageQueries method is called.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.EditQueryContext.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> class.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.EditQueryContext.ConnectionProviderService">
- <summary>
- <para>Specifies an object that enables the data connection’s serialization.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionProviderService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.EditQueryContext.DBSchemaProviderEx">
- <summary>
- <para>Specifies a database schema provider for the Query Builder.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProviderEx"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.EditQueryContext.DisplayNameProvider">
- <summary>
- <para>Specifies a provider of display names to data fields in the Query Builder dialog.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.Data.IDisplayNameProvider"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.EditQueryContext.Options">
- <summary>
- <para>Specifies the Edit Query dialog options.</para>
- </summary>
- <value>A <see cref="T:DevExpress.DataAccess.Wizard.SqlWizardOptions"/> enumeration value.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.EditQueryContext.ParameterService">
- <summary>
- <para>Specifies an object that provides a service functionality to manage report parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.EditQueryContext.PropertyGridServices">
- <summary>
- <para>Specifies an object that provides a service functionality to the Property Grid.</para>
- </summary>
- <value>An object implementing the <see cref="T:System.IServiceProvider"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.EditQueryContext.QueryValidator">
- <summary>
- <para>Specifies an object that is used to validate SQL strings.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.EditQueryContext.RepositoryItemsProvider">
- <summary>
- <para>Specifies an object that provides repository items for editing query parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.EditQueryContext.ResultSchemaProvider">
- <summary>
- <para>Specifies the provider of a data source result schema.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IResultSchemaProvider"/> interface.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Sql.ISqlEditorsCustomizationService">
- <summary>
- <para>If implemented, enables you to display a custom Query Editor and Data Connections Editor.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.ISqlEditorsCustomizationService.CustomizeEditor(DevExpress.DataAccess.UI.Sql.SqlEditorId,DevExpress.DataAccess.UI.Wizard.IWizardCustomization{DevExpress.DataAccess.Wizard.Model.SqlDataSourceModel})">
- <summary>
- <para>Replaces the standard Query Editor or Data Connections Editor with a custom one.</para>
- </summary>
- <param name="editor">A <see cref="T:DevExpress.DataAccess.UI.Sql.SqlEditorId"/> enumeration value, specifying the editor to be customized.</param>
- <param name="tool">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface with the specified <see cref="T:DevExpress.DataAccess.Wizard.Model.SqlDataSourceModel"/> type parameter.</param>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Sql.ManageRelationsContext">
- <summary>
- <para>Contains settings used to display the Master-Detail Relations Editor dialog when the SqlDataSourceUIHelper.ManageRelations method is called.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.ManageRelationsContext.#ctor">
- <summary>
- <para>Initialize a new instance of the <see cref="T:DevExpress.DataAccess.UI.Sql.ManageRelationsContext"/> class with default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.ManageRelationsContext.ConnectionProviderService">
- <summary>
- <para>Specifies an object that enables the data connection’s serialization.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionProviderService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.ManageRelationsContext.DBSchemaProviderEx">
- <summary>
- <para>Specifies a database schema provider for the Master-Detail Relations Editor.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProviderEx"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.ManageRelationsContext.LegacyEditor">
- <summary>
- <para>Specifies the kind of Master-Detail Relation Editor to use in the application.</para>
- </summary>
- <value>true, to use an older editor version; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.ManageRelationsContext.LookAndFeel">
- <summary>
- <para>Specifies the look and feel settings for the Master-Detail Relations Editor.</para>
- </summary>
- <value>A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look and feel settings for editors.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.ManageRelationsContext.Owner">
- <summary>
- <para>Specifying the owner window of the Master-Detail Relations Editor.</para>
- </summary>
- <value>An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface, specifying the owner window.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext">
- <summary>
- <para>Specifies the <see href="https://docs.devexpress.com/WindowsForms/119019/common-features/data-source-wizard/query-builder">Query Builder</see> options when using it in a standalone mode.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.ConnectionProviderService">
- <summary>
- <para>Specifies an object that enables the data connection’s serialization.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionProviderService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.CustomQueryValidator">
- <summary>
- <para>Provides access to a custom SQL query validator.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.DBSchemaProvider">
- <summary>
- <para>Specifies a database schema provider for the Query Builder.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProviderEx"/> interface that provides the capability to customize the data source schema.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.DisplayNameProvider">
- <summary>
- <para>Specifies a provider of display names to data fields in the Query Builder dialog.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.Data.IDisplayNameProvider"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.EnableCustomSql">
- <summary>
- <para>Specifies whether or not the Query Builder allows end-users to create and execute custom SQL queries.</para>
- </summary>
- <value>true, to allow end-users to use custom SQL queries; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.ExpressionEditorContext">
- <summary>
- <para>Specifies the object enabling customization of the <see href="https://docs.devexpress.com/WindowsForms/6212/common-features/expressions/expression-editor">Expression Editor</see>.</para>
- </summary>
- <value>A <see cref="T:DevExpress.Data.Controls.ExpressionEditor.ExpressionEditorContext"/> object.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.LegacyExpressionEditor">
- <summary>
- <para>Enables a user to switch to an older version of the <see href="https://docs.devexpress.com/WindowsForms/6212/common-features/expressions/expression-editor">Expression Editor</see> that does not support intelligent code completion.</para>
- </summary>
- <value>true, to use the older <see href="https://docs.devexpress.com/WindowsForms/6212/common-features/expressions/expression-editor">Expression Editor</see> version; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.ParameterService">
- <summary>
- <para>Provides access to the service for managing report parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.PropertyGridServices">
- <summary>
- <para>Specifies an object that provides a service functionality to the Property Grid.</para>
- </summary>
- <value>An object implementing the <see cref="T:System.IServiceProvider"/> interface that is used to obtain the service object of a specific type.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.QueryBuilderLight">
- <summary>
- <para>Specifies whether or not the <see href="https://docs.devexpress.com/WindowsForms/119019/common-features/data-source-wizard/query-builder">Query Builder</see> enables end-users to specify custom SQL queries, column aliases and expressions.</para>
- </summary>
- <value>true, to disallow end-users from specifying custom SQL queries, column aliases and expressions; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.QueryBuilderTreeListView">
- <summary>
- <para>Enables a table-like interface for selecting fields in the Query Builder (instead of a <see href="https://docs.devexpress.com/WindowsForms/114833/controls-and-libraries/diagrams">diagram</see>-based control).</para>
- </summary>
- <value>true, to enable a table-like interface in the Query Builder; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.RepositoryItemsProvider">
- <summary>
- <para>Specifies an object that provides repository items for editing query parameters.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items to manage query parameters.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext.ResultSchemaProvider">
- <summary>
- <para>Specifies the provider of a data source result schema.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IResultSchemaProvider"/> interface.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Sql.QueryBuilderRunner">
- <summary>
- <para>Enables you to integrate the <see href="https://docs.devexpress.com/WindowsForms/119019/common-features/data-source-wizard/query-builder">Query Builder</see> into your application.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.QueryBuilderRunner.#ctor(DevExpress.DataAccess.Sql.DBSchema,DevExpress.DataAccess.Sql.SqlDataConnection,DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Sql.QueryBuilderRunner"/> class with the specified settings.</para>
- </summary>
- <param name="dbSchema">A <see cref="T:DevExpress.DataAccess.Sql.DBSchema"/> object that is the data source schema.</param>
- <param name="sqlDataConnection">An <see cref="T:DevExpress.DataAccess.Sql.SqlDataConnection"/> object that specifies a connection to a data provider.</param>
- <param name="context">A <see cref="T:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext"/> object.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.QueryBuilderRunner.#ctor(DevExpress.DataAccess.Sql.IDBSchemaProviderEx,DevExpress.DataAccess.Sql.DBSchema,DevExpress.DataAccess.Sql.SqlDataConnection,System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel,System.Boolean,System.Boolean,System.Boolean,System.Boolean,DevExpress.Data.IDisplayNameProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator,DevExpress.DataAccess.Wizard.Services.IExceptionHandler,DevExpress.Data.Controls.ExpressionEditor.ExpressionEditorContext,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Sql.QueryBuilderRunner"/> class with the specified settings.</para>
- </summary>
- <param name="schemaProvider">An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProviderEx"/> interface that provides the capability to customize the data source schema.</param>
- <param name="dbSchema">A <see cref="T:DevExpress.DataAccess.Sql.DBSchema"/> object that is the data source schema.</param>
- <param name="connection">An <see cref="T:DevExpress.DataAccess.Sql.SqlDataConnection"/> object that specifies a connection to a data provider.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object.</param>
- <param name="noCustomSql">true, to disable custom SQL editing; otherwise, false.</param>
- <param name="light">true, to disallow end-users from specifying custom SQL queries, column aliases and expressions; otherwise, false.</param>
- <param name="noDiagramControl">true, to use a table-based user interface; false, to use a <see href="https://docs.devexpress.com/WindowsForms/114834/controls-and-libraries/diagrams/diagram-control">diagram</see>-based user interface.</param>
- <param name="legacyExpressionEditor">true, to use the older <see href="https://docs.devexpress.com/WindowsForms/6212/common-features/expressions/expression-editor">Expression Editor</see> version; otherwise, false.</param>
- <param name="displayNameProvider">An object implementing the <see cref="T:DevExpress.Data.IDisplayNameProvider"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface that provides a service functionality to manage query parameters.</param>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface that provides custom validation logic for SQL queries.</param>
- <param name="loaderExceptionHandler">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IExceptionHandler"/> interface.</param>
- <param name="context">An <see cref="T:DevExpress.Data.Controls.ExpressionEditor.ExpressionEditorContext"/> object.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items to manage query parameters.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.QueryBuilderRunner.#ctor(DevExpress.DataAccess.Sql.IDBSchemaProviderEx,DevExpress.DataAccess.Sql.DBSchema,DevExpress.DataAccess.Sql.SqlDataConnection,System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel,System.Boolean,System.Boolean,System.Boolean,System.Boolean,DevExpress.Data.IDisplayNameProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator,DevExpress.DataAccess.Wizard.Services.IExceptionHandler)">
- <summary>
- <para>This constructor has become obsolete. Use another constructor instead.</para>
- </summary>
- <param name="schemaProvider">An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProviderEx"/> interface that provides the capability to customize the data source schema.</param>
- <param name="dbSchema">A <see cref="T:DevExpress.DataAccess.Sql.DBSchema"/> object that is the data source schema.</param>
- <param name="connection">An <see cref="T:DevExpress.DataAccess.Sql.SqlDataConnection"/> object that specifies a connection to a data provider.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object.</param>
- <param name="noCustomSql">true, to disable custom SQL editing; otherwise, false.</param>
- <param name="light">true, to disallow end-users from specifying custom SQL queries, column aliases and expressions; otherwise, false.</param>
- <param name="noDiagramControl">true, to use a table-based user interface; false, to use a <see href="https://docs.devexpress.com/WindowsForms/114834/controls-and-libraries/diagrams/diagram-control">diagram</see>-based user interface.</param>
- <param name="legacyExpressionEditor">true, to use the older <see href="https://docs.devexpress.com/WindowsForms/6212/common-features/expressions/expression-editor">Expression Editor</see> version; otherwise, false.</param>
- <param name="displayNameProvider">An object implementing the <see cref="T:DevExpress.Data.IDisplayNameProvider"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface that provides a service functionality to manage query parameters.</param>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface that provides custom validation logic for SQL queries.</param>
- <param name="loaderExceptionHandler">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IExceptionHandler"/> interface.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.QueryBuilderRunner.#ctor(DevExpress.DataAccess.Sql.IDBSchemaProviderEx,DevExpress.DataAccess.Sql.DBSchema,DevExpress.DataAccess.Sql.SqlDataConnection,System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel,System.Boolean,System.Boolean,System.Boolean,System.Boolean,DevExpress.Data.IDisplayNameProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator)">
- <summary>
- <para>This constructor has become obsolete. Use another constructor instead.</para>
- </summary>
- <param name="schemaProvider">An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProviderEx"/> interface that provides the capability to customize the data source schema.</param>
- <param name="dbSchema">A <see cref="T:DevExpress.DataAccess.Sql.DBSchema"/> object that is the data source schema.</param>
- <param name="connection">An <see cref="T:DevExpress.DataAccess.Sql.SqlDataConnection"/> object that specifies a connection to a data provider.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object.</param>
- <param name="noCustomSql">true, to disable custom SQL editing; otherwise, false.</param>
- <param name="light">true, to disallow end-users from specifying custom SQL queries, column aliases and expressions; otherwise, false.</param>
- <param name="noDiagramControl">true, to use a table-based user interface; false, to use a <see href="https://docs.devexpress.com/WindowsForms/114834/controls-and-libraries/diagrams/diagram-control">diagram</see>-based user interface.</param>
- <param name="legacyExpressionEditor">true, to use the older <see href="https://docs.devexpress.com/WindowsForms/6212/common-features/expressions/expression-editor">Expression Editor</see> version; otherwise, false.</param>
- <param name="displayNameProvider">An object implementing the <see cref="T:DevExpress.Data.IDisplayNameProvider"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface that provides a service functionality to manage query parameters.</param>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface that provides custom validation logic for SQL queries.</param>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Sql.RebuildResultSchemaContext">
- <summary>
- <para>Contains settings used to update a data source schema when calling the SqlDataSourceUIHelper.RebuildResultSchema method.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.RebuildResultSchemaContext.#ctor">
- <summary>
- <para>Initialize a new instance of the <see cref="T:DevExpress.DataAccess.UI.Sql.RebuildResultSchemaContext"/> class with default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.RebuildResultSchemaContext.ConnectionProviderService">
- <summary>
- <para>Specifies an object that enables the data connection’s serialization.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionProviderService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.RebuildResultSchemaContext.LookAndFeel">
- <summary>
- <para>Specifies the look and feel settings for the Rebuild Schema dialog.</para>
- </summary>
- <value>A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look and feel settings for editors.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.RebuildResultSchemaContext.Owner">
- <summary>
- <para>Specifying the owner window of the Rebuild Schema dialog.</para>
- </summary>
- <value>An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface, specifying the owner window.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.RebuildResultSchemaContext.ParameterService">
- <summary>
- <para>Specifies an object that provides a service functionality to manage report parameters created in the Report Wizard.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Sql.RebuildResultSchemaContext.ShowSuccessMessage">
- <summary>
- <para>Specifies whether or not to show a message notifying that the resulting schema has been rebuilt successfully.</para>
- </summary>
- <value>true to show the message; otherwise false.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper">
- <summary>
- <para>Provides functionality to configure the connection to a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> in code.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.EditQueryContext)">
- <summary>
- <para>Invokes the Query Editor dialog.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> object, specifying the Query Designer settings.</param>
- <returns>true, if the wizard page was switched by clicking the Next or Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An IDBSchemaProvider, providing access to the schema of the SQL data base.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An IDBSchemaProvider, providing access to the schema of the SQL data base.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery(DevExpress.DataAccess.Sql.SqlDataSource)">
- <summary>
- <para>Invokes the Query Editor dialog.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <returns>true, if the wizard page was switched by clicking the Next or Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery``1(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.EditQueryContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes the Query Editor dialog.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> object, specifying the Query Designer settings.</param>
- <param name="customizeWizard">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the wizard page was switched by clicking the Next or Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery``1(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}},System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery<TModel> overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <param name="propertyGridServices">An object implementing the System.IServiceProvider interface that provides access to services managing property grid functionality.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface, which provides custom query validation logic.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery``1(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}},System.IServiceProvider)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery<TModel> overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <param name="propertyGridServices">An object implementing the System.IServiceProvider interface that provides access to services managing property grid functionality.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery``1(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery<TModel> overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery``1(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}},System.IServiceProvider)">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery<TModel> overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface that provides access to services managing property grid functionality.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQuery``1(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Use another SqlDataSourceUIHelper.AddQuery<TModel> overload that accepts a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> and <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> as parameters.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQueryWithQueryBuilder(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext,DevExpress.DataAccess.UI.Sql.QueryBuilderRunnerDelegate)">
- <summary>
- <para>Invokes the <see href="https://docs.devexpress.com/WindowsForms/119019/common-features/data-source-wizard/query-builder">Query Builder</see>.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="context">A <see cref="T:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext"/> object.</param>
- <param name="createQueryBuilderRunner">A <see cref="T:DevExpress.DataAccess.UI.Sql.QueryBuilderRunnerDelegate"/> object.</param>
- <returns>true, if the Query Builder was closed by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQueryWithQueryBuilder(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext)">
- <summary>
- <para>Invokes the <see href="https://docs.devexpress.com/WindowsForms/119019/common-features/data-source-wizard/query-builder">Query Builder</see>.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <param name="context">A <see cref="T:DevExpress.DataAccess.UI.Sql.QueryBuilderRunnerDelegate"/> object.</param>
- <returns>true, if the Query Builder was closed by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.AddQueryWithQueryBuilder(DevExpress.DataAccess.Sql.SqlDataSource)">
- <summary>
- <para>Invokes the <see href="https://docs.devexpress.com/WindowsForms/119019/common-features/data-source-wizard/query-builder">Query Builder</see>.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> to which the resulting query will be added.</param>
- <returns>true, if the Query Builder was closed by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext)">
- <summary>
- <para>Invokes the Connection Editor with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="context">A <see cref="T:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext"/> object, specifying the editor settings.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IConnectionStorageService)">
- <summary>
- <para>Use an appropriate overload of the SqlDataSourceUIHelper.ConfigureConnection method instead.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="wizardRunnerContext">An object implementing the IWizardRunnerContext interface.</param>
- <param name="connectionStorageService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Wizard.Services.IConnectionStorageService)">
- <summary>
- <para>Invokes the Connection Editor with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="connectionStorageService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Connection Editor with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Connection Editor with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection(DevExpress.DataAccess.Sql.SqlDataSource)">
- <summary>
- <para>Invokes the Connection Editor with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection``1(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes the Connection Editor with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="context">A <see cref="T:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext"/> object, specifying the editor settings.</param>
- <param name="customizeWizard">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnection``1(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IConnectionStorageService,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Use an appropriate overload of the SqlDataSourceUIHelper.ConfigureConnection method instead.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="wizardRunnerContext">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="connectionStorageService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService"/> interface.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext)">
- <summary>
- <para>Invokes the Connection Editor to edit the parameters used to establish a connection to a data base.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="context">A <see cref="T:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext"/> object, specifying the editor settings.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IConnectionStorageService)">
- <summary>
- <para>Use an appropriate overload of the SqlDataSourceUIHelper.ConfigureConnection method instead.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="context">An object implementing the IWizardRunnerContext interface.</param>
- <param name="connectionStorageService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Wizard.Services.IConnectionStorageService)">
- <summary>
- <para>Invokes the Connection Editor to edit the parameters used to establish a connection to a database.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="connectionStorageService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Connection Editor to edit the parameters used to establish a connection to a data base.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Connection Editor to edit the parameters used to establish a connection to a data base.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters(DevExpress.DataAccess.Sql.SqlDataSource)">
- <summary>
- <para>Invokes the Connection Editor to edit the parameters used to establish a connection to a database.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters``1(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes the Connection Editor to edit the parameters used to establish a connection to a data base.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="context">A <see cref="T:DevExpress.DataAccess.UI.Sql.ConfigureConnectionContext"/> object, specifying the editor settings.</param>
- <param name="customizeWizard">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ConfigureConnectionParameters``1(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.Wizard.Services.IConnectionStorageService,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Use an appropriate overload of the SqlDataSourceUIHelper.ConfigureConnection method instead.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="connectionStorageService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService"/> interface.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.DataAccess.UI.Sql.EditQueryContext)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> object, specifying the Query Builder settings.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An IDBSchemaProvider, providing access to the schema of the SQL data base</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery(DevExpress.DataAccess.Sql.SqlQuery)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery``1(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.DataAccess.UI.Sql.EditQueryContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> object, specifying the Query Builder settings.</param>
- <param name="customizeWizard">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery``1(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}},System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <param name="propertyGridServices">An object implementing the System.IServiceProvider interface that provides access to services managing property grid functionality.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface, which provides custom query validation logic.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery``1(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}},System.IServiceProvider)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <param name="propertyGridServices">An object implementing the System.IServiceProvider interface that provides access to services managing property grid functionality.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery``1(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items for editing query parameters.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery``1(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}},System.IServiceProvider)">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <param name="propertyGridServices">An object implementing the System.IServiceProvider interface that provides access to services managing property grid functionality.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQuery``1(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes the Query Builder to edit the specified query.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQueryWithQueryBuilder(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext,DevExpress.DataAccess.UI.Sql.QueryBuilderRunnerDelegate)">
- <summary>
- <para>Invokes the <see href="https://docs.devexpress.com/WindowsForms/119019/common-features/data-source-wizard/query-builder">Query Builder</see>.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="context">A <see cref="T:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext"/> object.</param>
- <param name="createQueryBuilderRunner">A <see cref="T:DevExpress.DataAccess.UI.Sql.QueryBuilderRunnerDelegate"/> object.</param>
- <returns>true, if the Query Builder was closed by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQueryWithQueryBuilder(DevExpress.DataAccess.Sql.SqlQuery,DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext)">
- <summary>
- <para>Invokes the <see href="https://docs.devexpress.com/WindowsForms/119019/common-features/data-source-wizard/query-builder">Query Builder</see>.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <param name="context">A <see cref="T:DevExpress.DataAccess.UI.Sql.QueryBuilderEditQueryContext"/> object.</param>
- <returns>true, if the Query Builder was closed by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.EditQueryWithQueryBuilder(DevExpress.DataAccess.Sql.SqlQuery)">
- <summary>
- <para>Invokes the <see href="https://docs.devexpress.com/WindowsForms/119019/common-features/data-source-wizard/query-builder">Query Builder</see>.</para>
- </summary>
- <param name="query">A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> to be edited.</param>
- <returns>true, if the Query Builder was closed by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.EditQueryContext)">
- <summary>
- <para>Invokes the Manage Queries dialog window with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> object, specifying the Manage Queries dialog settings.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{DevExpress.DataAccess.Wizard.Model.SqlDataSourceModel}},DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator)">
- <summary>
- <para>Invokes the Manage Queries dialog window with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface, which provides custom query validation logic.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{DevExpress.DataAccess.Wizard.Model.SqlDataSourceModel}})">
- <summary>
- <para>Invokes the Manage Queries dialog window with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="callback">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider,DevExpress.DataAccess.Wizard.Services.IParameterService)">
- <summary>
- <para>Invokes the Manage Queries dialog window with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider)">
- <summary>
- <para>Invokes the Manage Queries dialog window with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Manage Queries dialog window with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Manage Queries dialog window with the specified settings.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries(DevExpress.DataAccess.Sql.SqlDataSource)">
- <summary>
- <para>Invokes the Manage Queries dialog window.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object.</param>
- <returns>true, if the OK button is clicked in the dialog window; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageQueries``1(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.EditQueryContext,System.Action{DevExpress.DataAccess.UI.Wizard.IWizardCustomization{``0}})">
- <summary>
- <para>Invokes the Query Builder to manage the specified queries.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="context">An <see cref="T:DevExpress.DataAccess.UI.Sql.EditQueryContext"/> object, specifying the Query Designer settings.</param>
- <param name="customizeWizard">A <see cref="T:System.Action"/> delegate of an object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1"/> interface.</param>
- <returns>true, if the dialog was finished by clicking the Finish button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageRelations(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.ManageRelationsContext)">
- <summary>
- <para>Invokes the Master-Detail Relations Editor to specify the key data fields by which a pair of queries is related.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="context">A <see cref="T:DevExpress.DataAccess.UI.Sql.ManageRelationsContext"/> object, specifying the Master-Detail Relations Editor settings.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageRelations(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Sql.IDBSchemaProvider)">
- <summary>
- <para>Invokes the Master-Detail Relations Editor to specify the key data fields by which a pair of queries is related.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="dbSchemaProvider">An object implementing the IDBSchemaProvider interface.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageRelations(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Master-Detail Relations Editor to specify the key data fields by which a pair of queries is related.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageRelations(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Master-Detail Relations Editor to specify the key data fields by which a pair of queries is related.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.ManageRelations(DevExpress.DataAccess.Sql.SqlDataSource)">
- <summary>
- <para>Invokes the Master-Detail Relations Editor to specify the key data fields by which a pair of queries is related.</para>
- </summary>
- <param name="sqlDataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.RebuildResultSchema(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.DataAccess.UI.Sql.RebuildResultSchemaContext)">
- <summary>
- <para>Updates the data source schema available on the client in accordance to the current data source structure.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="context">A <see cref="T:DevExpress.DataAccess.UI.Sql.RebuildResultSchemaContext"/> object that contains settings used to update a data source schema.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.RebuildResultSchema(DevExpress.DataAccess.Sql.SqlDataSource,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.DataAccess.Wizard.Services.IParameterService,System.Boolean)">
- <summary>
- <para>Updates the data source schema available on the client in accordance to the current data source structure.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the application’s look and feel settings.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the owner of the current dialog window.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="showSuccessMessage">true to acknowledge the task completion upon successfully updating the schema; otherwise false.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Sql.SqlDataSourceUIHelper.RebuildResultSchema(DevExpress.DataAccess.Sql.SqlDataSource)">
- <summary>
- <para>Updates the data source schema available on the client in accordance to the current data source structure.</para>
- </summary>
- <param name="dataSource">A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object, specifying the database connection.</param>
- <returns>true, if the dialog was finished by clicking the OK button; otherwise, false.</returns>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Sql.SqlEditorId">
- <summary>
- <para>Lists the editors that can be customized by implementing the <see cref="T:DevExpress.DataAccess.UI.Sql.ISqlEditorsCustomizationService"/> interface.</para>
- </summary>
- </member>
- <member name="F:DevExpress.DataAccess.UI.Sql.SqlEditorId.Connection">
- <summary>
- <para>Identifies the Data Connections Editor.</para>
- <para />
- </summary>
- </member>
- <member name="F:DevExpress.DataAccess.UI.Sql.SqlEditorId.Query">
- <summary>
- <para>Identifies the Query Editor.</para>
- <para />
- </summary>
- </member>
- <member name="N:DevExpress.DataAccess.UI.Wizard">
- <summary>
- <para>Contains classes used to manage UI settings of the Data Source wizard and Query Builder.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1">
- <summary>
- <para>Provides functionality to customize the <see href="https://docs.devexpress.com/WindowsForms/118350/common-features/data-source-wizard">Data Source Wizard</see>.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1.Model">
- <summary>
- <para>Provides access to a document model associated with a custom wizard page.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraReports.Wizards.XtraReportModel"/> or <see cref="T:DevExpress.DashboardCommon.DashboardDataSourceModel"/> object.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1.RegisterInstance``1(``0)">
- <summary>
- <para>Registers a specified service instance.</para>
- </summary>
- <param name="instance">A server instance.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1.RegisterPage``2">
- <summary>
- <para>Registers a custom wizard page.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1.RegisterPageView``2">
- <summary>
- <para>Registers a custom wizard page view.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1.RegisterType``2">
- <summary>
- <para>Registers a service type.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1.Resolve(System.Type)">
- <summary>
- <para>Returns the list of available data providers from the internal container.</para>
- </summary>
- <param name="serviceType">A <see cref="T:System.Type"/> object.</param>
- <returns>A <see cref="T:System.Object"/> value.</returns>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1.StartPage">
- <summary>
- <para>Specifies the starting page of a wizard.</para>
- </summary>
- <value>A <see cref="T:System.Type"/> object.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1.WizardSize">
- <summary>
- <para>Specifies the dimensions of the wizard window.</para>
- </summary>
- <value>A System.Drawing.Size structure.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.IWizardCustomization`1.WizardTitle">
- <summary>
- <para>Specifies the title of the wizard window.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value.</value>
- </member>
- <member name="N:DevExpress.DataAccess.UI.Wizard.Services">
- <summary>
- <para>Contains interfaces that provide additional functionality to the Data Source Wizard.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider">
- <summary>
- <para>When implemented by a class, provides repository items for editing query parameters.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider.GetRepositoryItem(System.Type)">
- <summary>
- <para>Gets a repository item for editing a parameter of the specified type.</para>
- </summary>
- <param name="type">The type of a parameter to edit.</param>
- <returns>A <see cref="T:DevExpress.XtraEditors.Repository.RepositoryItem"/> object.</returns>
- </member>
- <member name="N:DevExpress.DataAccess.UI.Wizard.Views">
- <summary>
- <para>Contains classes that provide the user interface functionality to the Data Source Wizard views.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseConnectionPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118392/common-features/data-source-wizard/wizard-pages/connect-to-a-database/select-a-data-connection">Select a Data Connection</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseConnectionPageView.#ctor(DevExpress.DataAccess.Wizard.SqlWizardOptions)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseConnectionPageView"/> class with the specified options.</para>
- </summary>
- <param name="options">An object that specifies the wizard options.</param>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseConnectionPageView.Changed">
- <summary>
- <para>Occurs when the selected item in the list of available connections is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseConnectionPageView.ExistingConnectionName">
- <summary>
- <para>Gets the name of the connection selected from the list of available connections.</para>
- </summary>
- <value>A string specifying the name of the selected connection.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseConnectionPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseConnectionPageView.SetConnections(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- <para>Changes the list of available connections on a wizard page.</para>
- </summary>
- <param name="connectionNames">A collection of strings specifying connection names.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseConnectionPageView.SetSelectedConnection(System.String)">
- <summary>
- <para>Changes the selected item from the list of available connections.</para>
- </summary>
- <param name="connectionName">A string that specifies the name of the connection to be selected.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseConnectionPageView.ShouldCreateNewConnection">
- <summary>
- <para>Gets whether to create a new data connection or use an existing one from the list.</para>
- </summary>
- <value>true, to create a new connection; otherwise, false.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataProviderPageView">
- <summary>
- <para>Supplies a view for the Select a Data Connection Type page of the <see href="https://docs.devexpress.com/XtraReports/120164/visual-studio-report-designer/data-source-wizard">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataProviderPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataProviderPageView"/> class.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataProviderPageView.DataSourceType">
- <summary>
- <para>Specifies the selected data source type.</para>
- </summary>
- <value>A value that specifies the data source type.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataProviderPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the Select a Data Connection Type wizard page.</para>
- </summary>
- <value>The page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataProviderPageView.InitializeDataProviders(DevExpress.DataAccess.Wizard.Services.DataSourceTypes,System.Collections.Generic.IEnumerable{DevExpress.DataAccess.UI.Wizard.ProviderLookupItem})">
- <summary>
- <para>Initializes a new instance of the ChooseDataProviderPageView class with the specified settings.</para>
- </summary>
- <param name="dataSourceTypes">A <see cref="T:DevExpress.DataAccess.Wizard.Services.DataSourceTypes"/> object that contains available data source types.</param>
- <param name="providers">A collection of data providers.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataProviderPageView.ProviderKey">
- <summary>
- <para>Identifies the data store provider.</para>
- </summary>
- <value>The data store provider.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceNamePageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118390/common-features/data-source-wizard/wizard-pages/start-pages/enter-the-data-source-name">Enter the Data Source Name</see> page of the Data Source Wizard.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceNamePageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceNamePageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceNamePageView.DataSourceName">
- <summary>
- <para>Specifies the data source name.</para>
- </summary>
- <value>A string that specifies the data source name.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceNamePageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceNamePageView.ShowErrorMessage">
- <summary>
- <para>Displays an error message when a data source with the specified name already exists.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceTypePageView">
- <summary>
- <para>Provides a view for the Select the Data Source Type page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceTypePageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceTypePageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceTypePageView.#ctor(DevExpress.DataAccess.Wizard.Services.DataSourceTypes)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceTypePageView"/> class with specified settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceTypePageView.DataSourceType">
- <summary>
- <para>Specifies the selected data source type.</para>
- </summary>
- <value>A value that specifies the data source type.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseDataSourceTypePageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118400/common-features/data-source-wizard/wizard-pages/connect-to-an-entity-framework-data-source/select-the-connection-string">Select the Connection String</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView.Changed">
- <summary>
- <para>Occurs when the selected item in the list of available connections is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView.Initialize(DevExpress.DataAccess.Wizard.Views.ConfigureConnectionMode,System.Collections.Generic.IEnumerable{System.String},System.Boolean)">
- <summary>
- <para>Initializes a wizard page with the list of available connections.</para>
- </summary>
- <param name="configureMode">The type of the data connection to an Entity Framework data source.</param>
- <param name="availableConnections">The list of available data connections.</param>
- <param name="showConnectionsList">true to display the list of available data connections; otherwise, false.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView.Mode">
- <summary>
- <para>Specifies the type of the data connection to an Entity Framework data source.</para>
- </summary>
- <value>The type of the data connection to an Entity Framework data source.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView.NewConnectionName">
- <summary>
- <para>Specifies the name of a new data connection.</para>
- </summary>
- <value>The name of a new data connection.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView.NewConnectionString">
- <summary>
- <para>Specifies the connection string used to establish a connection to an Entity Framework data source.</para>
- </summary>
- <value>The connection string.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView.SelectedConnectionName">
- <summary>
- <para>Specifies the name of the connection selected from the list of available connections.</para>
- </summary>
- <value>The name of the connection selected from the list of available connections.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView.SetCanSaveToStorage(System.Boolean)">
- <summary>
- <para>Sets whether the connection string can be saved to the dedicated storage.</para>
- </summary>
- <param name="value">true if the connection string can be saved to the storage; otherwise, false.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFConnectionStringPageView.ShouldSaveConnectionString">
- <summary>
- <para>Specifies whether to save the connection string to the dedicated storage.</para>
- </summary>
- <value>true if the connection string can be saved to the storage; otherwise, false.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFContextPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118399/common-features/data-source-wizard/wizard-pages/connect-to-an-entity-framework-data-source/select-a-data-context">Select the Data Context</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFContextPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFContextPageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFContextPageView.#ctor(DevExpress.DataAccess.Wizard.EFWizardOptions)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFContextPageView"/> class with the specified settings.</para>
- </summary>
- <param name="options">An <see cref="T:DevExpress.DataAccess.Wizard.EFWizardOptions"/> enumeration value.</param>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFContextPageView.BrowseForAssembly">
- <summary>
- <para>Occurs after the Browse button is clicked on a wizard page and an assembly is selected.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFContextPageView.ContextName">
- <summary>
- <para>Specifies the item selected in the list of available data contexts.</para>
- </summary>
- <value>A string that specifies the selected data context.</value>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFContextPageView.ContextNameChanged">
- <summary>
- <para>Occurs when the selected item in the list of available data contexts is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFContextPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFContextPageView.Initialize">
- <summary>
- <para>Initializes a wizard page with a list of available data contexts.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFContextPageView.RefreshContextList(System.Collections.Generic.IEnumerable{DevExpress.Entity.Model.IContainerInfo})">
- <summary>
- <para>Changes the list of available data contexts.</para>
- </summary>
- <param name="containers">A collection of <see cref="T:DevExpress.Entity.Model.IContainerInfo"/> objects containing settings of data contexts.</param>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFDataMemberPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118403/common-features/data-source-wizard/wizard-pages/connect-to-an-entity-framework-data-source/select-a-data-member">Select a Data Member</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFDataMemberPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFDataMemberPageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFDataMemberPageView.DataMember">
- <summary>
- <para>Specifies the name of the selected data member.</para>
- </summary>
- <value>A string that specifies the name of the selected data member.</value>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFDataMemberPageView.DataMemberChanged">
- <summary>
- <para>Occurs when the selected item in the list of available members is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFDataMemberPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFDataMemberPageView.Initialize(System.Collections.Generic.IEnumerable{DevExpress.Xpo.DB.DBTable},System.Collections.Generic.IEnumerable{DevExpress.Xpo.DB.DBStoredProcedure},System.String)">
- <summary>
- <para>Initializes a wizard page with the list of available data members.</para>
- </summary>
- <param name="tables">A collection of the <see cref="T:DevExpress.Xpo.DB.DBTable"/> objects specifying tables from an Entity Framework data source.</param>
- <param name="procedures">A collection of the <see cref="T:DevExpress.Xpo.DB.DBStoredProcedure"/> objects specifying stored procedures from an Entity Framework data source.</param>
- <param name="dataMember">A string that specifies the name of the selected data member.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseEFDataMemberPageView.StoredProcChosen">
- <summary>
- <para>Specifies whether the selected data member is a stored procedure.</para>
- </summary>
- <value>true, if the selected data member is a stored procedure; otherwise, false.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseExcelFileDataRangePageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118415/common-features/data-source-wizard/wizard-pages/connect-to-an-excel-data-source/select-a-worksheet-table-or-named-range">Select a Worksheet, Table or Named Range</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseExcelFileDataRangePageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseExcelFileDataRangePageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseExcelFileDataRangePageView.Changed">
- <summary>
- <para>Occurs when the selected item in the list of available worksheets, tables and named regions is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseExcelFileDataRangePageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseExcelFileDataRangePageView.Initialize(DevExpress.DataAccess.Wizard.Presenters.ListBoxItem[])">
- <summary>
- <para>Initializes a wizard page with the list of available worksheets, tables and named regions.</para>
- </summary>
- <param name="items">A collection of <see cref="T:DevExpress.DataAccess.Wizard.Presenters.ListBoxItem"/> objects containing the settings of file data ranges.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseExcelFileDataRangePageView.SelectedItem">
- <summary>
- <para>Specifies the item selected in the list of available worksheets, tables and named regions.</para>
- </summary>
- <value>An object containing settings of the selected item.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118414/common-features/data-source-wizard/wizard-pages/connect-to-an-excel-data-source/specify-import-settings">Specify Import Settings</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.DetectEncoding">
- <summary>
- <para>Occurs when the state of the Detect automatically check box for the Encoding option is changed.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.DetectNewlineType">
- <summary>
- <para>Occurs when the state of the Detect automatically check box for the Newline type option is changed.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.DetectValueSeparator">
- <summary>
- <para>Occurs when the state of the Detect automatically check box for the Value separator option is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.DocumentFormat">
- <summary>
- <para>Specifies the format of the selected document.</para>
- </summary>
- <value>A <see cref="T:DevExpress.DataAccess.Excel.ExcelDocumentFormat"/> enumeration value that specifies the format of the selected document.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.Initialize(DevExpress.DataAccess.Excel.ExcelSourceOptionsBase)">
- <summary>
- <para>Initializes a wizard page with the available options depending on the type of the selected file.</para>
- </summary>
- <param name="options">An <see cref="T:DevExpress.DataAccess.Excel.ExcelSourceOptionsBase"/> descendant containing options used to extract data from the selected file. This value is assigned to the <see cref="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.SourceOptions">ChooseFileOptionsPageView.SourceOptions</see> property.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.SetEncoding(System.Text.Encoding)">
- <summary>
- <para>Changes the entry selected in the Encoding editor.</para>
- </summary>
- <param name="encoding">An <see cref="T:System.Text.Encoding"/> value that specifies character encoding in the selected CSV file.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.SetNewlineType(DevExpress.DataAccess.Excel.CsvNewlineType)">
- <summary>
- <para>Changes the entry selected in the Newline type editor.</para>
- </summary>
- <param name="newlineType">An <see cref="T:DevExpress.XtraExport.Csv.CsvNewlineType"/> enumeration value that specifies the line break type in the source CSV file.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.SetValueSeparator(System.Char)">
- <summary>
- <para>Changes the entry selected in the Value separator editor.</para>
- </summary>
- <param name="separator">A character used to separate values in the selected CSV file.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseFileOptionsPageView.SourceOptions">
- <summary>
- <para>Gets options used to extract data form the selected file (Microsoft Excel workbook or CSV file).</para>
- </summary>
- <value>A <see cref="T:DevExpress.DataAccess.Excel.ExcelSourceOptionsBase"/> descendant containing options used to extract data from the selected file.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseFilePageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118413/common-features/data-source-wizard/wizard-pages/connect-to-an-excel-data-source/select-an-excel-workbook-or-csv-file">Select an Excel Workbook or CSV File</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseFilePageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseFilePageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseFilePageView.Changed">
- <summary>
- <para>Occurs when the selected file is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseFilePageView.FileName">
- <summary>
- <para>Specifies the name of the selected file.</para>
- </summary>
- <value>A string specifying the file name.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseFilePageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseFilePageView.ShowPasswordForm(System.String,System.String,DevExpress.DataAccess.Wizard.Presenters.FileInfo@)">
- <summary>
- <para>Shows the form for specifying a password, if the selected file is password protected.</para>
- </summary>
- <param name="caption">The caption of the password form.</param>
- <param name="fileName">The name of the selected file.</param>
- <param name="fileInfo">An object containing settings of the selected file.</param>
- <returns>true, if the password was successfully specified, otherwise, false.</returns>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSchemaPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/XtraReports/400394/visual-studio-report-designer/data-source-wizard/connect-to-a-json-data-source/select-data-fields">Select Data Fields</see> page of the <see href="https://docs.devexpress.com/XtraReports/120164/visual-studio-report-designer/data-source-wizard">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSchemaPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSchemaPageView"/> class.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSchemaPageView.#ctor(DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSchemaPageView"/> class with the specified settings.</para>
- </summary>
- <param name="repositoryItemsProvider">An object implementing the DevExpress.DataAccess.Wizard.Views.IRepositoryItemsProvider interface that provides repository items for editing query parameters.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSchemaPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the <see href="https://docs.devexpress.com/XtraReports/400394/visual-studio-report-designer/data-source-wizard/connect-to-a-json-data-source/select-data-fields">Select Data Fields</see> wizard page.</para>
- </summary>
- <value>The page description.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSchemaPageView.RootElement">
- <summary>
- <para>Gets the name of the selected root element.</para>
- </summary>
- <value>The name of the selected root element.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSchemaPageView.Schema">
- <summary>
- <para>Gets the schema of the retrieved JSON data source.</para>
- </summary>
- <value>A collection of <see cref="T:DevExpress.DataAccess.Json.JsonSchemaNode"/> objects that specifies the schema of the retrieved JSON data source.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSourcePageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/XtraReports/400393/visual-studio-report-designer/data-source-wizard/connect-to-a-json-data-source/specify-json-data-location">Specify JSON Data Location</see> page of the <see href="https://docs.devexpress.com/XtraReports/120164/visual-studio-report-designer/data-source-wizard">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSourcePageView.#ctor(DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,System.IServiceProvider)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSourcePageView"/> class with specified settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSourcePageView.Changed">
- <summary>
- <para>Occurs after settings on the <see href="https://docs.devexpress.com/XtraReports/400393/visual-studio-report-designer/data-source-wizard/connect-to-a-json-data-source/specify-json-data-location">Specify JSON Data Location</see> wizard page have changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSourcePageView.ConnectionType">
- <summary>
- <para>Specifies the type of the connection to a JSON data source.</para>
- </summary>
- <value>A <see cref="T:DevExpress.DataAccess.Wizard.Views.JsonConnectionType"/> enumeration value that specifies the type of the connection to a JSON data source.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSourcePageView.FilePath">
- <summary>
- <para>Specifies the path to a JSON file.</para>
- </summary>
- <value>The path to a JSON file.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSourcePageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the <see href="https://docs.devexpress.com/XtraReports/400393/visual-studio-report-designer/data-source-wizard/connect-to-a-json-data-source/specify-json-data-location">Specify JSON Data Location</see> wizard page.</para>
- </summary>
- <value>The page description.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSourcePageView.Json">
- <summary>
- <para>Specifies the string with JSON content.</para>
- </summary>
- <value>A string that specifies a JSON data source.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseJsonSourcePageView.Uri">
- <summary>
- <para>Specifies the path to a JSON data source.</para>
- </summary>
- <value>The path to an JSON data source.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectAssemblyPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118405/common-features/data-source-wizard/wizard-pages/connect-to-an-object-data-source/select-an-assembly">Select an Assembly</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see>.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectAssemblyPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectAssemblyPageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectAssemblyPageView.Changed">
- <summary>
- <para>Occurs when the selected item in the list of available assemblies is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectAssemblyPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectAssemblyPageView.Initialize">
- <summary>
- <para>Initializes a wizard page with the list of available assemblies.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectAssemblyPageView.SelectedItem">
- <summary>
- <para>Specifies the item selected in the list of available assemblies.</para>
- </summary>
- <value>An object containing settings of the selected assembly.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectAssemblyPageView.SetData(System.Collections.Generic.IEnumerable{DevExpress.DataAccess.Wizard.Views.AssemblyViewInfo},System.Boolean)">
- <summary>
- <para>Changes the list of available assemblies.</para>
- </summary>
- <param name="items">A collection of <see cref="T:DevExpress.DataAccess.Wizard.Views.AssemblyViewInfo"/> objects containing settings of assemblies.</param>
- <param name="showAll">The state of the Show only highlighted assemblies check box.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectAssemblyPageView.ShowAll">
- <summary>
- <para>Specifies the state of the Show only highlighted assemblies check box.</para>
- </summary>
- <value>true, to disable the check box; otherwise, false.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectBindingModePageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118409/common-features/data-source-wizard/wizard-pages/connect-to-an-object-data-source/select-the-data-binding-mode">Select the Data Binding Mode</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see>.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectBindingModePageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectBindingModePageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectBindingModePageView.Changed">
- <summary>
- <para>Occurs when the object binding mode selected on a wizard page is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectBindingModePageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectBindingModePageView.SchemaOnly">
- <summary>
- <para>Specifies whether the mode obtaining the data source schema or the mode retrieving actual data is selected on a wizard page.</para>
- </summary>
- <value>true, to select the mode obtaining only the data source schema; otherwise, false.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectConstructorPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118410/common-features/data-source-wizard/wizard-pages/connect-to-an-object-data-source/select-a-data-source-constructor">Select a Data Source Constructor</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectConstructorPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectConstructorPageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectConstructorPageView.Changed">
- <summary>
- <para>Occurs when the selected item in the list of available constructors is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectConstructorPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectConstructorPageView.Initialize(System.Collections.Generic.IEnumerable{DevExpress.DataAccess.Wizard.Views.ConstructorViewInfo},System.Boolean)">
- <summary>
- <para>Initializes a wizard page with the list of available constructors.</para>
- </summary>
- <param name="items">A collection of <see cref="T:DevExpress.DataAccess.Wizard.Views.ConstructorViewInfo"/> objects containing the settings of constructors.</param>
- <param name="showAll">The state of the Show only highlighted constructors check box.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectConstructorPageView.Result">
- <summary>
- <para>Specifies the item selected in the list of available data source constructors.</para>
- </summary>
- <value>An object containing settings of the selected data source constructor.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectConstructorPageView.ShowAll">
- <summary>
- <para>Specifies the state of the Show only highlighted constructors check box.</para>
- </summary>
- <value>true, to disable the check box; otherwise, false.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectMemberPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118407/common-features/data-source-wizard/wizard-pages/connect-to-an-object-data-source/select-a-data-source-member">Select a Data Source Member</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectMemberPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectMemberPageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectMemberPageView.Changed">
- <summary>
- <para>Occurs when the selected item in the list of available members is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectMemberPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectMemberPageView.Initialize(System.Collections.Generic.IEnumerable{DevExpress.DataAccess.ObjectBinding.ObjectMember},System.Boolean,System.Boolean)">
- <summary>
- <para>Initializes a wizard page with the list of available members.</para>
- </summary>
- <param name="items">A collection of <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectMember"/> objects containing settings of object members.</param>
- <param name="staticType">A value that specifies whether binding to an object member (not to the entire object) is selected.</param>
- <param name="showAll">The state of the Show only highlighted members check box.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectMemberPageView.Result">
- <summary>
- <para>Specifies the item selected in the list of available members.</para>
- </summary>
- <value>An object containing settings of the selected member.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectMemberPageView.ShowAll">
- <summary>
- <para>Specifies the state of the Show only highlighted members check box.</para>
- </summary>
- <value>true, to disable the check box; otherwise, false.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectTypePageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118406/common-features/data-source-wizard/wizard-pages/connect-to-an-object-data-source/select-a-data-source-type">Select a Data Source Type</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectTypePageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectTypePageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectTypePageView.Changed">
- <summary>
- <para>Occurs when the selected item in the list of available types is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectTypePageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectTypePageView.Initialize(System.Collections.Generic.IEnumerable{DevExpress.DataAccess.Wizard.Views.TypeViewInfo},System.Boolean)">
- <summary>
- <para>Initializes a wizard page with the list of available types.</para>
- </summary>
- <param name="items">A collection of <see cref="T:DevExpress.DataAccess.Wizard.Views.TypeViewInfo"/> objects containing settings of object types.</param>
- <param name="showAll">The state of the Show only highlighted types check box.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectTypePageView.SelectedItem">
- <summary>
- <para>Specifies the item selected in the list of available types.</para>
- </summary>
- <value>An object containing settings of the selected type.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseObjectTypePageView.ShowAll">
- <summary>
- <para>Specifies the state of the Show only highlighted types check box.</para>
- </summary>
- <value>true, to disable the check box; otherwise, false.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseXPObjectSourceEntityTypePageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/XtraReports/400391/visual-studio-report-designer/data-source-wizard/connect-to-an-xpo-data-source/choose-an-entity-type">Choose an Entity Type</see> page of the <see href="https://docs.devexpress.com/XtraReports/120164/visual-studio-report-designer/data-source-wizard">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseXPObjectSourceEntityTypePageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ChooseXPObjectSourceEntityTypePageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseXPObjectSourceEntityTypePageView.EntityType">
- <summary>
- <para>Specifies the selected <see href="https://docs.devexpress.com/XPO/2077/create-a-data-model/create-a-persistent-object">persistent object class</see>.</para>
- </summary>
- <value>A value that specifies the selected persistent object class.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ChooseXPObjectSourceEntityTypePageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the <see href="https://docs.devexpress.com/XtraReports/400391/visual-studio-report-designer/data-source-wizard/connect-to-an-xpo-data-source/choose-an-entity-type">Choose an Entity Type</see> wizard page.</para>
- </summary>
- <value>The page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ChooseXPObjectSourceEntityTypePageView.Initialize(System.Collections.IEnumerable)">
- <summary>
- <para>Initializes the <see href="https://docs.devexpress.com/XtraReports/400391/visual-studio-report-designer/data-source-wizard/connect-to-an-xpo-data-source/choose-an-entity-type">Choose an Entity Type</see> wizard page with the list of available entity types.</para>
- </summary>
- <param name="entityTypes">A collection of available <see href="https://docs.devexpress.com/XPO/2077/create-a-data-model/create-a-persistent-object">persistent object classes</see>.</param>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFFiltersPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/119330/common-features/data-source-wizard/wizard-pages/connect-to-an-entity-framework-data-source/configure-filters">Configure Filters</see> page of the <see href="https://docs.devexpress.com/WindowsForms/118350/common-features/data-source-wizard">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFFiltersPageView.#ctor(DevExpress.DataAccess.Wizard.Services.IParameterService,System.IServiceProvider,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFFiltersPageView"/> class with the specified settings.</para>
- </summary>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface that provides a service functionality to manage query parameters.</param>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items to manage query parameters.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFFiltersPageView.Filters">
- <summary>
- <para>Provides access to the collection of data filters.</para>
- </summary>
- <value>An array of <see cref="T:DevExpress.DataAccess.EntityFramework.DBSetFilter"/> objects.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFFiltersPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of a wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value, specifying the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFFiltersPageView.Initialize(DevExpress.DataAccess.EntityFramework.DBSetFilter[],System.Collections.Generic.IDictionary{System.String,DevExpress.Xpo.DB.DBTable})">
- <summary>
- <para>Initializes a wizard page with the list of available tables and filters.</para>
- </summary>
- <param name="filters">An array of <see cref="T:DevExpress.DataAccess.EntityFramework.DBSetFilter"/> objects.</param>
- <param name="dbTables">Initializes a wizard page with the list of available tables and filters.
- A dictionary, specifying a value pair that includes the DBSet‘s name and the DBTable.</param>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118402/common-features/data-source-wizard/wizard-pages/connect-to-an-entity-framework-data-source/bind-to-a-stored-procedure">Bind to a Stored Procedure</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView.#ctor(System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider,DevExpress.DataAccess.Wizard.IWizardRunnerContext)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView"/> class with the specified settings.</para>
- </summary>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface that provides the service for the property grid.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface that provides a service functionality to manage query parameters.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items to manage query parameters.</param>
- <param name="context">An object that specifies the wizard options.</param>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView.AddClick">
- <summary>
- <para>Occurs when the Add button is clicked on a wizard page.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView.AddToList(System.Collections.Generic.IEnumerable{DevExpress.DataAccess.Wizard.Views.StoredProcedureViewInfo})">
- <summary>
- <para>Adds the specified stored procedures to the list to be used.</para>
- </summary>
- <param name="procedures">A collection of <see cref="T:DevExpress.DataAccess.Wizard.Views.StoredProcedureViewInfo"/> objects, which provide the settings of stored procedures.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView.ChooseProceduresToAdd(System.Collections.Generic.IEnumerable{DevExpress.DataAccess.Wizard.Views.StoredProcedureViewInfo})">
- <summary>
- <para>Shows the dialog for selecting stored procedures to be added to the list.</para>
- </summary>
- <param name="available">A collection of <see cref="T:DevExpress.DataAccess.Wizard.Views.StoredProcedureViewInfo"/> objects containing the settings of available stored procedures.</param>
- <returns>A collection of <see cref="T:DevExpress.DataAccess.Wizard.Views.StoredProcedureViewInfo"/> objects containing the settings of the selected stored procedures.</returns>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView.Procedures">
- <summary>
- <para>Gets the stored procedures with the specified parameters from the list of procedures to be used.</para>
- </summary>
- <value>A collection of <see cref="T:DevExpress.DataAccess.Wizard.Views.StoredProcedureViewInfo"/> objects, which provide the settings of stored procedures.</value>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView.RemoveClick">
- <summary>
- <para>Occurs when the Remove button is clicked on a wizard page.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView.RemoveFromList(DevExpress.DataAccess.Wizard.Views.StoredProcedureViewInfo)">
- <summary>
- <para>Removes the specified stored procedure from the list of procedures to be used.</para>
- </summary>
- <param name="procedure">A <see cref="T:DevExpress.DataAccess.Wizard.Views.StoredProcedureViewInfo"/> object that provides the stored procedure settings.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView.SelectedItem">
- <summary>
- <para>Gets the selected item in the list of stored procedures to be used.</para>
- </summary>
- <value>A <see cref="T:DevExpress.DataAccess.Wizard.Views.StoredProcedureViewInfo"/> object containing the settings of the selected stored procedure.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureEFStoredProceduresPageView.SetAddEnabled(System.Boolean)">
- <summary>
- <para>Activates or deactivates the Add button on a wizard page.</para>
- </summary>
- <param name="value">true, to activate the button; false, to deactivate the button.</param>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureExcelFileColumnsPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118416/common-features/data-source-wizard/wizard-pages/connect-to-an-excel-data-source/choose-columns">Choose Columns</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureExcelFileColumnsPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureExcelFileColumnsPageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ConfigureExcelFileColumnsPageView.Changed">
- <summary>
- <para>Occurs when a collection of selected columns from an Excel file is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureExcelFileColumnsPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureExcelFileColumnsPageView.Initialize(DevExpress.DataAccess.Excel.FieldInfo[],System.Func{DevExpress.DataAccess.Excel.FieldInfo[],DevExpress.DataAccess.Native.ColumnarData})">
- <summary>
- <para>Initializes a wizard page with the list of available columns.</para>
- </summary>
- <param name="schema">A collection of <see cref="T:DevExpress.DataAccess.Excel.FieldInfo"/> objects containing settings of Excel data fields.</param>
- <param name="loadPreviewData">A function that previews the result data.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureExcelFileColumnsPageView.Schema">
- <summary>
- <para>Gets a collection of columns selected on a wizard page.</para>
- </summary>
- <value>An array of <see cref="T:DevExpress.DataAccess.Excel.FieldInfo"/> objects containing the settings of Excel data fields.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureParametersPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118396/common-features/data-source-wizard/wizard-pages/connect-to-a-database/configure-query-parameters">Configure Query Parameters</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureParametersPageView.#ctor(System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureParametersPageView"/> class with the specified settings.</para>
- </summary>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface that provides the service for the property grid.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface that provides a service functionality to manage query parameters.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items to manage query parameters.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureParametersPageView.ConfirmQueryExecution">
- <summary>
- <para>Displays the dialog to confirm query execution.</para>
- </summary>
- <returns>true, if the query execution is confirmed; otherwise, false.</returns>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureParametersPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureParametersPageView.ShowDuplicatingColumnNameError(System.String)">
- <summary>
- <para>Displays the error message about duplicating the specified column.</para>
- </summary>
- <param name="columnName">The name of the column that is duplicated.</param>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118395/common-features/data-source-wizard/wizard-pages/connect-to-a-database/create-a-query-or-select-a-stored-procedure">Create a Query or Select a Stored Procedure</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.#ctor(DevExpress.Data.IDisplayNameProvider,System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator,DevExpress.DataAccess.Wizard.SqlWizardOptions,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView"/> class with the specified settings.</para>
- </summary>
- <param name="displayNameProvider">An object implementing the <see cref="T:DevExpress.Data.IDisplayNameProvider"/> interface.</param>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface.</param>
- <param name="options">One or more <see cref="T:DevExpress.DataAccess.Wizard.SqlWizardOptions"/> enumeration values.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.#ctor(DevExpress.Data.IDisplayNameProvider,System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator,DevExpress.DataAccess.Wizard.SqlWizardOptions,DevExpress.DataAccess.Wizard.IWizardRunnerContext)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView"/> class with the specified settings.</para>
- </summary>
- <param name="displayNameProvider">An object implementing the <see cref="T:DevExpress.Data.IDisplayNameProvider"/> interface.</param>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface.</param>
- <param name="options">One or more <see cref="T:DevExpress.DataAccess.Wizard.SqlWizardOptions"/> enumeration values.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.#ctor(DevExpress.Data.IDisplayNameProvider,System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator,DevExpress.DataAccess.Wizard.SqlWizardOptions)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView"/> class with the specified settings.</para>
- </summary>
- <param name="displayNameProvider">An object implementing the <see cref="T:DevExpress.Data.IDisplayNameProvider"/> interface that provides methods to specify custom names for data items.</param>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface that provides the service for the property grid.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface that provides custom validation logic for SQL queries.</param>
- <param name="options">An object that specifies the wizard options.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.CreateQueryBuilderRunner(DevExpress.DataAccess.Sql.IDBSchemaProviderEx,DevExpress.DataAccess.Sql.DBSchema,DevExpress.DataAccess.Sql.SqlDataConnection,DevExpress.DataAccess.Wizard.Services.IParameterService)">
- <summary>
- <para>Creates an object that enables running the <see href="https://docs.devexpress.com/XtraReports/17308/visual-studio-report-designer/sql-query-builder">Query Builder</see>.</para>
- </summary>
- <param name="schemaProvider">An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProviderEx"/> interface that provides the capability to customize the data source schema (by calling the <see cref="M:DevExpress.DataAccess.Sql.IDBSchemaProviderEx.LoadColumns(DevExpress.DataAccess.Sql.SqlDataConnection,DevExpress.Xpo.DB.DBTable[])">IDBSchemaProviderEx.LoadColumns</see> method).</param>
- <param name="dbSchema">A <see cref="T:DevExpress.DataAccess.Sql.DBSchema"/> object that is used to display database objects in the grid control.</param>
- <param name="connection">An object specifying a connection to an SQL data source.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface that provides the capability to manage report parameters.</param>
- <returns>A <see cref="T:DevExpress.DataAccess.UI.Wizard.QueryBuilderRunnerBase"/> object.</returns>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.Initialize(System.Boolean,System.Boolean,DevExpress.DataAccess.Native.Sql.ConnectionProviders.IAliasFormatter)">
- <summary>
- <para>For internal use. Initializes a wizard page with the specified options.</para>
- </summary>
- <param name="allowCustomSql">Specifies whether custom SQL editing is enabled on a wizard page.</param>
- <param name="storedProceduresSupported">Specifies whether a data source contains stored procedures.</param>
- <param name="aliasFormatter">An object specifying an SQL query formatter.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.QueryType">
- <summary>
- <para>Specifies the type of the query selected on a wizard page.</para>
- </summary>
- <value>A <see cref="T:DevExpress.DataAccess.Wizard.Presenters.QueryType"/> enumerator value.</value>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.QueryTypeChanged">
- <summary>
- <para>Occurs when the query type selected on a wizard page is changed.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.RunQueryBuilder">
- <summary>
- <para>Occurs when the Run Query Builder button is clicked on a wizard page.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.SelectedStoredProcedureIndex">
- <summary>
- <para>Specifies the index of the selected item in the list of available stored procedures.</para>
- </summary>
- <value>An index of the selected stored procedure.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.SqlString">
- <summary>
- <para>Specifies the SQL string created on a wizard page.</para>
- </summary>
- <value>The SQL string.</value>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.SqlStringChanged">
- <summary>
- <para>Occurs when the SQL string created on a wizard page is changed.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ConfigureQueryPageView.StoredProcedureChanged">
- <summary>
- <para>Occurs when the selected item in the list of available stored procedures is changed.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118393/common-features/data-source-wizard/wizard-pages/connect-to-a-database/specify-connection-properties">Specify a Connection String</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView.#ctor(System.Collections.Generic.List{DevExpress.DataAccess.UI.Wizard.ProviderLookupItem},DevExpress.DataAccess.Wizard.IWizardRunnerContext)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView"/> class with the specified settings.</para>
- </summary>
- <param name="dataProviders">A collection of <see cref="T:DevExpress.DataAccess.UI.Wizard.ProviderLookupItem"/> objects.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView.#ctor(System.Collections.Generic.List{DevExpress.DataAccess.UI.Wizard.ProviderLookupItem})">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView"/> class with the specified data providers.</para>
- </summary>
- <param name="dataProviders">A collection of <see cref="T:DevExpress.DataAccess.UI.Wizard.ProviderLookupItem"/> objects.</param>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView.Changed">
- <summary>
- <para>Occurs when the item selected in the Provider drop-down list is changed.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView.ConnectionName">
- <summary>
- <para>Specifies the name of the connection created on a wizard page.</para>
- </summary>
- <value>A string specifying the connection name.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView.DataConnectionParameters">
- <summary>
- <para>Specifies the parameters of the current data connection.</para>
- </summary>
- <value>A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant containing connection parameters.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView.InitControls">
- <summary>
- <para>Initializes controls of the current wizard page.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView.SelectProvider(System.String)">
- <summary>
- <para>Changes the item selected in the Provider drop-down list.</para>
- </summary>
- <param name="provider">A string specifying the name of the provider to be selected.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ConnectionPropertiesPageView.SetConnections(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- <para>Changes the list of existing connections on a wizard page.</para>
- </summary>
- <param name="connectionNames">A collection of strings specifying connection names.</param>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/XtraReports/4251/visual-studio-report-designer/data-source-wizard/connect-to-a-database/create-a-query-or-select-a-stored-procedure-multi-query-version">Create a Query or Select a Stored Procedure (Multi-Query Version)</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView.#ctor(DevExpress.Data.IDisplayNameProvider,System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator,DevExpress.DataAccess.Wizard.SqlWizardOptions,DevExpress.DataAccess.Wizard.IWizardRunnerContext,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView"/> class with the specified settings.</para>
- </summary>
- <param name="displayNameProvider">An object implementing the <see cref="T:DevExpress.Data.IDisplayNameProvider"/> interface.</param>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface.</param>
- <param name="options">One or more <see cref="T:DevExpress.DataAccess.Wizard.SqlWizardOptions"/> enumeration values.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView.#ctor(DevExpress.Data.IDisplayNameProvider,System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator,DevExpress.DataAccess.Wizard.SqlWizardOptions,DevExpress.DataAccess.Wizard.IWizardRunnerContext)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView"/> class with the specified settings.</para>
- </summary>
- <param name="displayNameProvider">An object implementing the <see cref="T:DevExpress.Data.IDisplayNameProvider"/> interface.</param>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface.</param>
- <param name="options">One or more <see cref="T:DevExpress.DataAccess.Wizard.SqlWizardOptions"/> enumeration values.</param>
- <param name="context">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView.#ctor(DevExpress.Data.IDisplayNameProvider,System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator,DevExpress.DataAccess.Wizard.SqlWizardOptions)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView"/> class with the specified settings.</para>
- </summary>
- <param name="displayNameProvider">An object implementing the <see cref="T:DevExpress.Data.IDisplayNameProvider"/> interface.</param>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface.</param>
- <param name="customQueryValidator">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.ICustomQueryValidator"/> interface.</param>
- <param name="options">One or more <see cref="T:DevExpress.DataAccess.Wizard.SqlWizardOptions"/> enumeration values.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView.CreateMasterDetailRunner">
- <summary>
- <para>For internal use. Creates an object that enables running the Master-Detail Relation Editor.</para>
- </summary>
- <returns>A DevExpress.DataAccess.Native.Sql.MasterDetail.MasterDetailRunnerBase object that enables running the Master-Detail Relation Editor.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView.CreateQueryBuilderRunner(DevExpress.DataAccess.Sql.IDBSchemaProviderEx,DevExpress.DataAccess.Sql.DBSchema,DevExpress.DataAccess.Sql.SqlDataConnection,DevExpress.DataAccess.Wizard.Services.IParameterService)">
- <summary>
- <para>Creates an object that enables running the <see href="https://docs.devexpress.com/XtraReports/17308/visual-studio-report-designer/sql-query-builder">Query Builder</see>.</para>
- </summary>
- <param name="schemaProvider">An object implementing the <see cref="T:DevExpress.DataAccess.Sql.IDBSchemaProviderEx"/> interface that provides the capability to customize the data source schema (by calling the <see cref="M:DevExpress.DataAccess.Sql.IDBSchemaProviderEx.LoadColumns(DevExpress.DataAccess.Sql.SqlDataConnection,DevExpress.Xpo.DB.DBTable[])">IDBSchemaProviderEx.LoadColumns</see> method).</param>
- <param name="dbSchema">A <see cref="T:DevExpress.DataAccess.Sql.DBSchema"/> object that is used to display database objects in the grid control.</param>
- <param name="connection">An object specifying a connection to an SQL data source.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface that provides the capability to manage report parameters.</param>
- <returns>A <see cref="T:DevExpress.DataAccess.UI.Wizard.QueryBuilderRunnerBase"/> object.</returns>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView.ExpandNode">
- <summary>
- <para>Occurs on expanding a tree list node.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView.Items">
- <summary>
- <para>Specifies the collection of tree list elements.</para>
- </summary>
- <value>A collection of <see cref="T:DevExpress.DataAccess.Wizard.Presenters.MultiQueryItem"/> objects.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigurePageView.SetEditRelationEnabled(System.Boolean)">
- <summary>
- <para>Specifies whether or not the Edit Relations button is enabled on the current wizard page.</para>
- </summary>
- <param name="enabled">true, to enable the Edit Relations button; otherwise, false.</param>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigureParametersPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/XtraReports/117372/visual-studio-report-designer/data-source-wizard/connect-to-a-database/configure-query-parameters">Configure Query Parameters</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigureParametersPageView.#ctor(System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigureParametersPageView"/> class with the specified settings.</para>
- </summary>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigureParametersPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.MultiQueryConfigureParametersPageView.SelectedQueryName">
- <summary>
- <para>Returns the name of a query to which the currently edited parameter belongs.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value, specifying the query name.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ObjectConstructorParametersPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118411/common-features/data-source-wizard/wizard-pages/connect-to-an-object-data-source/specify-the-constructor-parameters">Specify the Constructor Parameters</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ObjectConstructorParametersPageView.#ctor(System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ObjectConstructorParametersPageView"/> class with the specified settings.</para>
- </summary>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface that provides the service for the property grid.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface that provides a service functionality to manage query parameters.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items to manage query parameters.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ObjectConstructorParametersPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ObjectMemberParametersPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118408/common-features/data-source-wizard/wizard-pages/connect-to-an-object-data-source/specify-the-member-parameters">Specify the Member Parameters</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see>.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ObjectMemberParametersPageView.#ctor(System.IServiceProvider,DevExpress.DataAccess.Wizard.Services.IParameterService,DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.ObjectMemberParametersPageView"/> class with the specified settings.</para>
- </summary>
- <param name="propertyGridServices">An object implementing the <see cref="T:System.IServiceProvider"/> interface that provides the service for the property grid.</param>
- <param name="parameterService">An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IParameterService"/> interface that provides a service functionality to manage query parameters.</param>
- <param name="repositoryItemsProvider">An object implementing the <see cref="T:DevExpress.DataAccess.UI.Wizard.Services.IRepositoryItemsProvider"/> interface that provides repository items to manage query parameters.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.ObjectMemberParametersPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.ParametersPageViewBase">
- <summary>
- <para>The base for Data Source Wizard page views providing functionality to specify parameters.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.ParametersPageViewBase.GetParameters">
- <summary>
- <para>Returns a collection of parameters.</para>
- </summary>
- <returns>A collection of objects implementing the <see cref="T:DevExpress.Data.IParameter"/> interface.</returns>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.SaveConnectionPageView">
- <summary>
- <para>Provides a view for the <see href="https://docs.devexpress.com/WindowsForms/118394/common-features/data-source-wizard/wizard-pages/connect-to-a-database/save-the-connection-string">Save the Connection String</see> page of the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.SaveConnectionPageView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.SaveConnectionPageView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.SaveConnectionPageView.ConnectionName">
- <summary>
- <para>Specifies the name of the created connection.</para>
- </summary>
- <value>A string specifying the name of the created connection.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.SaveConnectionPageView.HeaderDescription">
- <summary>
- <para>Specifies the description of the current wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value that specifies the page description.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.SaveConnectionPageView.SetCanSaveToStorage(System.Boolean)">
- <summary>
- <para>Sets whether the connection string can be saved to the dedicated storage.</para>
- </summary>
- <param name="value">true, if the connection string can be saved to the storage; otherwise, false.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.SaveConnectionPageView.SetConnectionUsesServerAuth(System.Boolean)">
- <summary>
- <para>Sets whether the data connection uses server authentication.</para>
- </summary>
- <param name="value">true, if the data connection uses server authentication; otherwise, false.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.SaveConnectionPageView.ShouldSaveConnectionString">
- <summary>
- <para>Specifies whether to save the connection string to the dedicated storage.</para>
- </summary>
- <value>true, to save the connection string; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.SaveConnectionPageView.ShouldSaveCredentials">
- <summary>
- <para>Gets whether to save the user credentials along with the connection string.</para>
- </summary>
- <value>true, to save the user credentials; otherwise, false.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase">
- <summary>
- <para>The base for classes providing functionality to Data Source Wizard page views.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase.ActiveButton">
- <summary>
- <para>Returns the button that closes the current wizard page.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraEditors.SimpleButton"/> object, specifying the “Next” or “Finish” button.</value>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase.EnableFinish(System.Boolean)">
- <summary>
- <para>Specifies whether or not the Finish button is enabled on a wizard page.</para>
- </summary>
- <param name="enable">true if the Finish button is enabled; otherwise false.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase.EnableNext(System.Boolean)">
- <summary>
- <para>Specifies whether or not the Next button is enabled on a wizard page.</para>
- </summary>
- <param name="enable">true if the Next button is enabled; otherwise false.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase.EnablePrevious(System.Boolean)">
- <summary>
- <para>Specifies whether or not the Previous button is enabled on a wizard page.</para>
- </summary>
- <param name="enable">true if the Previous button is enabled; otherwise false.</param>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase.Finish">
- <summary>
- <para>Occurs after clicking the Finish button on a wizard page.</para>
- </summary>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase.HeaderDescription">
- <summary>
- <para>Specifies the description of a wizard page.</para>
- </summary>
- <value>A <see cref="T:System.String"/> value, specifying the page description.</value>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase.Next">
- <summary>
- <para>Occurs after clicking the Next button on a wizard page.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase.Paint">
- <summary>
- <para>Occurs when the content of the <see cref="T:DevExpress.XtraLayout.LayoutControl"/> and <see cref="T:DevExpress.XtraEditors.PanelControl"/> residing on a wizard page is being redrawn.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.Views.WizardViewBase.Previous">
- <summary>
- <para>Occurs after clicking the Previous button on a wizard page.</para>
- </summary>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.WizardRunnerContext">
- <summary>
- <para>The default implementation of the <see cref="T:DevExpress.DataAccess.Wizard.IWizardRunnerContext"/> interface, enabling you to run the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see> in a WinForms application.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardRunnerContext.#ctor(DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.WizardRunnerContext"/> class with the specified owner and appearance.</para>
- </summary>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardRunnerContext.Confirm(System.String)">
- <summary>
- <para>Displays a confirmation window before the execution of a wizard.</para>
- </summary>
- <param name="message">A <see cref="T:System.String"/> value.</param>
- <returns>true, if a user clicks OK; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardRunnerContext.CreateWizardView(System.String,System.Drawing.Size)">
- <summary>
- <para>Creates a Data Source Wizard view.</para>
- </summary>
- <param name="wizardTitle">A <see cref="T:System.String"/> value.</param>
- <param name="wizardSize">A System.Drawing.Size structure.</param>
- <returns>An object implementing the <see cref="T:DevExpress.Data.WizardFramework.IWizardView"/> interface.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardRunnerContext.Dispose">
- <summary>
- <para>Releases all resources used by <see cref="T:DevExpress.DataAccess.UI.Wizard.WizardRunnerContext"/>.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardRunnerContext.Run``1(DevExpress.Data.WizardFramework.Wizard{``0})">
- <summary>
- <para>Runs the wizard with a specified model.</para>
- </summary>
- <param name="wizard">A <see cref="T:DevExpress.Data.WizardFramework.Wizard`1"/> object.</param>
- <returns>true, to save the changes to the wizard model; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardRunnerContext.ShowMessage(System.String,System.String)">
- <summary>
- <para>Displays a message with the specified text and caption before the execution of a wizard.</para>
- </summary>
- <param name="message">A <see cref="T:System.String"/> value.</param>
- <param name="caption">A <see cref="T:System.String"/> value.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardRunnerContext.ShowMessage(System.String)">
- <summary>
- <para>Displays a message with the specified text before the execution of a wizard.</para>
- </summary>
- <param name="message">A <see cref="T:System.String"/> value.</param>
- </member>
- <member name="P:DevExpress.DataAccess.UI.Wizard.WizardRunnerContext.WaitFormActivator">
- <summary>
- <para>Returns an object that displays a form while the wizard is loading information about a data source.</para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Services.IWaitFormActivator"/> interface.</value>
- </member>
- <member name="T:DevExpress.DataAccess.UI.Wizard.WizardView">
- <summary>
- <para>The default implementation of the <see cref="T:DevExpress.Data.WizardFramework.IWizardView"/> interface, providing an empty form containing the <see href="https://docs.devexpress.com/WindowsForms/115389/common-features/data-source-wizard/wizard-customization-api/page-views-and-presenters">Data Source Wizard</see>.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardView.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.DataAccess.UI.Wizard.WizardView"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.WizardView.Cancel">
- <summary>
- <para>Occurs after clicking the Cancel button in a wizard.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardView.EnableFinish(System.Boolean)">
- <summary>
- <para>Specifies whether or not the Finish button is available in a wizard.</para>
- </summary>
- <param name="enable">true, if the Finish button is available; otherwise, false.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardView.EnableNext(System.Boolean)">
- <summary>
- <para>Specifies whether or not the Next button is available in a wizard.</para>
- </summary>
- <param name="enable">true, if the Next button is available; otherwise, false.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardView.EnablePrevious(System.Boolean)">
- <summary>
- <para>Specifies whether or not the Previous button is available in a wizard.</para>
- </summary>
- <param name="enable">true, if the Previous button is available; otherwise, false.</param>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.WizardView.Finish">
- <summary>
- <para>Occurs after clicking the Finish button in a wizard.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.WizardView.Next">
- <summary>
- <para>Occurs after clicking the Next button in a wizard.</para>
- </summary>
- </member>
- <member name="E:DevExpress.DataAccess.UI.Wizard.WizardView.Previous">
- <summary>
- <para>Occurs after clicking the Previous button in a wizard.</para>
- </summary>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardView.SetPageContent(System.Object)">
- <summary>
- <para>Specifies the content of a wizard page.</para>
- </summary>
- <param name="pageView">A <see cref="T:System.Object"/> value.</param>
- </member>
- <member name="M:DevExpress.DataAccess.UI.Wizard.WizardView.ShowError(System.String)">
- <summary>
- <para>Displays an error message with a specified text.</para>
- </summary>
- <param name="error">A <see cref="T:System.String"/> value.</param>
- </member>
- <member name="F:DevExpress.DataAccess.UI.Wizard.WizardView.TouchUIFormScalingAware">
- <summary>
- <para>For internal use.</para>
- </summary>
- </member>
- </members>
- </doc>
|