| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>Infragistics2.Win.SupportDialogs.v9.2</name>
- </assembly>
- <members>
- <member name="M:Infragistics.Shared.LocalizedCategoryAttribute.GetLocalizedString(System.String)">
- <summary>
- Returns the localized category name
- </summary>
- <param name="value">Name of the category to retreive</param>
- <returns>The localized string value</returns>
- </member>
- <member name="M:Infragistics.Shared.UltraLicenseAttribute.GetLicensedWithProducts">
- <summary>
- Return the list of products that this control can be licensed with
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.SupportDialogsAssemblyStyleInfo">
- <summary>
- Class used by the app styling infrastructure that provides the role and
- component role defitions used by the assembly.
- </summary>
- <remarks>
- <p class="note"><b>Note:</b> A parameterless constructor is required for all derived classes.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.SupportDialogsAssemblyStyleInfo.GetComponents">
- <summary>
- Returns an array of objects that define the component roles provided by an assembly.
- </summary>
- <returns>An array of objects that define the component roles.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.SupportDialogsAssemblyStyleInfo.GetRoles">
- <summary>
- Returns an array of objects that define the roles provided by an assembly.
- </summary>
- <returns>An array of objects that define the roles provided by an assembly.</returns>
- <seealso cref="T:Infragistics.Win.AppStyling.Definitions.UIRoleDefinition"/>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.SupportDialogsUIRoleName">
- <summary>
- Static class used to provide the names of the ui roles defined in the Infragistics.Win.SupportDialogs assembly.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.SupportDialogsUIRoleName.FilterProviderActionButtonArea">
- <summary>
- Role for the area that contains the Ok and Cancel buttons of the <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider"/>.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.SupportDialogsUIRoleName.FilterProviderActionButton">
- <summary>
- Role for a button contained within the ActionButtonArea of the <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider"/>
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionRow">
- <summary>
- A row used to represent a <see cref="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionRow.OperatorCondition"/>.
- </summary>
- <remarks>This is the base class from which all other condition rows derive.</remarks>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionRow.#ctor">
- <summary>
- Constructor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionRow.#ctor(Infragistics.Win.ICondition,System.Boolean)">
- <summary>
- Constructor.
- </summary>
- <param name="condition"></param>
- <param name="isComplement"></param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionRow.Condition">
- <summary>
- Returns the <see cref="T:Infragistics.Win.ICondition"/> associated with the row.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionRow.DataValue">
- <summary>
- Gets/sets the value associated with the condition.
- </summary>
- <remarks>This property is only used with a <see cref="T:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionRow"/>.</remarks>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionRow.IsCaseSensitive">
- <summary>
- Gets/sets whether the condition is case-sensitive.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionRow.IsComplement">
- <summary>
- Gets/sets whether the condition returned should be a <see cref="T:Infragistics.Win.ComplementCondition"/>.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionRow.Operator">
- <summary>
- Gets/sets the <see cref="T:Infragistics.Win.ConditionOperator"/> associated with the condition.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionAppearanceRow">
- <summary>
- A row representing a default <see cref="T:Infragistics.Win.OperatorCondition"/> and its associated appearance.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionAppearanceRow.#ctor">
- <summary>
- Constructor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionAppearanceRow.#ctor(Infragistics.Win.ICondition,Infragistics.Win.Appearance,System.Boolean)">
- <summary>
- Constructor.
- </summary>
- <param name="condition">The associated <see cref="T:Infragistics.Win.ICondition"/>.</param>
- <param name="appearance">The <see cref="T:Infragistics.Win.Appearance"/> that is mapped to the specified condition.</param>
- <param name="isComplement">True if the condition is a <see cref="T:Infragistics.Win.ComplementCondition"/>.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionAppearanceRow.Appearance">
- <summary>
- Returns the <see cref="T:Infragistics.Win.Appearance"/> associated with the condition.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaRow">
- <summary>
- A row representing a <see cref="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaRow.FormulaCondition"/>.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaRow.#ctor(Infragistics.Win.FormulaCondition,System.Boolean)">
- <summary>
- Constructor.
- </summary>
- <param name="condition">The associated <see cref="T:Infragistics.Win.ICondition"/>.</param>
- <param name="isComplement">True if the condition is a <see cref="T:Infragistics.Win.ComplementCondition"/>.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaRow.Condition">
- <summary>
- Returns the <see cref="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaRow.FormulaCondition"/> or its complement.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaRow.Formula">
- <summary>
- Gets/sets the formula used by the <see cref="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaRow.FormulaCondition"/>.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaRow.FormulaCondition">
- <summary>
- Returns the underlying <see cref="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaRow.FormulaCondition"/> associated with the row.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaAppearanceRow">
- <summary>
- A row representing a <see cref="T:Infragistics.Win.FormulaCondition"/> and its associated appearance.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaAppearanceRow.#ctor(Infragistics.Win.FormulaCondition,Infragistics.Win.Appearance,System.Boolean)">
- <summary>
- Constructor.
- </summary>
- <param name="condition">The associated <see cref="T:Infragistics.Win.ICondition"/>.</param>
- <param name="appearance">The <see cref="T:Infragistics.Win.Appearance"/> that is mapped to the specified condition.</param>
- <param name="isComplement">True if the condition is a <see cref="T:Infragistics.Win.ComplementCondition"/>.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaAppearanceRow.#ctor(Infragistics.Win.FormulaCondition,System.Boolean)">
- <summary>
- Constructor.
- </summary>
- <param name="condition">The associated <see cref="T:Infragistics.Win.ICondition"/>.</param>
- <param name="isComplement">True if the condition is a <see cref="T:Infragistics.Win.ComplementCondition"/>.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.FormulaAppearanceRow.Appearance">
- <summary>
- Returns the <see cref="T:Infragistics.Win.Appearance"/> associated with the condition.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupRow">
- <summary>
- A row representing a <see cref="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupRow.ConditionGroup"/>.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupRow.#ctor(Infragistics.Win.ConditionGroup,System.Boolean)">
- <summary>
- Constructor.
- </summary>
- <param name="group">The associated <see cref="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupRow.ConditionGroup"/>.</param>
- <param name="isComplement">True if the condition is a <see cref="T:Infragistics.Win.ComplementCondition"/>.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupRow.Condition">
- <summary>
- Returns the associated <see cref="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupRow.ConditionGroup"/> or its complement.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupAppearanceRow">
- <summary>
- A row representing a <see cref="T:Infragistics.Win.ConditionGroup"/> and its associated appearance.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupAppearanceRow.#ctor(Infragistics.Win.ConditionGroup,Infragistics.Win.Appearance,System.Boolean)">
- <summary>
- Constructor.
- </summary>
- <param name="group">The associated <see cref="T:Infragistics.Win.ConditionGroup"/>.</param>
- <param name="appearance">The <see cref="T:Infragistics.Win.Appearance"/> that is mapped to the specified condition.</param>
- <param name="isComplement">True if the condition is a <see cref="T:Infragistics.Win.ComplementCondition"/>.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupAppearanceRow.Appearance">
- <summary>
- Returns the <see cref="T:Infragistics.Win.Appearance"/> associated with the condition.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.ConditionalFormatting.TrueConditionRow">
- <summary>
- A row representing a <see cref="T:Infragistics.Win.TrueCondition"/>.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.TrueConditionRow.Condition">
- <summary>
- Returns the associated <see cref="T:Infragistics.Win.TrueCondition"/>.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.ConditionalFormatting.TrueConditionAppearanceRow">
- <summary>
- A row representing a <see cref="T:Infragistics.Win.TrueCondition"/> and its associated appearance.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.TrueConditionAppearanceRow.#ctor">
- <summary>
- Constructor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.TrueConditionAppearanceRow.#ctor(Infragistics.Win.Appearance)">
- <summary>
- Constructor.
- </summary>
- <param name="appearance">The <see cref="T:Infragistics.Win.Appearance"/> that is mapped to the specified condition.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.TrueConditionAppearanceRow.Appearance">
- <summary>
- Returns the <see cref="T:Infragistics.Win.Appearance"/> associated with the condition.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupForm">
- <summary>
- Form for creating a <see cref="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupForm.ConditionGroup"/>.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupForm.#ctor(Infragistics.Win.UltraWinGrid.UltraGridColumn)">
- <summary>
- Constructor.
- </summary>
- <param name="column">The <see cref="T:Infragistics.Win.UltraWinGrid.UltraGridColumn"/> that the condition belongs to.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupForm.Dispose(System.Boolean)">
- <summary>
- Clean up any resources being used.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupForm.InitializeComponent">
- <summary>
- Required method for Designer support - do not modify
- the contents of this method with the code editor.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupForm.ConditionGroup">
- <summary>
- Returns the <see cref="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupForm.ConditionGroup"/> generated by the form.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionGroupForm.DataType">
- <summary>
- Gets/sets the datatype of the value used for evaluating matches.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionValueAppearanceForm">
- <summary>
- Form used to edit condition/appearance mappings.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionValueAppearanceForm.#ctor(Infragistics.Win.UltraWinGrid.UltraGridColumn)">
- <summary>
- Constructor.
- </summary>
- <param name="column"></param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionValueAppearanceForm.Dispose(System.Boolean)">
- <summary>
- Clean up any resources being used.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionValueAppearanceForm.InitializeComponent">
- <summary>
- Required method for Designer support - do not modify
- the contents of this method with the code editor.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionValueAppearanceForm.ConditionValueAppearance">
- <summary>
- Returns the <see cref="P:Infragistics.Win.SupportDialogs.ConditionalFormatting.ConditionValueAppearanceForm.ConditionValueAppearance"/> generated by the form.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonAreaUIElement">
- <summary>
- A UIElement containing the OK and Cancel buttons for the FilterUIProvider.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonAreaUIElement.#ctor(Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider,Infragistics.Win.UIElement,System.Object)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="provider">The filter provider component associated with the element.</param>
- <param name="parent">The parent element hosting this element.</param>
- <param name="context">The context used to located this element later.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonAreaUIElement.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
- <summary>
- Called when the mouse up message is received over the element.
- </summary>
- <param name="e">Mouse event arguments providing data about the mouse up.</param>
- <returns>True to ignore the next mouse click; False otherwise.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonAreaUIElement.PositionTextAreaElements(System.Drawing.Rectangle,System.Drawing.Rectangle,Infragistics.Win.UIElementsCollection)">
- <summary>
- Positions the child elements in the normal text area of the menu item.
- </summary>
- <param name="rectText">The rect available for the text area elements</param>
- <param name="rectFull">
- The full rect of the menu item. This may the the rect of the elemnt or the rect inside its borders, depending on whether the menu item is active.
- </param>
- <param name="oldElements">The old elements which were used the last time this element positioned its child elements.</param>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyFilterOperand">
- <summary>
- A class for comparing an integer part of a date with another value
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyFilterOperand.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Invoked during the serialization of the object.
- </summary>
- <param name="info">SerializationInfo</param>
- <param name="context">StreamingContext</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyFilterOperand.ToString">
- <summary>
- Returns a string that represents the date of the operand base on the level in the tree.
- </summary>
- <returns>A string value of the date that the operand represents.</returns>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyLevel">
- <summary>
- Represents how many levels down the <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTreeTool"/> will break down
- a <see cref="T:System.DateTime"/> object.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyLevel.Default">
- <summary>
- The default hierarchy will be used.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyLevel.Flat">
- <summary>
- All dates will be shown in a flat hierarchy consisting of all unique values.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyLevel.Year">
- <summary>
- Only the years of the dates contained in the list of operands will be shown.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyLevel.Month">
- <summary>
- All dates will be broken down into a Year -> Month hierarchy.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyLevel.Day">
- <summary>
- All dates will be broken down into a Year -> Month -> Day hierarchy.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyLevel.Hour">
- <summary>
- All dates will be broken down into a Year -> Month -> Day -> Hour hierarchy.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyLevel.Minute">
- <summary>
- All dates will be broken down into a Year -> Month -> Day -> Hour -> Minute hierarchy.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.DateHierarchyLevel.Second">
- <summary>
- All dates will be broken down into a Year -> Month -> Day -> Hour -> Minute -> Second hierarchy.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds">
- <summary>
- An enumeration of property IDs used with the <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider"/>.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.CancelAppearance">
- <summary>
- CancelAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.CancelHotTrackAppearance">
- <summary>
- CancelHotTrackAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.CancelPressedAppearance">
- <summary>
- CancelPressedAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.CheckedAppearance">
- <summary>
- CheckedAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.CreationFilter">
- <summary>
- CreationFilter
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.DateHierarchyLevel">
- <summary>
- DateHierarchyLevel
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.DrawFilter">
- <summary>
- DrawFilter
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.DrawsFocusRect">
- <summary>
- DrawsFocusRect
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ExpansionIndicatorColor">
- <summary>
- ExpansionIndicatorColor
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ExpansionIndicatorImageCollapsed">
- <summary>
- ExpansionIndicatorImageCollapsed
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ExpansionIndicatorImageCollapsedHotTracked">
- <summary>
- ExpansionIndicatorImageCollapsedHotTracked
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ExpansionIndicatorImageExpanded">
- <summary>
- ExpansionIndicatorImageExpanded
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ExpansionIndicatorImageExpandedHotTracked">
- <summary>
- ExpansionIndicatorImageExpandedHotTracked
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ExpansionIndicatorPadding">
- <summary>
- ExpansionIndicatorPadding
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ExpansionIndicatorSize">
- <summary>
- ExpansionIndicatorSize
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.HideExpansionIndicators">
- <summary>
- HideExpansionIndicators
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.HideSelection">
- <summary>
- HideSelection
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.HotTrackAppearance">
- <summary>
- HotTrackAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.IconAreaAppearance">
- <summary>
- IconAreaAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ImageList">
- <summary>
- ImageList
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ImageSize">
- <summary>
- ImageSize
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.Indent">
- <summary>
- Indent
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.MenuAppearance">
- <summary>
- MenuAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.NodeConnectorColor">
- <summary>
- NodeConnectorColor
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.OkAppearance">
- <summary>
- OkAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.OkHotTrackAppearance">
- <summary>
- OkHotTrackAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.OkPressedAppearance">
- <summary>
- OkPressedAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.RightAlignedMenus">
- <summary>
- RightAlignedMenus
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ShowLines">
- <summary>
- ShowLines
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ShowOkCancel">
- <summary>
- ShowOkCancel
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ShowRootLines">
- <summary>
- ShowRootLines
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ToolAppearance">
- <summary>
- ToolAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.TreeAppearance">
- <summary>
- TreeAppearance
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.UseOsThemes">
- <summary>
- UseOsThemes
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.PropertyIds.ViewStyle">
- <summary>
- ViewStyle
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderViewStyle">
- <summary>
- An enumeration used to specify the style of the menus and tree.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderViewStyle.Default">
- <summary>
- The menus and tree will be displayed in their default style.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderViewStyle.Office2000">
- <summary>
- The menus will be displayed in an Office2000 style.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderViewStyle.OfficeXP">
- <summary>
- The menus will be displayed in an OfficeXP style.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderViewStyle.Office2003">
- <summary>
- The menus will be displayed in an Office2003 style.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderViewStyle.Office2007">
- <summary>
- The menus will be displayed in an Office2007 style.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderViewStyle.Vista">
- <summary>
- The menus and tree will be displayed in a Vista style.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderViewStyle.VisualStudio2005">
- <summary>
- The menus will be displayed in a VisualStudio2005 style.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.HideExpansionIndicators">
- <summary>
- Determines when to hide the expansion indicators, such as when the control does nto have focus or is not hot-tracked.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.HideExpansionIndicators.Default">
- <summary>
- Display in the Default style based on the current ViewStyle.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.HideExpansionIndicators.Never">
- <summary>
- Never hide the expansion indicators.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.HideExpansionIndicators.OnLostFocus">
- <summary>
- Hide the expansion indicators when the tree loses focus.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.HideExpansionIndicators.OnMouseLeave">
- <summary>
- Hide the expansion indicators when the mouse leaves the control.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.HideExpansionIndicators.OnLostFocusAndNotMouseOver">
- <summary>
- Hide the expansion indicators when the control loses focus and the mouse is not currently over the control (this is the default for the Vista ViewStyle).
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonType">
- <summary>
- An enumeration specifying the type of button shown by the filter provider.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonType.Ok">
- <summary>
- Represents the OK button.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonType.Cancel">
- <summary>
- Represents the Cancel button.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.AfterMenuPopulateEventArgs">
- <summary>
- The event args used by the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.AfterMenuPopulate"/> event.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.AfterMenuPopulateEventArgs.#ctor(Infragistics.Win.UltraWinGrid.ColumnFilter,System.Collections.Generic.IList{Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool})">
- <summary>
- Initializes a new instance of the class
- </summary>
- <param name="columnFilter">The column filter associated with the current filtering operation.</param>
- <param name="menuItems">A list of tools that will be shown in the menu.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.AfterMenuPopulateEventArgs.ColumnFilter">
- <summary>
- Returns the column filter associated with the current filtering operation.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.AfterMenuPopulateEventArgs.MenuItems">
- <summary>
- Returns the list of tools that will be shown by the filter provider.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.AfterMenuPopulateEventHandler">
- <summary>
- The delegate type used by the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.BeforeMenuPopulate"/> event.
- </summary>
- <param name="sender">The component that triggered the event.</param>
- <param name="e">The event args that provides information about the event.</param>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.BeforeMenuPopulateEventArgs">
- <summary>
- The event args used by the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.BeforeMenuPopulate"/> event.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.BeforeMenuPopulateEventArgs.#ctor(Infragistics.Win.UltraWinGrid.ColumnFilter,System.Collections.Generic.IList{Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool})">
- <summary>
- Initializes a new instance of the class
- </summary>
- <param name="columnFilter">The column filter associated with the current filtering operation.</param>
- <param name="menuItems">A list of tools that will be shown in the menu.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.BeforeMenuPopulateEventArgs.ColumnFilter">
- <summary>
- Returns the column filter associated with the current filtering operation.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.BeforeMenuPopulateEventArgs.MenuItems">
- <summary>
- Returns the list of tools that will be shown by the filter provider.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.BeforeMenuPopulateEventHandler">
- <summary>
- The delegate type used by the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.BeforeMenuPopulate"/> event.
- </summary>
- <param name="sender">The component that triggered the event.</param>
- <param name="e">The event args that provides information about the event.</param>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.ButtonToolClickEventArgs">
- <summary>
- The event args used by the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ButtonToolClick"/> event.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.ButtonToolClickEventArgs.#ctor(Infragistics.Win.UltraWinGrid.ColumnFilter,Infragistics.Win.SupportDialogs.FilterUIProvider.FilterButtonTool)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="columnFilter">The column filter associated with the current filtering operation.</param>
- <param name="buttonTool">The button tool that was clicked.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.ButtonToolClickEventArgs.ColumnFilter">
- <summary>
- Returns the column filter associated with the current filtering operation.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.ButtonToolClickEventArgs.Tool">
- <summary>
- Returns the tool that was clicked.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.ButtonToolClickEventHandler">
- <summary>
- The delegate type used by the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ButtonToolClick"/> event.
- </summary>
- <param name="sender">The component that triggered the event.</param>
- <param name="e">The event args that provides information about the event.</param>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool">
- <summary>
- A base class for all items that are displayed by the UltraGridFilterUIProvider.
- </summary>
- <seealso cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider"/>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.#ctor">
- <summary>
- Initializes a new instance of the class.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.#ctor(System.String)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="id">A string used for identifying this tool.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.#ctor(System.String,System.String)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="id">A string used for identifying this tool.</param>
- <param name="displayText">The text displayed by the UltraGridFilterUIProvider.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.ResetAppearance">
- <summary>
- Resets the Appearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.ResetCheckedAppearance">
- <summary>
- Resets the CheckedAppearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.ResetHotTrackAppearance">
- <summary>
- Resets the HotTrackAppearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.Dispose">
- <summary>
- Called to Dispose the object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.Appearance">
- <summary>
- Gets or sets the appearance of the tool.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.HasAppearance">
- <summary>
- Returns whether the Appearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.Checked">
- <summary>
- Gets or sets whether the button tool should display a checkmark next to it.
- </summary>
- <remarks>
- <p class="body">
- With the exception of a <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterOperandTool"/>, it is the responsibilty of derived classes
- to determine when they should be considered checked in the menu, since the filter provider does
- not have a means of determining that filtering has been performed via the click of a tool.
- </p>
- <p class="note">
- <b>Note: </b>The filter provider does not make an attempt to ensure that only
- one items is checked at a time. The <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.AfterMenuPopulate"/> event
- can be used to manipulate which tools are checked.
- </p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.CheckedAppearance">
- <summary>
- Gets or sets the checked appearance of the tool.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.HasCheckedAppearance">
- <summary>
- Returns whether the CheckedAppearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.DisplayText">
- <summary>
- Gets or sets the text that will be displayed in the menu.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.Enabled">
- <summary>
- Gets or sets whether the tool is enabled in the menu.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.HotTrackAppearance">
- <summary>
- Gets or sets the hot-tracked appearance of the tool.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.HasHotTrackAppearance">
- <summary>
- Returns whether the HotTrackAppearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.Id">
- <summary>
- Returns the id that represents this tool.
- </summary>
- <remarks>
- <p class="note">
- <b>Note: </b>No attempt will be made to guarantee uniqueness of this tool based
- on the id, nor is there a guarantee that a tool will provide an id.
- </p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool.IsFirstInGroup">
- <summary>
- Gets or sets the value indicating whether the tool instance represents the beginning of a
- visual grouping of tools.
- </summary>
- <remarks>
- <p class="note">
- <b>Note: </b>If a tool is set to IsFirstInGroup by default and that tool is removed from the list
- (such as through the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.AfterMenuPopulate"/> event), the next tool
- will not automatically become the first tool in the group, so it is up to the developer to handle this.
- </p>
- </remarks>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterButtonTool">
- <summary>
- Represents a clickable tool on the menu that is capable of displaying a checkmark.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterButtonTool.#ctor">
- <summary>
- Initializes a new instance of the class.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterButtonTool.#ctor(System.String)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="id">A string used for identifying this tool.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterButtonTool.#ctor(System.String,System.String)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="id">A string used for identifying this tool.</param>
- <param name="displayText">The text displayed by the UltraGridFilterUIProvider.</param>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterOperandTool">
- <summary>
- Represents a tool that, when clicked, will apply a SpecialFilterOperand to the underlying grid.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterOperandTool.#ctor(Infragistics.Win.UltraWinGrid.SpecialFilterOperand)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="specialOperand">The operand that will be used to apply filtering.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterOperandTool.#ctor(System.String,Infragistics.Win.UltraWinGrid.SpecialFilterOperand)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="id">A string used for identifying this tool.</param>
- <param name="specialOperand">The operand that will be used to apply filtering.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterOperandTool.#ctor(System.String,System.String,Infragistics.Win.UltraWinGrid.SpecialFilterOperand)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="id">A string used for identifying this tool.</param>
- <param name="displayText">The text displayed by the UltraGridFilterUIProvider.</param>
- <param name="specialOperand">The operand that will be used to apply filtering.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterOperandTool.Operand">
- <summary>
- Returns the operand associated with this tool that is used for filtering.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterMenuTool">
- <summary>
- Represents a tool that can display child menus.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterMenuTool.#ctor">
- <summary>
- Initializes a new instance of the class.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterMenuTool.#ctor(System.String)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="id">A string used for identifying this tool.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterMenuTool.#ctor(System.String,System.String)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="id">A string used for identifying this tool.</param>
- <param name="displayText">The text displayed by the UltraGridFilterUIProvider.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterMenuTool.Tools">
- <summary>
- Returns the list of items displayed in the child menu of the tool.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterMenuTool.Checked">
- <summary>
- Overridden. Returns true if any of the child FilterTools are checked.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTreeTool">
- <summary>
- Represents a tree that represents selectable values by which to filter.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTreeTool.#ctor">
- <summary>
- Initializes a new instance of the class.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTreeTool.#ctor(System.String)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="id">A string used for identifying this tool.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTreeTool.#ctor(System.String,System.String)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="id">A string used for identifying this tool.</param>
- <param name="displayText">The text displayed by the UltraGridFilterUIProvider.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTreeTool.DateHierarchyLevel">
- <summary>
- Gets or sets how many levels down the tree will break down
- a DateTime object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTreeTool.DisplayText">
- <summary>
- Overriden. This property is not supported on the Tree.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings">
- <summary>
- A class for modifying the settings used to control the buttons on the
- <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider"/>.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.#ctor">
- <summary>
- Instantiates a new instance of the class.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ShouldSerializeCancelAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ResetCancelAppearance">
- <summary>
- Resets the Appearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ShouldSerializeCancelHotTrackAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ResetCancelHotTrackAppearance">
- <summary>
- Resets the Appearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ShouldSerializeCancelPressedAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ResetCancelPressedAppearance">
- <summary>
- Resets the Appearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ShouldSerializeOkAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ResetOkAppearance">
- <summary>
- Resets the Appearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ShouldSerializeOkHotTrackAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ResetOkHotTrackAppearance">
- <summary>
- Resets the Appearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ShouldSerializeOkPressedAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ResetOkPressedAppearance">
- <summary>
- Resets the Appearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ShouldSerializeShowOkCancel">
- <summary>
- Determines whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ShowOkCancel"/> property is set to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ResetShowOkCancel">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ShowOkCancel"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ShouldSerialize">
- <summary>
- Returns whether the object contains non-default values.
- </summary>
- <returns>True if the object contains non-default values.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.Reset">
- <summary>
- Resets the object to its default state.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.OnDispose">
- <summary>
- Called when the object is being disposed.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
- <summary>
- Invoked when a property on a subobject has changed.
- </summary>
- <param name="propChange">Provides information about the change</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ToString">
- <summary>
- Returns an empty string.
- </summary>
- <returns>An empty string.</returns>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.CancelAppearance">
- <summary>
- Gets or sets the appearance of the Cancel button.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.HasCancelAppearance">
- <summary>
- Returns whether the Appearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.CancelHotTrackAppearance">
- <summary>
- Gets or sets the hot-tracked appearance of the OK button.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.HasCancelHotTrackAppearance">
- <summary>
- Returns whether the Appearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.CancelPressedAppearance">
- <summary>
- Gets or sets the pressed appearance of the Cancel button.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.HasCancelPressedAppearance">
- <summary>
- Returns whether the Appearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.OkAppearance">
- <summary>
- Gets or sets the appearance of the OK button.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.HasOkAppearance">
- <summary>
- Returns whether the Appearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.OkHotTrackAppearance">
- <summary>
- Gets or sets the hot-tracked appearance of the OK button.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.HasOkHotTrackAppearance">
- <summary>
- Returns whether the Appearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.OkPressedAppearance">
- <summary>
- Gets or sets the pressed appearance of the Ok button.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.HasOkPressedAppearance">
- <summary>
- Returns whether the Appearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings.ShowOkCancel">
- <summary>
- Determines whether the Ok and Cancel buttons are visible on the main menu.
- </summary>
- <remarks>
- <p class="note">
- <b>Note: </b>Changing this property will not have any effect until the next time the menu is shown.
- </p>
- <p class="note">
- <b>Note: </b>When the buttons are not shown, any changes that are made to the checked nodes
- in the tree will be applied to the associated column unless the user presses the Esc key.
- </p>
- </remarks>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings">
- <summary>
- A class for modifying the settings used to control the menus on the
- <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider"/>.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.#ctor">
- <summary>
- Instantiates a new instance of the class.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ShouldSerialize">
- <summary>
- Returns whether the object contains non-default values.
- </summary>
- <returns>True if the object contains non-default values.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.Reset">
- <summary>
- Resets the object to its default state.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ShouldSerializeAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ResetAppearance">
- <summary>
- Resets the Appearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ShouldSerializeCheckedAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ResetCheckedAppearance">
- <summary>
- Resets the CheckedAppearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ShouldSerializeHotTrackAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ResetHotTrackAppearance">
- <summary>
- Resets the HotTrackAppearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ShouldSerializeIconAreaAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ResetIconAreaAppearance">
- <summary>
- Resets the IconAreaAppearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ShouldSerializeImageList">
- <summary>
- Determines whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ImageList"/> property is set to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ResetImageList">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ImageList"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ShouldSerializeImageSize">
- <summary>
- Determines whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ImageSize"/> property is set to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ResetImageSize">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ImageSize"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ShouldSerializeRightAlignedMenus">
- <summary>
- Returns whether the RightAlignedMenus property contains non-default values.
- </summary>
- <returns>True if the RightAlignedMenus property contains non-default values.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ResetRightAlignedMenus">
- <summary>
- Resets the RightAlignedMenus property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ShouldSerializeToolAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ResetToolAppearance">
- <summary>
- Resets the ToolAppearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.OnDispose">
- <summary>
- Called when the object is being disposed.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
- <summary>
- Invoked when a property on a subobject has changed.
- </summary>
- <param name="propChange">Provides information about the change</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ToString">
- <summary>
- Returns an empty string.
- </summary>
- <returns>An empty string.</returns>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.Appearance">
- <summary>
- Gets or sets the default appearance of the menu.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.HasAppearance">
- <summary>
- Returns whether the Appearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.CheckedAppearance">
- <summary>
- Gets or sets the appearance of checked tools in the menu.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.HasCheckedAppearance">
- <summary>
- Returns whether the CheckedAppearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.HotTrackAppearance">
- <summary>
- Gets or sets the appearance of hot-tracked tools in the menu.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.HasHotTrackAppearance">
- <summary>
- Returns whether the HotTrackAppearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.IconAreaAppearance">
- <summary>
- Gets or sets the appearance of the icon area of the menu.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.HasIconAreaAppearance">
- <summary>
- Returns whether the IconAreaAppearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ImageList">
- <summary>
- Gets or sets the ImageList control containing the images associated with the tools on the menu.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ImageSize">
- <summary>
- Gets or sets the size of the images associated with the tools on the menu.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.RightAlignedMenus">
- <summary>
- Gets or sets whether menus will be left or right-aligned.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.ToolAppearance">
- <summary>
- Gets or sets the appearance of tools in the menu.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings.HasToolAppearance">
- <summary>
- Returns whether the ToolAppearance property has been created.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings">
- <summary>
- A class for modifying the settings off the tree shown by the
- <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider"/>.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.#ctor">
- <summary>
- Instantiates a new instance of the class.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeAppearance">
- <summary>
- Returns true if the Appearance is not the default
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetAppearance">
- <summary>
- Resets the Appearance property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeDateHierarchyLevel">
- <summary>
- Determines whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.DateHierarchyLevel"/> property is set to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetDateHierarchyLevel">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.DateHierarchyLevel"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeDrawsFocusRect">
- <summary>
- Returns true if the DrawFocusRect property is not the default value.
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetDrawsFocusRect">
- <summary>
- Resets the DrawFocusRect property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeExpansionIndicatorColor">
- <summary>
- Returns true if the ExpansionIndicatorColor property is not the default value.
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetExpansionIndicatorColor">
- <summary>
- Resets the ExpansionIndicatorColor property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeExpansionIndicatorImageCollapsed">
- <summary>
- Returns true if the ExpansionIndicatorImageCollapsed property is not the default value.
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetExpansionIndicatorImageCollapsed">
- <summary>
- Resets the ExpansionIndicatorColor property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeExpansionIndicatorImageCollapsedHotTracked">
- <summary>
- Returns true if the ExpansionIndicatorImageCollapsedHotTracked property is not the default value.
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetExpansionIndicatorImageCollapsedHotTracked">
- <summary>
- Resets the ExpansionIndicatorColor property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeExpansionIndicatorImageExpanded">
- <summary>
- Returns true if the ExpansionIndicatorImageExpanded property is not the default value.
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetExpansionIndicatorImageExpanded">
- <summary>
- Resets the ExpansionIndicatorColor property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeExpansionIndicatorImageExpandedHotTracked">
- <summary>
- Returns true if the ExpansionIndicatorImageExpandedHotTracked property is not the default value.
- </summary>
- <returns>True if the appearance is set to a non-default value.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetExpansionIndicatorImageExpandedHotTracked">
- <summary>
- Resets the ExpansionIndicatorColor property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeExpansionIndicatorPadding">
- <summary>
- Returns whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorPadding"/> property requires serialization.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetExpansionIndicatorPadding">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorPadding"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeExpansionIndicatorSize">
- <summary>
- Returns whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorSize"/> property requires serialization.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetExpansionIndicatorSize">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorSize"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeHideExpansionIndicators">
- <summary>
- Returns whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.HideExpansionIndicators"/> property requires serialization.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetHideExpansionIndicators">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.HideExpansionIndicators"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeHideSelection">
- <summary>
- Returns whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.HideSelection"/> property requires serialization.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetHideSelection">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.HideSelection"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeIndent">
- <summary>
- Returns whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.Indent"/> property requires serialization.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetIndent">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.Indent"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeNodeConnectorColor">
- <summary>
- Returns whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.NodeConnectorColor"/> property requires serialization.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetNodeConnectorColor">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.NodeConnectorColor"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeShowLines">
- <summary>
- Returns whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShowLines"/> property requires serialization.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetShowLines">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShowLines"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerializeShowRootLines">
- <summary>
- Returns whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShowRootLines"/> property requires serialization.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ResetShowRootLines">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShowRootLines"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShouldSerialize">
- <summary>
- Returns whether the object contains non-default values.
- </summary>
- <returns>True if the object contains non-default values.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.Reset">
- <summary>
- Resets all properties to their default values.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
- <summary>
- Invoked when a property on a subobject has changed.
- </summary>
- <param name="propChange">Provides information about the change</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ToString">
- <summary>
- Returns an empty string.
- </summary>
- <returns>An empty string.</returns>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.Appearance">
- <summary>
- Gets or sets the default appearance of the tree.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.HasAppearance">
- <summary>
- Returns whether the Appearance property has been created.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.DateHierarchyLevel">
- <summary>
- Gets or sets how many levels down the tree will break down a DateTime object.
- </summary>
- <remarks>
- <p class="note">
- <b>Note: </b>This property can be overriden on a per-instance basis by setting the
- <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTreeTool"/>s <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTreeTool.DateHierarchyLevel"/> property.
- </p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.DrawsFocusRect">
- <summary>
- Determins whether the focus rectangle will be drawn on the active node.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorColor">
- <summary>
- Gets or sets the color of the node expansion indicators.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageCollapsed">
- <summary>
- Gets or sets the image to displayed as the collapsed expansion indicator of nodes.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageCollapsedHotTracked">
- <summary>
- Gets or sets the image to display as the hot-tracked collapsed expansion indicator of nodes.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageExpanded">
- <summary>
- Gets or sets the image to displayed as the collapsed expansion indicator of nodes.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageExpandedHotTracked">
- <summary>
- Gets or sets the image to display as the hot-tracked collapsed expansion indicator of nodes.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorPadding">
- <summary>
- Gets or sets the amount of padding to use on the left and right sides
- of the expansion indicator.
- </summary>
- <remarks>
- <para class="body">Determines the amount of padding on the left and right of the expansion indicator. The value specified is applied to each side. For example, a value of 3 indicates 3 pixels of padding on the left and 3 pixels of padding on the right.</para>
- <para class="body"><see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorSize"/>, ExpansionIndicatorPadding, and <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.Indent"/> are closely related and the behavior of these three properties depends on the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ViewStyle"/>.</para>
- <para class="body">When ViewStlye is <b>Standard</b>, the actual indentation of the nodes in the tree will be the Indent property, unless the Indent is too small. If the Indent property value is too small to fit the ExpansionIndicatorSize and it's padding, then it will be enlarged to fit.</para>
- <para class="body">When ViewStlye is <b>WVista</b>, the Indent property is ignored, and the indentation is automatically calculated to fit the ExpansionIndicatorSize and <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorPadding"/>.</para>
- </remarks>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageCollapsed"/>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageCollapsedHotTracked"/>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageExpanded"/>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageExpandedHotTracked"/>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorSize"/>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.Indent"/>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorSize">
- <summary>
- Gets or sets the size of the expansion indicators.
- </summary>
- <remarks>
- <para class="body">ExpansionIndicatorSize, <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorPadding"/>, and <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.Indent"/> are closely related and the behavior of these three properties depends on the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ViewStyle"/>.</para>
- <para class="body">When ViewStyle is <b>Standard</b>, the actual indentation of the nodes in the tree will be the Indent property, unless the Indent is too small. If the Indent property value is too small to fit the ExpansionIndicatorSize and it's padding, then it will be enlarged to fit.</para>
- <para class="body">When ViewStyle is <b>Vista</b>, the Indent property is ignored, and the indentation is automatically calculated to fit the ExpansionIndicatorSize and <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorPadding"/>.</para>
- <para class="note">Note: When using Themes, the expansion indicators are drawn using the Windows Theme API. Themed expansion indicators have a maximum size of 9x9 and must be square (not rectangular). Specifying a larger size will leave extra padding around the expansion indicator, but the drawn image will not get any bigger.</para>
- </remarks>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageCollapsed"/>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageCollapsedHotTracked"/>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageExpanded"/>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorImageExpandedHotTracked"/>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorSize"/>
- <seealso cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ExpansionIndicatorPadding"/>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.HideExpansionIndicators">
- <summary>
- Gets or sets whether to automatically hide expansion indicators when the control does not have focus or is not hot-tracked.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.HideSelection">
- <summary>
- Gets/sets a value indicating whether the selected tree node (or nodes) remains
- highlighted when the Infragistics.Win.UltraWinTree.UltraTree has lost focus.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.Indent">
- <summary>
- Gets or sets the distance (in pixels) to indent each of the child tree node levels.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.NodeConnectorColor">
- <summary>
- Gets or sets the color of the connector lines.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShowLines">
- <summary>
- Gets or sets whether lines are drawn between tree nodes.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings.ShowRootLines">
- <summary>
- Gets or sets whether root nodes display expansion indicators and connector lines.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonUIElement">
- <summary>
- A UIElement representing either the OK or Cancel button shown on the dropdown of a <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider"/>.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonUIElement.#ctor(Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider,Infragistics.Win.UIElement,Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonType)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="provider">The filter provider component associated with the element.</param>
- <param name="parent">The parent element hosting this element.</param>
- <param name="buttonType">The type of the button this element represents.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonUIElement.DrawBorders(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draws the button borders.
- </summary>
- <param name="drawParams">The Infragistics.Win.UIElementDrawParams used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Renders the state button using the System theme.
- </summary>
- <param name="drawParams">The Infragistics.Win.UIElementDrawParams used to provide rendering information.</param>
- <returns>True if the element was able to be rendered using the system themes.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initialize the appearance
- </summary>
- <param name="appearance">The <see cref="T:Infragistics.Win.AppearanceData"/> object into which the appearance object should be merged.</param>
- <param name="requestedProps">The <see cref="T:Infragistics.Win.AppearancePropFlags"/> that specify which properties should be initialized.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonUIElement.OnClick">
- <summary>
- Called when the button is clicked
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonUIElement.ActionButtonType">
- <summary>
- Returns the type of button this element represents
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonUIElement.Enabled">
- <summary>
- Returns whether this element is enabled
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonUIElement.IsButtonStyleMouseActive">
- <summary>
- Indicates if the button style requires invalidation of the element on the mouse enter and exit.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.ActionButtonUIElement.UIRole">
- <summary>
- Returns the ui role for the element.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider">
- <summary>
- A Windows Forms component that provides an advanced filtering user interface for an <see cref="N:Infragistics.Win.UltraWinGrid"/>.
- </summary>
- <remarks>
- <p class="body">
- The UltraGridFilterUIProvider allows a user to make use of a more complex, customizable interface in order to
- manipulate how data is presented to them. This interface uses a familiar design for faster adaptation and comfort,
- in addition to allowing the developer to provide additional functionality beyond simple filtering.
- </p>
- <p class="body">
- Filtering is controlled through a series of <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool"/> objects, each of which corresponds to different item
- that is shown on a menu. The standard types of tools that a user will deal with are <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterButtonTool"/>s,
- <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterOperandTool"/>s, <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterMenuTool"/>s, and a single instance of a <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTreeTool"/>
- that allows for a finer degree of control over which values should be presented in the associated grid.
- </p>
- <p class="body">
- Though the filter provider will generate a default list of items based on the underlying data type of the column, items
- can be added, removed, or repositioned through the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.BeforeMenuPopulate"/> and <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.AfterMenuPopulate"/> events.
- This allows the ability to add functionality to the user that can meet the needs of a custom application, such as adding a new
- <b>FilterButtonTool</b> and handling the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ButtonToolClick"/> event in order to apply sorting to a column.
- </p>
- <p class="body">
- The appearances of all of the items on the provider can be customized through the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ButtonSettings"/>,
- <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.MenuSettings"/>, and <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.TreeSettings"/> properties. In addition, each of the tools can have
- appearances set indivually through the <b>AfterMenuPopulate</b> event; these settings will override any component-level properties.
- </p>
- </remarks>
- <seealso cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderButtonSettings"/>
- <seealso cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderMenuSettings"/>
- <seealso cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterUIProviderTreeSettings"/>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.#ctor">
- <summary>
- Initializes a new instance of the class.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.#ctor(System.ComponentModel.IContainer)">
- <summary>
- Initializes a new instance of the class.
- </summary>
- <param name="container">An <see cref="T:System.ComponentModel.IContainer"/> that represents the container of the <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider"/></param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.OnAfterMenuPopulate(Infragistics.Win.SupportDialogs.FilterUIProvider.AfterMenuPopulateEventArgs)">
- <summary>
- Called after the default menu items have been populated with the default <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool"/> instances.
- Fires the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.AfterMenuPopulate"/> event.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.OnBeforeMenuPopulate(Infragistics.Win.SupportDialogs.FilterUIProvider.BeforeMenuPopulateEventArgs)">
- <summary>
- Called before the default menu items have been populated with the default <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool"/> instances.
- Fires the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.BeforeMenuPopulate"/> event.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.OnButtonToolClick(Infragistics.Win.SupportDialogs.FilterUIProvider.ButtonToolClickEventArgs)">
- <summary>
- Called when a button tool within a menu is clicked.
- Fires the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ButtonToolClick"/> event.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
- <summary>
- Called when a property on a child object has been changed.
- </summary>
- <param name="propChange">A structure containing the property change information.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ShouldSerializeButtonSettings">
- <summary>
- Returns whether the ButtonSettings property contains non-default values.
- </summary>
- <returns>True if the MenuSettings property contains non-default values.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ResetButtonSettings">
- <summary>
- Resets the MenuSettings property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ShouldSerializeMenuSettings">
- <summary>
- Returns whether the MenuSettings property contains non-default values.
- </summary>
- <returns>True if the MenuSettings property contains non-default values.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ResetMenuSettings">
- <summary>
- Resets the MenuSettings property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ShouldSerializeTreeSettings">
- <summary>
- Returns whether the TreeSettings property contains non-default values.
- </summary>
- <returns>True if the TreeSettings property contains non-default values.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ResetTreeSettings">
- <summary>
- Resets the TreeSettings property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ShouldSerializeViewStyle">
- <summary>
- Determines whether the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ViewStyle"/> property is set to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ResetViewStyle">
- <summary>
- Resets the <see cref="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ViewStyle"/> property to its default value.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.CreateComponentRole">
- <summary>
- Overridden. Factory method used to create the component role that provides the style information for the component.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.Dispose(System.Boolean)">
- <summary>
- Clean up any resources being used.
- </summary>
- <param name="disposing">True if managed and unmanaged resources should be cleaned up.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.OnPropertyChanged(Infragistics.Win.PropertyChangedEventArgs)">
- <summary>
- Invokes the PropertyChanged event. This event is fired to notify listeners of a property changes on the component or a subobject.
- </summary>
- <param name="e">The property changed event args.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.Close(System.Boolean)">
- <summary>
- Closes the UI associated with the provided column filter, if shown.
- </summary>
- <param name="applyChanges">Specifies whether the selection changes made through the tree should be applied.</param>
- <remarks>
- <p class="note">
- <b>Note: </b>The tree is the only area of the UI that is affected by the <i>applyChanges</i> parameter. All other
- tools shown by the provider trigger actions that immediately apply a filter and close the menu, and so would not
- have any pending changes to apply.
- </p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.GetFilterCellEditor(Infragistics.Win.UltraWinGrid.UltraGridColumn)">
- <summary>
- Returns the editor that should be used in the filter cell when the FilterOperandStyle is
- set to Default or FilterUIProvider.
- </summary>
- <param name="column">The column for which an editor in the filter row is being requested.</param>
- <returns>The editor that should be used, or null if the grid should use the default editor.</returns>
- <remarks>
- <p class="note"><b>Note: </b>The grid will not cache the editor returned from this method,
- so it is up to the implementor to use a caching mechanism, if applicable.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.Show(Infragistics.Win.UltraWinGrid.ColumnFilter,Infragistics.Win.UltraWinGrid.RowsCollection,System.Drawing.Rectangle,Infragistics.Win.ValueList)">
- <summary>
- Shows the associated UI for performing a filtering operation.
- </summary>
- <param name="columnFilter">The column filter instance associated with the column being filtered.</param>
- <param name="rows">The collection of rows associated with the filtering operation. Can be null for a root-level collection.</param>
- <param name="exclusionRect">The rectangle that must remain visible and not be obscured by the UI.</param>
- <param name="values">The list of cell values that the user can select for comparison.</param>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.About">
- <summary>
- Displays the About dialog for the component.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.Infragistics#Shared#IUltraLicensedComponent#License">
- <summary>
- Return the license we cached inside the constructor
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ButtonSettings">
- <summary>
- Provides a group of settings related to the buttons on the menu shown by the provider.
- </summary>
- <remarks>
- <p class="note"><b>Note: </b>Changing any of these settings while the filter provider is shown
- will not have any effect. These properties will be honored the next time the provider is displayed.
- </p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.CreationFilter">
- <summary>
- Gets/sets the creation filter property
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.DrawFilter">
- <summary>
- Gets/sets the draw filter property
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.IsShown">
- <summary>
- Returns whether the provider is currently showing its UI.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.MenuSettings">
- <summary>
- Provides a group of settings related to the menu shown by the provider.
- </summary>
- <remarks>
- <p class="note"><b>Note: </b>Changing any of these settings while the filter provider is shown
- will not have any effect. These properties will be honored the next time the provider is displayed.
- </p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.TreeSettings">
- <summary>
- Provides a group of settings related to the tree shown by the provider.
- </summary>
- <remarks>
- <p class="note"><b>Note: </b>Changing any of these settings while the filter provider is shown
- will not have any effect. These properties will be honored the next time the provider is displayed.
- </p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.UseOsThemes">
- <summary>
- Indicates whether the elements of a control may be rendered using the operating system theme rendering.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.UseOsThemesResolved">
- <summary>
- Indicates whether the elements of a control may be rendered using system themes.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ViewStyle">
- <summary>
- Gets or sets a value that specifies the style of the various filter tools and menu.
- </summary>
- <remarks>
- <p class="note"><b>Note: </b>Only the Vista style will have an effect on the FilterTreeTool; all other styles will
- show the tree with a standard style.</p>
- </remarks>
- </member>
- <member name="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.AfterMenuPopulate">
- <summary>
- Occurs before the list of menu items has been populated with the default <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool"/>s.
- </summary>
- <p class="body">
- This event is the best place to handle the rearranging of menu items, adding new menu items, or removing
- existing menu items due to the fact that all default items have been placed into the list provided through
- the <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.AfterMenuPopulateEventArgs"/>. Any changes in position or contents of the list (and of any
- nested lists of <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterMenuTool"/> objects) will be respected in the menu when the provider is shown.
- </p>
- <p class="note">
- <b>Note: </b>This event will not fire if the <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.BeforeMenuPopulate"/> event is marked as handled, since this
- means that the user has taken responsibility for completely populating the list of tools.
- </p>
- </member>
- <member name="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.BeforeMenuPopulate">
- <summary>
- Occurs before the list of menu items has been populated with the default <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTool"/>s.
- </summary>
- <remarks>
- <p class="body">
- This event is fired after the UltraGrid's <see cref="E:Infragistics.Win.UltraWinGrid.UltraGridBase.BeforeRowFilterDropDown"/> event.
- While the purpose of the grid's event is to populate the contents of the tree, the purpose of this event, and the
- corresponding <see cref="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.AfterMenuPopulate"/>, is to handle the creation and positioning of the various menu items that
- appear when the filter provider is shown.
- </p>
- <p class="note">
- <b>Note: </b>Marking this event as handled will prevent the provider from adding all standard menu tiems, including the tree.
- Since the <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterTreeTool"/> cannot be manually created, if you would like to reposition this element, the
- <i>AfterMenuPopulate</i> event should be used instead.
- </p>
- </remarks>
- </member>
- <member name="E:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.ButtonToolClick">
- <summary>
- Occurs when a button tool within a menu is clicked.
- </summary>
- <remarks>
- <p class="body">
- This event will fire for all tools that derive from <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterButtonTool"/>, including
- those buttons that are created automatically for the registered <see cref="T:Infragistics.Win.UltraWinGrid.SpecialFilterOperand"/>s.
- Marking this event as handled will prevent the default logic from being executed, which includes
- applying any filters to the associated column.
- </p>
- </remarks>
- <seealso cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterButtonTool"/>
- <seealso cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.FilterOperandTool"/>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.UltraGridFilterUIProviderRole">
- <summary>
- Role class for the <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider"/> derived controls.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.UltraGridFilterUIProviderRole.#ctor(Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider)">
- <summary>
- Creates a new <see cref="T:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.UltraGridFilterUIProviderRole"/> instance.
- </summary>
- <param name="provider">The filter provider associated with the component role.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.UltraGridFilterUIProviderRole.GetRoleNames">
- <summary>
- Used by the associated <see cref="T:Infragistics.Win.AppStyling.ComponentRole"/> to determine which <see cref="T:Infragistics.Win.AppStyling.UIRole"/> instances should be cached.
- </summary>
- <returns>An array of strings containing the names of the role names that should be cached.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.UltraGridFilterUIProviderRole.OnStyleChanged">
- <summary>
- Invoked when the style information for the component has changed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FilterUIProvider.UltraGridFilterUIProvider.UltraGridFilterUIProviderRole.SynchronizingObject">
- <summary>
- Gets an object used for threading synchronization
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FormattedTextEditor.FormattedTextUIEditorForm">
- <summary>
- Summary description for FormattedTextUIEditorForm.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.FormattedTextUIEditorForm.#ctor">
- <summary>
- Constructor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.FormattedTextUIEditorForm.#ctor(Infragistics.Win.FormattedLinkLabel.UltraFormattedTextEditorBase)">
- <summary>
- Constructor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.FormattedTextUIEditorForm.Dispose(System.Boolean)">
- <summary>
- Clean up any resources being used.
- </summary>
- <param name="disposing">True if managed and unmanaged resources should be cleaned up.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.FormattedTextUIEditorForm.InitializeComponent">
- <summary>
- Required method for Designer support - do not modify
- the contents of this method with the code editor.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FormattedTextEditor.FormattedTextUIEditorForm.Value">
- <summary>
- Gets or sets the value that's being edited.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FormattedTextEditor.FontDialog">
- <summary>
- Dialog for selecting font.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.FontDialog.#ctor">
- <summary>
- Constructor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.FontDialog.Dispose(System.Boolean)">
- <summary>
- Clean up any resources being used.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.FontDialog.InitializeComponent">
- <summary>
- Required method for Designer support - do not modify
- the contents of this method with the code editor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.FontDialog.Infragistics#Win#FormattedLinkLabel#ISupportDialog#ShowDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- Dialog for selecting font.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.FormattedTextEditor.FontDialog.FontTag">
- <summary>
- Builds and returns the modified FontTag based on the entered values.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FormattedTextEditor.HyperLinkDialog">
- <summary>
- Dialog for entering a new hyperlink or modifying an existing one.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.HyperLinkDialog.#ctor">
- <summary>
- Constructor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.HyperLinkDialog.Dispose(System.Boolean)">
- <summary>
- Clean up any resources being used.
- </summary>
- <param name="disposing">True if managed and unmanaged resources should be cleaned up.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.HyperLinkDialog.InitializeComponent">
- <summary>
- Required method for Designer support - do not modify
- the contents of this method with the code editor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.HyperLinkDialog.Infragistics#Win#FormattedLinkLabel#ISupportDialog#ShowDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- Dialog for entering a new hyperlink or modifying an existing one.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FormattedTextEditor.ImageDialog">
- <summary>
- Summary description for ImageDialog.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.ImageDialog.#ctor">
- <summary>
- Constructor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.ImageDialog.Dispose(System.Boolean)">
- <summary>
- Clean up any resources being used.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.ImageDialog.InitializeComponent">
- <summary>
- Required method for Designer support - do not modify
- the contents of this method with the code editor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.ImageDialog.Infragistics#Win#FormattedLinkLabel#ISupportDialog#ShowDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- Summary description for ImageDialog.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.FormattedTextEditor.PropertyGridDialog">
- <summary>
- Summary description for PropertyGridDialog.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.FormattedTextEditor.PropertyGridDialog.components">
- <summary>
- Required designer variable.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.PropertyGridDialog.#ctor">
- <summary>
- Constructor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.PropertyGridDialog.Dispose(System.Boolean)">
- <summary>
- Clean up any resources being used.
- </summary>
- <param name="disposing">True if managed and unmanaged resources should be cleaned up.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.FormattedTextEditor.PropertyGridDialog.InitializeComponent">
- <summary>
- Required method for Designer support - do not modify
- the contents of this method with the code editor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Glyphs.GlyphImageEditor.OnGlyphImageChanged">
- <summary>
- Fires the FileNameChanged event.
- </summary>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.Glyphs.GlyphImageEditor.components">
- <summary>
- Required designer variable.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Glyphs.GlyphImageEditor.Dispose(System.Boolean)">
- <summary>
- Clean up any resources being used.
- </summary>
- <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Glyphs.GlyphImageEditor.InitializeComponent">
- <summary>
- Required method for Designer support - do not modify
- the contents of this method with the code editor.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.Glyphs.GlyphImageEditor.Text">
- <summary>
- The text associated with this control.
- </summary>
- </member>
- <member name="E:Infragistics.Win.SupportDialogs.Glyphs.GlyphImageEditor.GlyphImageChanged">
- <summary>
- Fires when the Filename changes. This occurs when a new ApplicationStyleLibrary is created or loaded, or when the current library is saved to a new filename.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.Glyphs.Design.GlyphInfoUITypeEditorBase">
- <summary>
- Base UITypeEditor for editing check box and radio button glyphs.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Glyphs.Design.GlyphInfoUITypeEditorBase.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
- <summary>
- Used to determine the type of UIEditor that will be displayed.
- </summary>
- <param name="context">ITypeDescriptorContext</param>
- <returns>UITypeEditorEditStyle specifying the type of UIEditor.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Glyphs.Design.GlyphInfoUITypeEditorBase.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
- <summary>
- Used to edit the value and convert the value as needed.
- </summary>
- <param name="context">ITypeDescriptorContext</param>
- <param name="provider">IServiceProvider</param>
- <param name="value">Current value</param>
- <returns>Edited value.</returns>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.Glyphs.Design.GlyphInfoUITypeEditorBase.GlyphType">
- <summary>
- Determines the type of glyph being designed.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.Glyphs.Design.CheckBoxGlyphInfoUITypeEditor">
- <summary>
- UITypeEditor for editing check box glyphs.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.Glyphs.Design.CheckBoxGlyphInfoUITypeEditor.GlyphType">
- <summary>
- Returns GlyphType.CheckBox
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.Glyphs.Design.RadioButtonGlyphInfoUITypeEditor">
- <summary>
- UITypeEditor for editing radio button glyphs.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.Glyphs.Design.RadioButtonGlyphInfoUITypeEditor.GlyphType">
- <summary>
- Returns GlyphType.RadioButton
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.Glyphs.GlyphInfoEditorForm">
- <summary>
- A dialog for choosing or editing checkbox and radio button glyphs.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Glyphs.GlyphInfoEditorForm.#ctor(Infragistics.Win.GlyphType,Infragistics.Win.GlyphInfoBase)">
- <summary>
- Creates a new instance of a GlyphInfoEditorForm.
- </summary>
- <param name="glyphType">The type of Glyph being editer</param>
- <param name="initialGlyphInfo">The initial glyph info. Used to initialize the dialog.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Glyphs.GlyphInfoEditorForm.GetCurrentGlyphImage(Infragistics.Win.UIElementButtonState)">
- <summary>
- Returns the glyph image for the specified state.
- </summary>
- <param name="buttonState">The UIElementButtonState indicating the state of the glyph.</param>
- <returns>The glyph image for the specified state. </returns>
- </member>
- <member name="F:Infragistics.Win.SupportDialogs.Glyphs.GlyphInfoEditorForm.components">
- <summary>
- Required designer variable.
- </summary>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Glyphs.GlyphInfoEditorForm.Dispose(System.Boolean)">
- <summary>
- Clean up any resources being used.
- </summary>
- <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Glyphs.GlyphInfoEditorForm.InitializeComponent">
- <summary>
- Required method for Designer support - do not modify
- the contents of this method with the code editor.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.Glyphs.GlyphInfoEditorForm.GlyphInfo">
- <summary>
- The GlyphInfo created by the dialog.
- </summary>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.Resources">
- <summary>
- Exposes a <see cref="T:Infragistics.Shared.ResourceCustomizer"/> instance for this assembly.
- </summary>
- <seealso cref="P:Infragistics.Win.SupportDialogs.Resources.Customizer"/>
- <seealso cref="T:Infragistics.Shared.ResourceCustomizer"/>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Resources.GetString(System.String,System.Object[])">
- <summary>
- Returns the resource string using the specified name and default culture.
- </summary>
- <param name="name">Name of the string resource to return.</param>
- <param name="args">Arguments supplied to the string.Format method when formatting the string.</param>
- <returns>The resource string using the specified name and default culture.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Resources.GetString(System.String)">
- <summary>
- Returns the resource string using the specified resource name and default culture. The string is then formatted using the arguments specified.
- </summary>
- <param name="name">Name of the string resource to return.</param>
- <returns>The resource string using the specified name and default culture.</returns>
- </member>
- <member name="M:Infragistics.Win.SupportDialogs.Resources.GetObject(System.String)">
- <summary>
- Returns the resource object using the specified name.
- </summary>
- <param name="name">Name of the resource item</param>
- <returns>An object containing the specified resource</returns>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.Resources.Customizer">
- <summary>
- Returns the <see cref="T:Infragistics.Shared.ResourceCustomizer"/> for this assembly.
- </summary>
- <seealso cref="T:Infragistics.Shared.ResourceCustomizer"/>
- </member>
- <member name="T:Infragistics.Win.SupportDialogs.strings">
- <summary>
- A strongly-typed resource class, for looking up localized strings, etc.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ResourceManager">
- <summary>
- Returns the cached ResourceManager instance used by this class.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.Culture">
- <summary>
- Overrides the current thread's CurrentUICulture property for all
- resource lookups using this strongly typed resource class.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.Button_Apply">
- <summary>
- Looks up a localized string similar to A&pply.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.Button_Cancel">
- <summary>
- Looks up a localized string similar to &Cancel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.Button_OK">
- <summary>
- Looks up a localized string similar to &OK.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_AddConditionAppearanceMappings">
- <summary>
- Looks up a localized string similar to Add Condition/Appearance Mappings.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_AddConditionGroup_Button">
- <summary>
- Looks up a localized string similar to Add Condition Group.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_AddFormulaCondition_Button">
- <summary>
- Looks up a localized string similar to Add Formula Condition.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_AddOperatorCondition_Button">
- <summary>
- Looks up a localized string similar to Add Operator Condition.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_AddTrueCondition_Button">
- <summary>
- Looks up a localized string similar to Add True Condition.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_ApplyAllMatchingConditions_Checkbox">
- <summary>
- Looks up a localized string similar to Apply All Matching Conditions.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_CreateConditionGroup_Form">
- <summary>
- Looks up a localized string similar to Create Condition Group.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_DeleteCondition_Button">
- <summary>
- Looks up a localized string similar to Delete Condition.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Edit_ConditionGroup">
- <summary>
- Looks up a localized string similar to Edit Condition Group.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Edit_FormulaCondition">
- <summary>
- Looks up a localized string similar to Edit Formula Condition.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Grid_IsCaseSensitive">
- <summary>
- Looks up a localized string similar to CaseSensitive.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Grid_IsComplement">
- <summary>
- Looks up a localized string similar to IsComplement.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Grid_Operator">
- <summary>
- Looks up a localized string similar to Operator.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Grid_Value">
- <summary>
- Looks up a localized string similar to Value.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Legend_ConditionGroup">
- <summary>
- Looks up a localized string similar to - Condition Group.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Legend_FormulaCondition">
- <summary>
- Looks up a localized string similar to - Formula Condition.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Legend_Header">
- <summary>
- Looks up a localized string similar to Legend.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Legend_OperatorCondition">
- <summary>
- Looks up a localized string similar to - Operator Condition.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Legend_TrueCondition">
- <summary>
- Looks up a localized string similar to - True Condition.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_LogicalOperator_And">
- <summary>
- Looks up a localized string similar to And.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_LogicalOperator_Header">
- <summary>
- Looks up a localized string similar to Logical Operator.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_LogicalOperator_Or">
- <summary>
- Looks up a localized string similar to Or.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_MoveDown_Button">
- <summary>
- Looks up a localized string similar to Move Down.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_MoveUp_Button">
- <summary>
- Looks up a localized string similar to Move Up.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_Contains">
- <summary>
- Looks up a localized string similar to Contains.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_DoesNotContain">
- <summary>
- Looks up a localized string similar to DoesNotContain.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_DoesNotEndWith">
- <summary>
- Looks up a localized string similar to DoesNotEndWith.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_DoesNotMatch">
- <summary>
- Looks up a localized string similar to DoesNotMatch.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_DoesNotStartWith">
- <summary>
- Looks up a localized string similar to DoesNotStartWith.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_EndsWith">
- <summary>
- Looks up a localized string similar to EndsWith.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_Equals">
- <summary>
- Looks up a localized string similar to Equals.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_GreaterThan">
- <summary>
- Looks up a localized string similar to GreaterThan.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_GreaterThanOrEqualTo">
- <summary>
- Looks up a localized string similar to GreaterThanOrEqualTo.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_IsNullOrEmpty">
- <summary>
- Looks up a localized string similar to IsNullOrEmpty.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_LessThan">
- <summary>
- Looks up a localized string similar to LessThan.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_LessThanOrEqualTo">
- <summary>
- Looks up a localized string similar to LessThanOrEqualTo.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_Like">
- <summary>
- Looks up a localized string similar to Like.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_Match">
- <summary>
- Looks up a localized string similar to Match.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_NotEquals">
- <summary>
- Looks up a localized string similar to NotEquals.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_NotLike">
- <summary>
- Looks up a localized string similar to NotLike.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_Operator_StartsWith">
- <summary>
- Looks up a localized string similar to StartsWith.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ConditionalFormatting_PropertyGrid_Label">
- <summary>
- Looks up a localized string similar to Use the property grid below to edit the Appearance for the selected object(s) in the grid..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.EmbedInXMLCheckbox_ToolTip">
- <summary>
- Looks up a localized string similar to If you check this, the image data will be embedded inside the xml formatted text. This way the URL or the file doesn\'t have to exist at runtime..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_CancelButton">
- <summary>
- Looks up a localized string similar to Cancel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_E_AfterMenuPopulate">
- <summary>
- Looks up a localized string similar to Occurs after the list of menu items has been populated with the default FilterTools..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_E_BeforeMenuPopulate">
- <summary>
- Looks up a localized string similar to Occurs before the list of menu items has been populated with the default FilterTools..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_E_ButtonToolClick">
- <summary>
- Looks up a localized string similar to Occurs when a button tool within a menu is clicked..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_E_ColumnFilterNull">
- <summary>
- Looks up a localized string similar to The filter provider must have a valid column filter object..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_Menu_ClearFilter">
- <summary>
- Looks up a localized string similar to &Clear Filter.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_Menu_CustomFilters">
- <summary>
- Looks up a localized string similar to Custom &Filters.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_Menu_DateFilters">
- <summary>
- Looks up a localized string similar to Date &Filters.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_Menu_NumberFilters">
- <summary>
- Looks up a localized string similar to Number &Filters.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_Menu_TextFilters">
- <summary>
- Looks up a localized string similar to Text &Filters.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_OKButton">
- <summary>
- Looks up a localized string similar to OK.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_P_ButtonSettings">
- <summary>
- Looks up a localized string similar to Provides a group of settings related to the buttons on the menu shown by the provider..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_P_MenuSettings">
- <summary>
- Looks up a localized string similar to Provides a group of settings related to the menu shown by the provider..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_P_TreeSettings">
- <summary>
- Looks up a localized string similar to Provides a group of settings related to the tree shown by the provider..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProvider_P_ViewStyle">
- <summary>
- Looks up a localized string similar to Gets or sets a value that specifies the style of the various filter tools and menu..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderButtonSettings_P_CancelAppearance">
- <summary>
- Looks up a localized string similar to Gets or sets the appearance of the Cancel button..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderButtonSettings_P_CancelHotTrackAppearance">
- <summary>
- Looks up a localized string similar to Gets or sets the hot-tracked appearance of the Cancel button..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderButtonSettings_P_CancelPressedAppearance">
- <summary>
- Looks up a localized string similar to Gets or sets the pressed appearance of the Cancel button..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderButtonSettings_P_OkAppearance">
- <summary>
- Looks up a localized string similar to Gets or sets the appearance of the OK button..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderButtonSettings_P_OkHotTrackAppearance">
- <summary>
- Looks up a localized string similar to Gets or sets the hot-tracked appearance of the OK button..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderButtonSettings_P_OkPressedAppearance">
- <summary>
- Looks up a localized string similar to Gets or sets the pressed appearance of the Ok button..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderButtonSettings_P_ShowOkCancel">
- <summary>
- Looks up a localized string similar to Determines whether the Ok and Cancel buttons are visible on the main menu..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderMenuSettings_P_Appearance">
- <summary>
- Looks up a localized string similar to Gets or sets the default appearance of the menu..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderMenuSettings_P_CheckedAppearance">
- <summary>
- Looks up a localized string similar to Gets or sets the appearance of checked tools in the menu..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderMenuSettings_P_HotTrackAppearance">
- <summary>
- Looks up a localized string similar to Gets or sets the appearance of hot-tracked tools in the menu..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderMenuSettings_P_IconAreaAppearance">
- <summary>
- Looks up a localized string similar to Gets or sets the appearance of the icon area of the menu..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderMenuSettings_P_ImageList">
- <summary>
- Looks up a localized string similar to Gets or sets the ImageList control containing the images associated with the tools on the menu..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderMenuSettings_P_ImageSize">
- <summary>
- Looks up a localized string similar to Gets or sets the size of the images associated with the tools on the menu..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderMenuSettings_P_RightAlignedMenus">
- <summary>
- Looks up a localized string similar to Gets or sets whether menus will be left or right-aligned..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderMenuSettings_P_ToolAppearance">
- <summary>
- Looks up a localized string similar to Gets or sets the appearance of tools in the menu..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_Appearance">
- <summary>
- Looks up a localized string similar to Gets or sets the default appearance of the tree..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_DateHierarchyLevel">
- <summary>
- Looks up a localized string similar to Gets or sets how many levels down the tree will break down a DateTime object..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_DrawsFocusRect">
- <summary>
- Looks up a localized string similar to Determins whether the focus rectangle will be drawn on the active node..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_ExpansionIndicatorColor">
- <summary>
- Looks up a localized string similar to Gets or sets the color of the node expansion indicators..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_ExpansionIndicatorImageCollapsed">
- <summary>
- Looks up a localized string similar to Gets or sets the image to display as the collapsed expansion indicator of nodes..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_ExpansionIndicatorImageCollapsedHotTracked">
- <summary>
- Looks up a localized string similar to Gets or sets the image to display as the hot-tracked collapsed expansion indicator of nodes..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_ExpansionIndicatorImageExpanded">
- <summary>
- Looks up a localized string similar to Gets or sets the image to display as the expanded expansion indicator of nodes..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_ExpansionIndicatorImageExpandedHotTracked">
- <summary>
- Looks up a localized string similar to Gets or sets the image to display as the hot-tracked expanded expansion indicator of nodes..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_ExpansionIndicatorPadding">
- <summary>
- Looks up a localized string similar to Gets or sets the amount of padding to use on the left and right sides of the expansion indicator..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_ExpansionIndicatorSize">
- <summary>
- Looks up a localized string similar to Gets or sets the size of the expansion indicators..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_HideExpansionIndicators">
- <summary>
- Looks up a localized string similar to Gets or sets whether to automatically hide expansion indicators when the control does not have focus or is not hot-tracked..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_HideSelection">
- <summary>
- Looks up a localized string similar to Gets/sets a value indicating whether the selected tree node (or nodes) remains highlighted when the Infragistics.Win.UltraWinTree.UltraTree has lost focus..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_Indent">
- <summary>
- Looks up a localized string similar to Gets or sets the distance (in pixels) to indent each of the child tree node levels..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_NodeConnectorColor">
- <summary>
- Looks up a localized string similar to Gets or sets the color of the connector lines..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_ShowLines">
- <summary>
- Looks up a localized string similar to Gets or sets whether lines are drawn between tree nodes..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FilterUIProviderTreeSettings_P_ShowRootLines">
- <summary>
- Looks up a localized string similar to Gets or sets whether root nodes display expansion indicators and connector lines..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Ampersand">
- <summary>
- Looks up a localized string similar to Insert (&) sign at the current position..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Back_Color">
- <summary>
- Looks up a localized string similar to Change the background color of the selected text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Bold">
- <summary>
- Looks up a localized string similar to Make the selected text bold..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Center">
- <summary>
- Looks up a localized string similar to Center text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Copy">
- <summary>
- Looks up a localized string similar to Copy the selection and put it on the Clipboard..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Cut">
- <summary>
- Looks up a localized string similar to Cut the selection from the document and put it on the Clipboard..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Font">
- <summary>
- Looks up a localized string similar to Show the font dialog..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Font_List">
- <summary>
- Looks up a localized string similar to Change the font face of the selected text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Font_Size">
- <summary>
- Looks up a localized string similar to Change the font size of the selected text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Greater_than">
- <summary>
- Looks up a localized string similar to Insert a 'greater than' (>) sign at the current position..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Horizontal_Line">
- <summary>
- Looks up a localized string similar to Insert a horizontal line at the current position..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Hyperlink">
- <summary>
- Looks up a localized string similar to Create a link to a Web page..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Image">
- <summary>
- Looks up a localized string similar to Insert a picture from a file..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Italics">
- <summary>
- Looks up a localized string similar to Italicize the selected text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Justify">
- <summary>
- Looks up a localized string similar to Align text to both the left and right margins, adding extra space between words as necessary. This creates a clean look along the left and right side of the page..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Left_Align">
- <summary>
- Looks up a localized string similar to Align text to the left..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Less_than">
- <summary>
- Looks up a localized string similar to Insert a 'less than' (<) sign at the current position..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Line_Break">
- <summary>
- Looks up a localized string similar to Start the next line at the current position..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Paragraph">
- <summary>
- Looks up a localized string similar to Insert a paragraph at the current location..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Paste">
- <summary>
- Looks up a localized string similar to Paste the contents of the Clipboard..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Redo">
- <summary>
- Looks up a localized string similar to Redo the last action which was undone..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Right_Align">
- <summary>
- Looks up a localized string similar to Align text to the right..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Text_Color">
- <summary>
- Looks up a localized string similar to Change the text color of the selected text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Underline">
- <summary>
- Looks up a localized string similar to Underline the selected text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_AccessibleDescription_Tool_Undo">
- <summary>
- Looks up a localized string similar to Undo the last action performed..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Dialog_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Edit the contents of a formatted link label or text editor..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Dialog_Title">
- <summary>
- Looks up a localized string similar to Edit Formatted Text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_BackColor">
- <summary>
- Looks up a localized string similar to Back&ground Color.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_BackColor_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Change the background color of font..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_BackColor_Reset_Button_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Reset the background color of the font..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_Bold">
- <summary>
- Looks up a localized string similar to &Bold.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_Bold_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Make the font bold..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_Dialog_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Edit the font..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_Dialog_Title">
- <summary>
- Looks up a localized string similar to Font.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_FontName">
- <summary>
- Looks up a localized string similar to Font &Name.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_FontName_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Change the font face..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_FontName_Reset_Button_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Reset the font face..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_FontSize_Reset_Button_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Reset the font size..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_ForeColor">
- <summary>
- Looks up a localized string similar to Text &Color.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_ForeColor_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Change the font color..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_ForeColor_Reset_Button_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Reset the font color..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_GroupHeader_Edit">
- <summary>
- Looks up a localized string similar to Edit font information here.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_GroupHeader_Edit_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Edit the different font information..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_GroupHeader_Preview">
- <summary>
- Looks up a localized string similar to Preview.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_GroupHeader_Preview_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Shows a preview of the font..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_Italic">
- <summary>
- Looks up a localized string similar to &Italic.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_Italic_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Italicize the font..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_PreviewText">
- <summary>
- Looks up a localized string similar to Preview Text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_Reset_Button">
- <summary>
- Looks up a localized string similar to Clear.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_Size">
- <summary>
- Looks up a localized string similar to &Size.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_Size_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Change the font size..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_Underline">
- <summary>
- Looks up a localized string similar to &Underline.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_FontDialog_Underline_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Underline the font..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_GroupHeader_Edit">
- <summary>
- Looks up a localized string similar to Edit the value here.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_GroupHeader_Edit_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Edit the raw text of the editor..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_GroupHeader_Preview">
- <summary>
- Looks up a localized string similar to Preview.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_GroupHeader_Preview_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Preview the formatted text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_GroupHeader_Status_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Displays the status when formatting the raw text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_GroupHeader_Status_Error">
- <summary>
- Looks up a localized string similar to Status: Error. An Error has occurred while parsing the XML..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_GroupHeader_Status_OK">
- <summary>
- Looks up a localized string similar to Status: OK. The XML is properly formed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_Dialog_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Insert a link to a web page into the text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_Dialog_Title">
- <summary>
- Looks up a localized string similar to Insert Hyperlink.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_DisplayText">
- <summary>
- Looks up a localized string similar to &Display Text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_DisplayText_AccessibleDescription">
- <summary>
- Looks up a localized string similar to The text displayed in the hyperlink..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_GroupHeader_Edit">
- <summary>
- Looks up a localized string similar to Edit the hyperlink here.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_GroupHeader_Edit_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Edit the hyperlink here..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_GroupHeader_Preview">
- <summary>
- Looks up a localized string similar to Preview.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_GroupHeader_Preview_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Preview the hyperlink..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_ToolTipText">
- <summary>
- Looks up a localized string similar to &Tooltip Text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_ToolTipText_AccessibleDescription">
- <summary>
- Looks up a localized string similar to The tooltip text displayed when the mouse hovers over the hyperlink..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_URL">
- <summary>
- Looks up a localized string similar to &URL.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_HyperLinkDialog_URL_AccessibleDescription">
- <summary>
- Looks up a localized string similar to The URL of the hyperlink..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_AdvancedSettings">
- <summary>
- Looks up a localized string similar to Advanced Settings.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_Dialog_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Insert an image into the text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_Dialog_Title">
- <summary>
- Looks up a localized string similar to Insert Image.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_EmbedInXML">
- <summary>
- Looks up a localized string similar to Embed Image Data in XML.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_EmbedInXML_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Store the encoded image data and not the image URL in the formatting XML..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_FloatStyle">
- <summary>
- Looks up a localized string similar to Image Display Style:.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_GroupHeader_Edit">
- <summary>
- Looks up a localized string similar to Select Image.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_GroupHeader_Edit_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Specify the image and the way it will be displayed in the text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_GroupHeader_Preview">
- <summary>
- Looks up a localized string similar to Preview.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_GroupHeader_Preview_AccessibleDescription">
- <summary>
- Looks up a localized string similar to Preview the image..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_Height">
- <summary>
- Looks up a localized string similar to Display Height:.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_Height_AccessibleDescription">
- <summary>
- Looks up a localized string similar to The height of the image in the text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_Image_Source">
- <summary>
- Looks up a localized string similar to Image Source (URL/File).
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_Image_Source_AccessibleDescription">
- <summary>
- Looks up a localized string similar to The location where the image resides..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_ImageFileDialog_Caption">
- <summary>
- Looks up a localized string similar to Select Image.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_ImageFileDialog_Filter">
- <summary>
- Looks up a localized string similar to Image Files(*.BMP;*.JPG;*.JPEG;*.GIF)|*.BMP;*.JPG;*.JPEG;*.GIF|All files (*.*)|*.*.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_Option_FloatLeft">
- <summary>
- Looks up a localized string similar to Float Left.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_Option_FloatRight">
- <summary>
- Looks up a localized string similar to Float Right.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_Option_InlineWithText">
- <summary>
- Looks up a localized string similar to Inline with text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_ToolTipText">
- <summary>
- Looks up a localized string similar to Tooltip Text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_ToolTipText_AccessibleDescription">
- <summary>
- Looks up a localized string similar to The test displayed in the tooltip when the mouse hovers over the image..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_Width">
- <summary>
- Looks up a localized string similar to Display Width:.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ImageDialog_Width_AccessibleDescription">
- <summary>
- Looks up a localized string similar to The width of the image in the text..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_NoURL_Caption">
- <summary>
- Looks up a localized string similar to No URL.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_NoURL_Message">
- <summary>
- Looks up a localized string similar to URL is not specified. An empty hyper-link will be created. Continue?.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_RawTextTab">
- <summary>
- Looks up a localized string similar to Edit Value as Raw Text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Ampersand">
- <summary>
- Looks up a localized string similar to Insert (&) sign.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Back_Color">
- <summary>
- Looks up a localized string similar to Background Color.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Bold">
- <summary>
- Looks up a localized string similar to Bold.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Center">
- <summary>
- Looks up a localized string similar to Center text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Copy">
- <summary>
- Looks up a localized string similar to Copy.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Cut">
- <summary>
- Looks up a localized string similar to Cut.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Font">
- <summary>
- Looks up a localized string similar to Insert Font tag.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Font_List">
- <summary>
- Looks up a localized string similar to Change font.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Font_Size">
- <summary>
- Looks up a localized string similar to Change font size.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Greater_than">
- <summary>
- Looks up a localized string similar to Insert a 'greater than' (>) sign.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Horizontal_Line">
- <summary>
- Looks up a localized string similar to Insert Horizontal Line.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Hyperlink">
- <summary>
- Looks up a localized string similar to Insert hyperlink.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Image">
- <summary>
- Looks up a localized string similar to Insert Image.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Italics">
- <summary>
- Looks up a localized string similar to Italics.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Justify">
- <summary>
- Looks up a localized string similar to Justify text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Left_Align">
- <summary>
- Looks up a localized string similar to Left align text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Less_than">
- <summary>
- Looks up a localized string similar to Insert a 'less than' (<) sign.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Line_Break">
- <summary>
- Looks up a localized string similar to Insert line break.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Paragraph">
- <summary>
- Looks up a localized string similar to Insert paragraph.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Paste">
- <summary>
- Looks up a localized string similar to Paste.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Redo">
- <summary>
- Looks up a localized string similar to Redo.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Right_Align">
- <summary>
- Looks up a localized string similar to Right align text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Text_Color">
- <summary>
- Looks up a localized string similar to Text Color.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Underline">
- <summary>
- Looks up a localized string similar to Underline.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_Tool_Undo">
- <summary>
- Looks up a localized string similar to Undo.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.FormattedLinkLabelEditor_ValueTab">
- <summary>
- Looks up a localized string similar to Edit Value as Formatted Text.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Button_Back">
- <summary>
- Looks up a localized string similar to < Back.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Button_Cancel">
- <summary>
- Looks up a localized string similar to Cancel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Button_Finish">
- <summary>
- Looks up a localized string similar to Finish.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Button_Next">
- <summary>
- Looks up a localized string similar to Next >.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_CheckBox_Preview">
- <summary>
- Looks up a localized string similar to Checkbox.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_CheckState_Checked">
- <summary>
- Looks up a localized string similar to Checked.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_CheckState_Indeterminate">
- <summary>
- Looks up a localized string similar to Indeterminate.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_CheckState_Unchecked">
- <summary>
- Looks up a localized string similar to Unchecked.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_FailedToLoadImageFromFile_Title">
- <summary>
- Looks up a localized string similar to Error.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_GlyphSize_Label_Height">
- <summary>
- Looks up a localized string similar to Height.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_GlyphSize_Label_Width">
- <summary>
- Looks up a localized string similar to Width.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_GroupHeader_Preview">
- <summary>
- Looks up a localized string similar to Preview.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_GroupHeader_Size">
- <summary>
- Looks up a localized string similar to Dimensions.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_IncorrectSizeWarning_Text">
- <summary>
- Looks up a localized string similar to The size of the image ({0}) does not match the glyph size ({1}). The image will be resized to fit..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_IncorrectSizeWarning_Title">
- <summary>
- Looks up a localized string similar to Warning!.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Info_Step1">
- <summary>
- Looks up a localized string similar to Select a Glyph Style from the list below. Choose "Custom Style" to supply your own images and fully customize the appearance..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Info_Step2">
- <summary>
- Looks up a localized string similar to Glyphs images are divided up into value states and visual states. The value states are things like checked, unchecked, or indeterminate. Visual states are things like Normal, MouseOver, and Disabled. Each combination of states can have a different image..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_OpenFileDialog_FileFilter">
- <summary>
- Looks up a localized string similar to All image files (*.bmp, *.gif, *.jpg, *.jpeg, *.png, *.ico)|*.bmp;*.gif;*.jpg;*.jpeg;*.png;*.ico.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_OpenFileDialog_Title">
- <summary>
- Looks up a localized string similar to Open.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Option_Custom">
- <summary>
- Looks up a localized string similar to Custom Style.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Option_Custom_Info">
- <summary>
- Looks up a localized string similar to Create custom glyphs..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Option_Custom_Office2007">
- <summary>
- Looks up a localized string similar to Use Office 2007 style glyphs..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Option_Custom_Standard">
- <summary>
- Looks up a localized string similar to Use Standard style glyphs..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Option_Default">
- <summary>
- Looks up a localized string similar to Default Style.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Option_Default_Info">
- <summary>
- Looks up a localized string similar to Choosing default means that no glyph style will be specified for this object. Instead, the object will resolve which style to use based on some higher level object or default..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Option_Office2007">
- <summary>
- Looks up a localized string similar to Office 2007 Style.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Option_Standard">
- <summary>
- Looks up a localized string similar to Standard Style.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_PromptToLoseCustomImages_Text">
- <summary>
- Looks up a localized string similar to You are about to change the glyph style from Custom glyphs to another style. If you proceed, you will lose any unsaved images assigned to the current glyph info. Do you want to proceed with this change?.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_PromptToLoseCustomImages_Title">
- <summary>
- Looks up a localized string similar to Warning.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_PromptToSaveImageChanges_Text">
- <summary>
- Looks up a localized string similar to The image has been modified. Save changes?.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_PromptToSaveImageChanges_Title">
- <summary>
- Looks up a localized string similar to Save Changes?.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_RadioButton_Preview_Item">
- <summary>
- Looks up a localized string similar to Radio Button {0}.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Title_CheckBox">
- <summary>
- Looks up a localized string similar to Check Box Designer.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_Title_RadioButton">
- <summary>
- Looks up a localized string similar to Radio Button Designer.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_VisualState_Disabled">
- <summary>
- Looks up a localized string similar to Disabled.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_VisualState_MouseDown">
- <summary>
- Looks up a localized string similar to Mouse Down.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_VisualState_MouseDownAndOver">
- <summary>
- Looks up a localized string similar to Mouse Down and Over.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_VisualState_MouseOver">
- <summary>
- Looks up a localized string similar to MouseOver.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.GlyphDesignerDialog_VisualState_Normal">
- <summary>
- Looks up a localized string similar to Normal.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.LE_InvalidImageSource">
- <summary>
- Looks up a localized string similar to Please specify a valid URL for the image source. URL can be a file path or a http reference..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Column_Properties_MultipleColumnsSelected">
- <summary>
- Looks up a localized string similar to Properties: {0} Columns.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Column_Properties_NoColumnsSelected">
- <summary>
- Looks up a localized string similar to Properties: (Nothing selected).
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Column_Properties_SingleColumnSelected">
- <summary>
- Looks up a localized string similar to Properties: {0}.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Columns_ToolbarButton_AddColumn">
- <summary>
- Looks up a localized string similar to &Add Column.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Columns_ToolbarButton_MoveSelectedColumnsDown">
- <summary>
- Looks up a localized string similar to Move Selected Columns &Down.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Columns_ToolbarButton_MoveSelectedColumnsUp">
- <summary>
- Looks up a localized string similar to Move Selected Columns &Up.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Columns_ToolbarButton_RemoveSelectedColumns">
- <summary>
- Looks up a localized string similar to &Remove Selected Columns.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Columns_ToolbarButton_SortColumnsAsDetailsView">
- <summary>
- Looks up a localized string similar to Sort Columns as Details View.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Columns_ToolbarButton_SortColumnsAsTilesView">
- <summary>
- Looks up a localized string similar to Sort Columns as Tiles View.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_ItemsAndSubItems_Items">
- <summary>
- Looks up a localized string similar to Items.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_ItemsAndSubItems_MultipleItemsSelected">
- <summary>
- Looks up a localized string similar to Properties: {0} Items.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_ItemsAndSubItems_MultipleSubItemsSelected">
- <summary>
- Looks up a localized string similar to Properties: {0} SubItems.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_ItemsAndSubItems_NoItemsToSelectMessage">
- <summary>
- Looks up a localized string similar to There are currently no Items in the UltraListView. Go to the Data Entry tab to add items..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_ItemsAndSubItems_NothingSelected">
- <summary>
- Looks up a localized string similar to Properties: (Nothing selected).
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_ItemsAndSubItems_SelectASingleItemMessage">
- <summary>
- Looks up a localized string similar to Choose one (and only one) UltraListViewItem in the Items list to edit the UltraListViewSubItems of that item..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_ItemsAndSubItems_SingleItemSelected">
- <summary>
- Looks up a localized string similar to Properties: {0}.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_ItemsAndSubItems_SingleSubItemSelected">
- <summary>
- Looks up a localized string similar to Properties: {0}.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_ItemsAndSubItems_SubItems">
- <summary>
- Looks up a localized string similar to SubItems.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Node_ControlLevelProperties">
- <summary>
- Looks up a localized string similar to Control-Level Properties.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Node_ItemSettings">
- <summary>
- Looks up a localized string similar to Item Settings.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Node_ViewSettings">
- <summary>
- Looks up a localized string similar to View Settings.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Node_ViewSettings_Details">
- <summary>
- Looks up a localized string similar to Details.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Node_ViewSettings_Icons">
- <summary>
- Looks up a localized string similar to Icons.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Node_ViewSettings_List">
- <summary>
- Looks up a localized string similar to List.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Node_ViewSettings_Thumbnails">
- <summary>
- Looks up a localized string similar to Thumbnails.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Node_ViewSettings_Tiles">
- <summary>
- Looks up a localized string similar to Tiles.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Tab_Caption_Columns">
- <summary>
- Looks up a localized string similar to Columns.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Tab_Caption_ControlLevelSettings">
- <summary>
- Looks up a localized string similar to Control-Level Settings.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Tab_Caption_DataEntry">
- <summary>
- Looks up a localized string similar to Data Entry.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_Tab_Caption_ItemsAndSubItems">
- <summary>
- Looks up a localized string similar to Items and SubItems.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ListViewDesigner_UltraListViewDesignerVerb">
- <summary>
- Looks up a localized string similar to UltraListView Designer.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ToolTipLabel_ToolTip">
- <summary>
- Looks up a localized string similar to Optional. If specified, this text will be displayed in a tooltip when the mouse is hovered over the image..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.ToolTipTextBox_ToolTip">
- <summary>
- Looks up a localized string similar to Optional. If specified, this text will be displayed in a tooltip when the mouse is hovered over the image..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraFormattedLinkLabelActionList_M_EditButtonsLeft_Description">
- <summary>
- Looks up a localized string similar to Edit the collection of editor buttons on the left side of the control..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraFormattedLinkLabelActionList_M_EditButtonsLeft_DisplayName">
- <summary>
- Looks up a localized string similar to Buttons Left.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraFormattedLinkLabelActionList_M_EditButtonsRight_Description">
- <summary>
- Looks up a localized string similar to Edit the collection of editor buttons on the right side of the control..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraFormattedLinkLabelActionList_M_EditButtonsRight_DisplayName">
- <summary>
- Looks up a localized string similar to Buttons Right.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraFormattedLinkLabelActionList_P_AutoSize_DisplayName">
- <summary>
- Looks up a localized string similar to AutoSize.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraFormattedLinkLabelActionList_P_BorderStyle_DisplayName">
- <summary>
- Looks up a localized string similar to Border Style.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraFormattedLinkLabelActionList_P_TextHAlign_DisplayName">
- <summary>
- Looks up a localized string similar to Text Alignment (Horizontal).
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraFormattedLinkLabelActionList_P_TextVAlign_DisplayName">
- <summary>
- Looks up a localized string similar to Text Alignment (Vertical).
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraFormattedLinkLabelActionList_P_Value_DisplayName">
- <summary>
- Looks up a localized string similar to Value.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraFormattedLinkLabelActionList_P_WrapText_DisplayName">
- <summary>
- Looks up a localized string similar to WrapText.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_AfterOperand">
- <summary>
- Looks up a localized string similar to &After....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_AllDatesInPeriod_Menu">
- <summary>
- Looks up a localized string similar to All Dates in the &Period.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_BeforeOperand">
- <summary>
- Looks up a localized string similar to &Before....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_BeginsWithOperand">
- <summary>
- Looks up a localized string similar to Begins W&ith....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_BetweenOperand">
- <summary>
- Looks up a localized string similar to Bet&ween....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_ContainsOperand">
- <summary>
- Looks up a localized string similar to Cont&ains....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_CustomFilter">
- <summary>
- Looks up a localized string similar to Custom &Filter....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_DoesNotContainOperand">
- <summary>
- Looks up a localized string similar to &Does Not Contain....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_DoesNotEqualOperand">
- <summary>
- Looks up a localized string similar to Does &Not Equal....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_EndsWithOperand">
- <summary>
- Looks up a localized string similar to Ends Wi&th....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_EqualsOperand">
- <summary>
- Looks up a localized string similar to &Equals....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_GreaterThanOperand">
- <summary>
- Looks up a localized string similar to &Greater Than....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_GreaterThanOrEqualToOperand">
- <summary>
- Looks up a localized string similar to Greater Than &Or Equal To....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_LessThanOperand">
- <summary>
- Looks up a localized string similar to &Less Than....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_LessThanOrEqualToOperand">
- <summary>
- Looks up a localized string similar to Less Than Or E&qual To....
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_P_About">
- <summary>
- Looks up a localized string similar to Display the about dialog..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraGridFilterUIProvider_P_UseOsThemes">
- <summary>
- Looks up a localized string similar to Indicates whether the elements of a control may be rendered using the operating system theme rendering..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraListViewActionList_P_CheckBoxStyle">
- <summary>
- Looks up a localized string similar to CheckBoxStyle.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraListViewActionList_P_ItemSettings_AllowEdit">
- <summary>
- Looks up a localized string similar to AllowEdit.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraListViewActionList_P_ItemSettings_HotTracking">
- <summary>
- Looks up a localized string similar to HotTracking.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.UltraListViewActionList_P_Value_View">
- <summary>
- Looks up a localized string similar to View.
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.URLLabel_ToolTip">
- <summary>
- Looks up a localized string similar to Select Image Source. Image source can be a URL (http) or it can be a file. To select a file, click the button on the right..
- </summary>
- </member>
- <member name="P:Infragistics.Win.SupportDialogs.strings.URLTextBox_ToolTip">
- <summary>
- Looks up a localized string similar to Select Image Source. Image source can be a URL (http) or it can be a file. To select a file, click the button on the right..
- </summary>
- </member>
- </members>
- </doc>
|