| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>Infragistics2.Win.UltraWinInkProvider.Ink17.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.Ink.UltraInkProviderEventManager">
- <summary>
- Class for managing an UltraInkProvider's events. It maintains an enabled flag for each event as well as a nested 'in progress' count and it exposes events for firing each event.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProviderEventManager.#ctor(Infragistics.Win.Ink.UltraInkProvider)">
- <summary>
- contructor
- </summary>
- <param name="inkProvider">The UltraInkProvider that this event manager will be asociated with.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProviderEventManager.InProgress(Infragistics.Win.Ink.UltraInkProviderEventIds)">
- <summary>
- Returns true if the event is in progress (in progress count > 0)
- </summary>
- <param name="eventid">The id of the event</param>
- <returns>true if the event is in progress; otherwise, false.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProviderEventManager.IsEnabled(Infragistics.Win.Ink.UltraInkProviderEventIds)">
- <summary>
- Returns true if the event is enabled
- </summary>
- <param name="eventid">The id of the event.</param>
- <returns>true if the event is enabled; otherwise, false.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProviderEventManager.SetEnabled(Infragistics.Win.Ink.UltraInkProviderEventIds,System.Boolean)">
- <summary>
- Enables/Disables a specific event.
- </summary>
- <param name="eventid">Enumerator specifying the event to enabled/disable.</param>
- <param name="enabled">Boolean specifying whether the event is enabled (true) or disabled (false).</param>
- <remarks>
- <p class="body">Disabling an event will not affect the internal operation of the control. Disabling simply instructs the control not to call the event handler so that code the programmer entered is not fired.</p>
- <p class="body">For example, disabling the CLick will not stop the control from changing the Active Node when it is clicked. It will only cause the Click Event not to fire when the control is clicked.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProviderEventManager.IsEnabled(Infragistics.Win.Ink.UltraInkProviderEventGroups)">
- <summary>
- Returns true if all events in the group are enabled
- </summary>
- <param name="group">The id of the events.</param>
- <returns>true if the event group is enabled; otherwise, false.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProviderEventManager.SetEnabled(Infragistics.Win.Ink.UltraInkProviderEventGroups,System.Boolean)">
- <summary>
- Enables/Disables all events in the group.
- </summary>
- <param name="group">Enumerator specifying the group of events to enabled/disabled.</param>
- <param name="enabled">Boolean specifying whether the events are enabled (true) or disabled (false).</param>
- <remarks>
- <p class="body">Disabling an event will not affect the internal operation of the control. Disabling simply instructs the control not to call the event handler so that code the programmer entered is not fired.</p>
- <p class="body">For example, disabling the Click will not stop the control from changing the Active Node when it is clicked. It will only cause the Click Event not to fire when the control is clicked.</p>
- </remarks>
- </member>
- <member name="T:Infragistics.Win.Ink.PenInputPanelDroppingDownEventHandler">
- <summary>
- Delegate for handling the <see cref="E:Infragistics.Win.Ink.UltraInkProvider.PenInputPanelDroppingDown"/> event.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.PenInputPanelClosedUpEventHandler">
- <summary>
- Delegate for handling the <see cref="E:Infragistics.Win.Ink.UltraInkProvider.PenInputPanelClosedUp"/> event.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.PenInputPanelDroppingDownEventArgs">
- <summary>
- Event parameters used for the <see cref="E:Infragistics.Win.Ink.UltraInkProvider.PenInputPanelDroppingDown"/> event.
- </summary>
- <seealso cref="T:Infragistics.Win.Ink.PenInputPanelDroppingDownEventHandler"/>
- </member>
- <member name="M:Infragistics.Win.Ink.PenInputPanelDroppingDownEventArgs.#ctor(System.Windows.Forms.Control,Infragistics.Win.EmbeddableEditorBase,System.String)">
- <summary>
- Constructor
- </summary>
- <param name="control">The control that is hosting the embeddable editor for which the <see cref="T:Infragistics.Win.Ink.UltraPenInputPanel"/> is being displayed.</param>
- <param name="editor">The embeddable editor for which the <see cref="T:Infragistics.Win.Ink.UltraPenInputPanel"/> is being displayed.</param>
- <param name="text">the text to be edited by the <see cref="T:Infragistics.Win.Ink.UltraPenInputPanel"/>.</param>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelDroppingDownEventArgs.Control">
- <summary>
- Returns the control that is hosting the embeddable editor for which the <see cref="T:Infragistics.Win.Ink.UltraPenInputPanel"/> is being displayed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelDroppingDownEventArgs.Editor">
- <summary>
- Returns the embeddable editor for which the <see cref="T:Infragistics.Win.Ink.UltraPenInputPanel"/> is being displayed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelDroppingDownEventArgs.Text">
- <summary>
- Returns/sets the text to be edited by the <see cref="T:Infragistics.Win.Ink.UltraPenInputPanel"/>.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.PenInputPanelClosedUpEventArgs">
- <summary>
- Event parameters used for the <see cref="E:Infragistics.Win.Ink.UltraInkProvider.PenInputPanelClosedUp"/> event.
- </summary>
- <seealso cref="T:Infragistics.Win.Ink.PenInputPanelClosedUpEventHandler"/>
- </member>
- <member name="M:Infragistics.Win.Ink.PenInputPanelClosedUpEventArgs.#ctor(System.Windows.Forms.Control,Infragistics.Win.EmbeddableEditorBase,System.String,System.String,System.Boolean)">
- <summary>
- Constructor
- </summary>
- <param name="control">The control that is hosting the embeddable editor for which the <see cref="T:Infragistics.Win.Ink.UltraPenInputPanel"/> is being displayed.</param>
- <param name="editor">The embeddable editor for which the <see cref="T:Infragistics.Win.Ink.UltraPenInputPanel"/> is being displayed.</param>
- <param name="originalText">The original text before editing.</param>
- <param name="editedText">The edited text</param>
- <param name="commitChanges">Determines whether the changes should be committed to the embeddable editor</param>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelClosedUpEventArgs.CommitChanges">
- <summary>
- Returns/sets whether the changes should be committed to the embeddable editor. By default, this property
- returns true if the user dismissed the <see cref="T:Infragistics.Win.Ink.UltraPenInputPanel"/> by clicking the Commit button and
- false if the user clicked the cancel button. This property may be modified to change the commit status.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelClosedUpEventArgs.Control">
- <summary>
- Returns the control that is hosting the embeddable editor for which the <see cref="T:Infragistics.Win.Ink.UltraPenInputPanel"/> is being displayed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelClosedUpEventArgs.EditedText">
- <summary>
- Returns/sets the edited text. If this property is modified, the embeddable editor value will be updated
- with the modified value.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelClosedUpEventArgs.Editor">
- <summary>
- Returns the embeddable editor for which the <see cref="T:Infragistics.Win.Ink.UltraPenInputPanel"/> is being displayed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelClosedUpEventArgs.OriginalText">
- <summary>
- Returns the original text before editing. If text was modified in the <see cref="E:Infragistics.Win.Ink.UltraInkProvider.PenInputPanelDroppingDown"/>
- event, this property returns that text.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.UltraInkProviderEventIds">
- <summary>
- Value that uniquely identifies each UltraInkProvider event.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.UltraInkProviderEventIds.MouseEnterElement">
- <summary>
- Event ID that identifies the <see cref="E:Infragistics.Win.UltraControlBase.MouseEnterElement"/> event.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.UltraInkProviderEventIds.MouseLeaveElement">
- <summary>
- Event ID that identifies the <see cref="E:Infragistics.Win.UltraControlBase.MouseLeaveElement"/> event.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.UltraInkProviderEventIds.PenInputPanelDroppingDown">
- <summary>
- Event ID that identifies the <see cref="E:Infragistics.Win.Ink.UltraInkProvider.PenInputPanelDroppingDown"/> event.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.UltraInkProviderEventIds.PenInputPanelClosedUp">
- <summary>
- Event ID that identifies the <see cref="E:Infragistics.Win.Ink.UltraInkProvider.PenInputPanelClosedUp"/> event.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.UltraInkProviderEventIds.LastEventId">
- <summary>
- Maintains the value of last event ID used. (This value is equal to the highest numeric value used for Event IDs.)
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.UltraInkProviderEventGroups">
- <summary>
- Identifies groups of UltraInkProvider events
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.UltraInkProviderEventGroups.AllEvents">
- <summary>
- All events
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.UltraInkProviderEventGroups.BeforeEvents">
- <summary>
- Before events. These events are occur before an action takes place.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.UltraInkProviderEventGroups.AfterEvents">
- <summary>
- After events. These events occur after an action takes place.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.Resources">
- <summary>
- Exposes a <see cref="T:Infragistics.Shared.ResourceCustomizer"/> instance for this assembly.
- </summary>
- <seealso cref="P:Infragistics.Win.Ink.Resources.Customizer"/>
- <seealso cref="T:Infragistics.Shared.ResourceCustomizer"/>
- </member>
- <member name="M:Infragistics.Win.Ink.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>
- </member>
- <member name="M:Infragistics.Win.Ink.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>
- </member>
- <member name="M:Infragistics.Win.Ink.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.Ink.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.Ink.UltraInkProvider">
- <summary>
- UltraInkProvider component.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.#ctor">
- <summary>
- Constructor
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.#ctor(System.ComponentModel.IContainer)">
- <summary>
- Constructor
- </summary>
- <param name="container">An IContainer representing the container of the <b>UltraInkProvider</b></param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.OnPenInputPanelDroppingDown(Infragistics.Win.Ink.PenInputPanelDroppingDownEventArgs)">
- <summary>
- Occurs before the panel drops down.
- </summary>
- <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.OnPenInputPanelClosedUp(Infragistics.Win.Ink.PenInputPanelClosedUpEventArgs)">
- <summary>
- Occurs after the panel closes up.
- </summary>
- <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ChangeControlsEnabledState">
- <summary>
- Will disable or enable the UltraPenInputPanel based on the InkProvider's Enabled property.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ChangeControlsVisibleState">
- <summary>
- Will hide or show the UltraPenInputPanel based on the InkProvider's Visible property
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.DirtyChildElements">
- <summary>
- Will dirty all child elements on all docking araea and floating toolbars.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:System.ComponentModel.Component"/> and optionally releases the managed resources.
- </summary>
- <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.InvalidateControls">
- <summary>
- Will invalidate all child elements on all docking araea and floating toolbars.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.OnPropertyChanged(Infragistics.Win.PropertyChangedEventArgs)">
- <summary>
- Called when a property or sub object's property value has changed.
- </summary>
- <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
- <summary>
- Called when a property has changed on a sub object.
- </summary>
- <remarks>
- <p class="body"><b>OnPropertyChanged</b> will also be called.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeActiveMaskCharacterAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.ActiveMaskCharacterAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.ActiveMaskCharacterAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetActiveMaskCharacterAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetActiveMaskCharacterAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.ActiveMaskCharacterAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.ActiveMaskCharacterAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeActiveMaskCharacterAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.ActiveMaskCharacterAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeAppearances">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearances"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearances"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetAppearances"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetAppearances">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearances"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearances"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeAppearances"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearances"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeContainingControl">
- <summary>
- Returns true if the ContainingControl property should be serialized
- </summary>
- <returns></returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeGesturePanelAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.GesturePanelAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.GesturePanelAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetGesturePanelAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetGesturePanelAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.GesturePanelAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.GesturePanelAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeGesturePanelAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.GesturePanelAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeInkAreaAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InkAreaAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InkAreaAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetInkAreaAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetInkAreaAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InkAreaAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InkAreaAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeInkAreaAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InkAreaAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeInputMode">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InputMode"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InputMode"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetInputMode"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.InputMode"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetInputMode">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InputMode"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InputMode"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeInputMode"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InputMode"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.InputMode"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeInputModeSelectable">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InputModeSelectable"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InputModeSelectable"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetInputModeSelectable"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.InputModeSelectable"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetInputModeSelectable">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InputModeSelectable"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InputModeSelectable"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeInputModeSelectable"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InputModeSelectable"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.InputModeSelectable"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeInvalidMaskCharacterAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InvalidMaskCharacterAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InvalidMaskCharacterAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetInvalidMaskCharacterAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetInvalidMaskCharacterAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InvalidMaskCharacterAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InvalidMaskCharacterAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeInvalidMaskCharacterAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InvalidMaskCharacterAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeMaskCharacterAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.MaskCharacterAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.MaskCharacterAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetMaskCharacterAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetMaskCharacterAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.MaskCharacterAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.MaskCharacterAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeMaskCharacterAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.MaskCharacterAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializePenPressureIgnored">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.PenPressureIgnored"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.PenPressureIgnored"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetPenPressureIgnored"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.PenPressureIgnored"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetPenPressureIgnored">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.PenPressureIgnored"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.PenPressureIgnored"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializePenPressureIgnored"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.PenPressureIgnored"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.PenPressureIgnored"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializePenThickness">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.PenThickness"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.PenThickness"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetPenThickness"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.PenThickness"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetPenThickness">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.PenThickness"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.PenThickness"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializePenThickness"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.PenThickness"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.PenThickness"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeShowGesturePanel">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.ShowGesturePanel"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.ShowGesturePanel"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetShowGesturePanel"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.ShowGesturePanel"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetShowGesturePanel">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.ShowGesturePanel"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.ShowGesturePanel"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeShowGesturePanel"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.ShowGesturePanel"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.ShowGesturePanel"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeTextAreaAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.TextAreaAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.TextAreaAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetTextAreaAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetTextAreaAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.TextAreaAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.TextAreaAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeTextAreaAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.TextAreaAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeTextRecognitionDelay">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.TextRecognitionDelay"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.TextRecognitionDelay"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetTextRecognitionDelay"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.TextRecognitionDelay"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.ResetTextRecognitionDelay">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.TextRecognitionDelay"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.TextRecognitionDelay"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeTextRecognitionDelay"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.TextRecognitionDelay"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraInkProvider.TextRecognitionDelay"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.OnUltraPenInputPanelClosed">
- <summary>
- Fired by the DropdownManager when the UltraPenInputPanel window closes.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.Infragistics#Win#ISelectionManager#ActivateItem(Infragistics.Shared.ISelectableItem)">
- <summary>
- Active the specified item.
- </summary>
- <param name="item"></param>
- <returns>True if action was cancelled, otherwise false.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.Infragistics#Win#ISelectionManager#GetSelectionStrategy(Infragistics.Shared.ISelectableItem)">
- <summary>
- Returns the selection strategy for the passed in item
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.Infragistics#Win#ISelectionManager#OnDragStart(Infragistics.Shared.ISelectableItem,System.Drawing.Point)">
- <summary>
- Called when a dragging operation is about to begin.
- </summary>
- <param name="item"></param>
- <param name="mousePosition">The position of the mouse at the start of the drag</param>
- <returns>Returns true means that it was handled internally and no further action should be taken</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.Infragistics#Win#ISelectionManager#SelectItem(Infragistics.Shared.ISelectableItem,System.Boolean)">
- <summary>
- Select the specified item.
- The clearExistingSelection parameter specifies if the existing selection
- should be cleared.
- Returns true if action was canceled, false otherwise.
- </summary>
- <param name="item"></param>
- <param name="clearExistingSelection"></param>
- <returns></returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.Infragistics#Win#ISelectionManager#SelectRange(Infragistics.Shared.ISelectableItem,System.Boolean)">
- <summary>
- Selecting a range based on the specified item. The clearExistingSelection
- parameter specifies if the existing selection should be cleared.
- </summary>
- <param name="item"></param>
- <param name="clearExistingSelection"></param>
- <returns></returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.Infragistics#Win#ISelectionManager#SetInitialSelection(Infragistics.Shared.ISelectableItem)">
- <summary>
- Save initial selection settings for specified type
- </summary>
- <param name="item"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.Infragistics#Win#ISelectionManager#SetPivotItem(Infragistics.Shared.ISelectableItem,System.Boolean)">
- <summary>
- Set the specified item as the pivot item. 'isRangeSelect' specifies if this is part of range selection or not.
- </summary>
- <param name="item"></param>
- <param name="IsRangeSelect"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.Infragistics#Win#ISelectionManager#TranslateItem(Infragistics.Shared.ISelectableItem@)">
- <summary>
- Potentially translates the passed-in item to a ISelectableItem of a
- different type. For instance, the grid translates a passed-in cell
- into its parent row if CellClickAction is CellClickActionRowSelect.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.Infragistics#Win#ISelectionManager#UnselectItem(Infragistics.Shared.ISelectableItem,System.Boolean)">
- <summary>
- Unselect the specified item.
- The clearExistingSelection parameter specifies if the existing selection
- should be cleared.
- Returns true if action was canceled, false otherwise.
- </summary>
- <param name="item"></param>
- <param name="clearExistingSelection"></param>
- <returns></returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraInkProvider.Infragistics#Win#ISelectionManager#UnselectRange(Infragistics.Shared.ISelectableItem,System.Boolean)">
- <summary>
- Unselect the range from the pivot item to the specified item.
- The clearExistingSelection specifies whether or not to clear the existing
- selection.
- </summary>
- <param name="item"></param>
- <param name="clearExistingSelection"></param>
- <returns></returns>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.About">
- <summary>
- Display the about dialog
- </summary>
- </member>
- <member name="E:Infragistics.Win.Ink.UltraInkProvider.PenInputPanelDroppingDown">
- <summary>
- Occurs when a request is received to display the panel is actually displayed.
- </summary>
- </member>
- <member name="E:Infragistics.Win.Ink.UltraInkProvider.PenInputPanelClosedUp">
- <summary>
- Occurs after the panel is closed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.Site">
- <summary>
- The component's site (set at design time only).
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.SubObjectPropChangeHandler">
- <summary>
- Returns the event handler that notifies OnSubObjectPropChanged
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.ActiveMaskCharacterAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> object that controls the formatting of the active mask character. Used only when editing text from masked editors using boxed input.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.HasActiveMaskCharacterAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.ActiveMaskCharacterAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.Appearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> object that controls the object's formatting.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.HasAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.Appearances">
- <summary>
- Returns a collection of user-created Appearance objects.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">This property is used to hold a collection of Appearance objects.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.ContainingControl">
- <summary>
- Returns the Form or UserControl that this InkProvider component is servicing.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.EventManager">
- <summary>
- The object that enables, disables and controls firing of specific component events.
- </summary>
- <remarks>
- <p class="body">The EventManager provides a high degree of control over how the control invokes event procedures. You can use it to selectively enable and disable event procedures depending on the context of your application. You can also use the event manager to return information about the state of the control's events.</p>
- <p class="body">The event manager's methods are used to determine the enabled state of an event (<see cref="M:Infragistics.Win.Ink.UltraInkProviderEventManager.IsEnabled(Infragistics.Win.Ink.UltraInkProviderEventIds)"/>), to selectively enable or disable events (<see cref="M:Infragistics.Win.Ink.UltraInkProviderEventManager.SetEnabled(Infragistics.Win.Ink.UltraInkProviderEventIds,System.Boolean)"/>), and to determine whether an event procedure is currently being processed (<see cref="M:Infragistics.Win.Ink.UltraInkProviderEventManager.InProgress(Infragistics.Win.Ink.UltraInkProviderEventIds)"/>).</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.GesturePanelAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> object that controls the formatting of the GesturePanel.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.HasGesturePanelAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.GesturePanelAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.InkAreaAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> object that controls the formatting of the InkArea.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.HasInkAreaAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InkAreaAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.InputMode">
- <summary>
- Returns/sets an enumeration that determines the input mode (Ink or Keyboard) of the UltraPenInputPanel
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.InputModeSelectable">
- <summary>
- Returns/sets whether the input mode (Ink or Keyboard) can be selected by the user via buttons on the UltraPenInputPanel.
- </summary>
- <remarks>
- <p class="body">If set to true, buttons are displayed on the UltrPenInputPanel to allow the end user to change the InputMode. If false, not buttons are dislayed and the end user cannot change the InputMode.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.InvalidMaskCharacterAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> object that controls the formatting of characters whose text does not conform to the editor's mask. Used only when editing text from masked editors using boxed input.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.HasInvalidMaskCharacterAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.InvalidMaskCharacterAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.IsInkRecognitionAvailable">
- <summary>
- Returns true if Recognizers are installed on the system and available. Otherwise, returns false.
- </summary>
- <remarks>
- <p class="body">If recognizers are not available, the UltraPenInputPanel displays 'Ink Recognition NotAvailable'
- in the ink area and 'Gestures N/A' in the GesturePanel (if visible).</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.IsPenInputPanelPoppedUp">
- <summary>
- Returns true if the UltraPenInputPanel is currently popped up. Otherwise returns false.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.IsTextDirty">
- <summary>
- Returns true if the UltraPenInputPanel is currently popped up and the text is dirty. Otherwise returns false.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.MaskCharacterAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> object that controls the formatting of mask characters. Used only when editing text from masked editors using boxed input.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.HasMaskCharacterAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.MaskCharacterAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.PenPressureIgnored">
- <summary>
- Returns/sets a value that determines whether pen pressure is reflected in the rendering of ink strokes.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.PenThickness">
- <summary>
- Returns/sets a value that determines the thickness used (in pixels) when rendering pen strokes.
- Valid values range from 1 to 20 pixels.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.ShowGesturePanel">
- <summary>
- Returns/sets whether the GesturePanel is shown. The GesturePanel allows entry of application gestures to perform various editing functions.
- </summary>
- <remarks>
- <p class="body">If set to true, a panel is displayed in the ink area that allows the user to enter gestures with the pen to control editing of the text.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.TextAreaAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.Appearance"/> object that controls the formatting of the TextArea.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.HasTextAreaAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraInkProvider.TextAreaAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.TextRecognitionDelay">
- <summary>
- Returns/sets a value that determines the delay (in milliseconds) between the last stroke entered and the start of the text recognition process.
- Valid values range from 300 to 10000 milliseconds.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.ShowInkButton">
- <summary>
- Determines when to show the Ink Button on Editors
- </summary>
- <remarks>
- This property determines when to show the Ink Button on any editors serviced by this Ink Provider.
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraInkProvider.Infragistics#Win#IImageListProvider#ImageList">
- <summary>
- Returns null.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.Design.UltraInkProviderDesigner">
- <summary>
- Provides design-time support for the <see cref="T:Infragistics.Win.Ink.UltraInkProvider"/> component.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.Design.UltraInkProviderDesigner.ActionLists">
- <summary>
- Gets the <see cref="T:System.ComponentModel.Design.DesignerActionListCollection"/> for this designer's control/component.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.Design.UltraInkProviderDesigner.UltraInkProviderActionList">
- <summary>
- Provides DesignerActionItems for the SmartTag associated with the UltraInkProvider.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.Design.UltraInkProviderDesigner.UltraInkProviderActionList.#ctor(Infragistics.Win.Ink.UltraInkProvider)">
- <summary>
- Constructor
- </summary>
- <param name="product">The UltraInkProvider</param>
- </member>
- <member name="M:Infragistics.Win.Ink.Design.UltraInkProviderDesigner.UltraInkProviderActionList.CreateActionItems(System.ComponentModel.Design.DesignerActionItemCollection)">
- <summary>
- Overrides CreateActionItems.
- </summary>
- <param name="actionItems">The list to populate.</param>
- </member>
- <member name="P:Infragistics.Win.Ink.Design.UltraInkProviderDesigner.UltraInkProviderActionList.InputMode">
- <summary>
- Used by SmartTag Panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.Design.UltraInkProviderDesigner.UltraInkProviderActionList.PenPressureIgnored">
- <summary>
- Used by SmartTag Panel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.Design.UltraInkProviderDesigner.UltraInkProviderActionList.ShowInkButton">
- <summary>
- Used by SmartTag Panel.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.ButtonAreaUIElement">
- <summary>
- Summary description for ButtonAreaUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.ButtonAreaUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- ButtonAreaUIElement
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.ButtonAreaUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Do nothing.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.ButtonAreaUIElement.DrawImageBackground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Does nothing
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.ButtonAreaUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.ButtonAreaUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.ButtonAreaUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.CharacterCellUIElement">
- <summary>
- Summary description for CharacterCellUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.CharacterCellUIElement.#ctor(Infragistics.Win.UIElement,System.Int32)">
- <summary>
- CharacterCellUIElement
- </summary>
- <param name="parent">The parent element</param>
- <param name="characterIndex">The index of the character represented by the element.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.CharacterCellUIElement.DrawForeground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draw foreground.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.CharacterCellUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.CharacterCellUIElement.OnMouseDown(System.Windows.Forms.MouseEventArgs,System.Boolean,Infragistics.Win.UIElement@)">
- <summary>
- Called when the mouse down message is received over the element.
- </summary>
- <param name="e">Mouse event arguments</param>
- <param name="adjustableArea">True if left clicked over adjustable area of element.</param>
- <param name="captureMouseForElement">If not null on return will capture the mouse and forward all mouse messages to this element.</param>
- <returns>If true then bypass default processing</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.CharacterCellUIElement.GetContext(System.Type,System.Boolean)">
- <summary>
- Returns an object of requested type that relates to the element or null.System.Object
- </summary>
- <param name="type">The requested type or null to pick up default context object.</param>
- <param name="checkParentElementContexts">If true will walk up the parent chain looking for the context.</param>
- <returns>System.Object</returns>
- </member>
- <member name="P:Infragistics.Win.Ink.CharacterCellUIElement.SelectableItem">
- <summary>
- Return 'this' as thje selectable item.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CharacterCellUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CharacterCellUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CharacterCellUIElement.CharacterIndex">
- <summary>
- Returns the index of the character represented by the element.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CharacterCellUIElement.Selected">
- <summary>
- Determines whether the character represented by the element is selected.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CharacterCellUIElement.Infragistics#Shared#ISelectableItem#IsSelectable">
- <summary>
- Indicates if the character represented by the element can be selected.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CharacterCellUIElement.Infragistics#Shared#ISelectableItem#IsSelected">
- <summary>
- Indicates if the character represented by the element is currently selected.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CharacterCellUIElement.Infragistics#Shared#ISelectableItem#IsDraggable">
- <summary>
- Indicates if the character represented by the element is draggable.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CharacterCellUIElement.Infragistics#Shared#ISelectableItem#IsTabStop">
- <summary>
- Indicates if the character represented by the element can be navigated to using the Tab key.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.CharacterCellUIElement.CharacterCellAccessibleObject">
- <summary>
- Accesible object representing a single character.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.CharacterCellUIElement.CharacterCellAccessibleObject.#ctor(Infragistics.Win.Ink.CharacterCellUIElement)">
- <summary>
- Initializes a new <see cref="T:Infragistics.Win.Ink.CharacterCellUIElement.CharacterCellAccessibleObject"/>
- </summary>
- <param name="character">Associated element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.CharacterCellUIElement.CharacterCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)">
- <summary>
- Modifies the selection or moves the keyboard focus of the accessible object
- </summary>
- <param name="flags">One of the <b>AccessibleSelection</b> values</param>
- </member>
- <member name="P:Infragistics.Win.Ink.CharacterCellUIElement.CharacterCellAccessibleObject.Value">
- <summary>
- Returns the name of the accessible object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CharacterCellUIElement.CharacterCellAccessibleObject.State">
- <summary>
- Returns the state of the accessible object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.PenInputPanelColors">
- <summary>
- PenInputPanelColors
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.ControlBorderLeftOuter">
- <summary>
- ControlBorderLeftOuter
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.ControlBorderLeftInner">
- <summary>
- ControlBorderLeftInner
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.ControlBorderTopOuter">
- <summary>
- ControlBorderTopOuter
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.ControlBorderTopInner">
- <summary>
- ControlBorderTopInner
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.ControlBorderRightOuter">
- <summary>
- ControlBorderRightOuter
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.ControlBorderRightInner">
- <summary>
- ControlBorderRightInner
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.ControlBorderBottomOuter">
- <summary>
- ControlBorderBottomOuter
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.ControlBorderBottomInner">
- <summary>
- ControlBorderBottomInner
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.ControlBackground">
- <summary>
- ControlBackground
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.InkCollectorBorder">
- <summary>
- InkCollectorBorder
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.InkAreaBackground">
- <summary>
- InkAreaBackground
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.InkCollectorGradientDark">
- <summary>
- InkCollectorGradientDark
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.InkCollectorGradientDark2">
- <summary>
- InkCollectorGradientDark2
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.InkCollectorGradientDark3">
- <summary>
- InkCollectorGradientDark3
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.InkCollectorGradientLight">
- <summary>
- InkCollectorGradientLight
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.KeyboardAreaBackground">
- <summary>
- KeyboardAreaBackground
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.MainAreaBackground">
- <summary>
- MainAreaBackground
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.SystemButtonAreaBackground">
- <summary>
- SystemButtonAreaBackground
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.TextAreaBackground">
- <summary>
- TextAreaBackground
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.PenInputPanelColors.TextAreaBorder">
- <summary>
- TextAreaBorder
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.CommandButtonDescriptor">
- <summary>
- Summary description for CommandButtonDescriptor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonDescriptor.#ctor(Infragistics.Win.Ink.CommandButtonRole,Infragistics.Win.Ink.CommandButtonAction,System.Windows.Forms.Keys,System.String,System.String,Infragistics.Win.Ink.CommandButtonDisplayStyle)">
- <summary>
- Constructor (all settings)
- </summary>
- <param name="role">The role that the button is to perform.</param>
- <param name="action">A CommandButtonAction enumeration describing the button's action (if role is 'PerformAction') or string.empty (if the role is 'SimulateKey').</param>
- <param name="key">A member of the Keys enumeration (if the role is 'SimulateKey') or Keys.None (if role is 'PerformAction').</param>
- <param name="textUnshifted">The text to display for the button when the role is 'SimulateKey' and the keyboard is unshifted. Also used when the role is PerformAction.</param>
- <param name="textShifted">The text to display for the button when the role is 'SimulateKey' and the keyboard is shifted.</param>
- <param name="displayStyle">Determines what is displayed in the button.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonDescriptor.#ctor(System.Windows.Forms.Keys,System.String,System.String,Infragistics.Win.Ink.CommandButtonDisplayStyle)">
- <summary>
- Constructor (Command Button role SimulateKey)
- </summary>
- <param name="key">A member of the Keys enumeration (if the role is 'SimulateKey') or Keys.None (if role is 'PerformAction').</param>
- <param name="textUnshifted">The text to display for the button when the role is 'SimulateKey' and the keyboard is unshifted. Also used when the role is PerformAction.</param>
- <param name="textShifted">The text to display for the button when the role is 'SimulateKey' and the keyboard is shifted.</param>
- <param name="displayStyle">Determines what is dislayed in the button.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonDescriptor.#ctor(Infragistics.Win.Ink.CommandButtonAction,System.String,System.String,Infragistics.Win.Ink.CommandButtonDisplayStyle)">
- <summary>
- Constructor (Command Button role PerformAction)
- </summary>
- <param name="action">A CommandButtonAction enumeration describing the button's action (if role is 'PerformAction') or string.empty (if the role is 'SimulateKey').</param>
- <param name="textUnshifted">The text to display for the button when the role is 'SimulateKey' and the keyboard is unshifted. Also used when the role is PerformAction.</param>
- <param name="textShifted">The text to display for the button when the role is 'SimulateKey' and the keyboard is shifted.</param>
- <param name="displayStyle">Determines what is dislayed in the button.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonExUIElement.ButtonClick">
- <summary>
- Invoked when the button has been clicked.
- </summary>
- <returns>True to prevent the base implementation from being invoked.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonExUIElement.DrawForeground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draw foreground.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonExUIElement.DrawTheme(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draws the themed part of the element.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonExUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="P:Infragistics.Win.Ink.CommandButtonExUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonUIElement.#ctor(Infragistics.Win.UIElement,Infragistics.Win.Ink.CommandButtonFontSize,Infragistics.Win.HAlign,Infragistics.Win.VAlign,System.Drawing.Image,Infragistics.Win.UIElementButtonType,Infragistics.Win.Ink.CommandButtonDescriptor)">
- <summary>
- Constructor (for buttons with image and text)
- </summary>
- <param name="parentElement">The parent element</param>
- <param name="fontSize"></param>
- <param name="textHAlign"></param>
- <param name="textVAlign"></param>
- <param name="image"></param>
- <param name="buttonType"></param>
- <param name="commandButtonDescriptor"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonUIElement.#ctor(Infragistics.Win.UIElement,Infragistics.Win.Ink.CommandButtonFontSize,Infragistics.Win.HAlign,Infragistics.Win.VAlign,Infragistics.Win.UIElementButtonType,Infragistics.Win.Ink.CommandButtonDescriptor)">
- <summary>
- Constructor (for text-only buttons)
- </summary>
- <param name="parentElement">The parent element</param>
- <param name="fontSize"></param>
- <param name="textHAlign"></param>
- <param name="textVAlign"></param>
- <param name="buttonType"></param>
- <param name="commandButtonDescriptor"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonUIElement.#ctor(Infragistics.Win.UIElement,Infragistics.Win.UIElementButtonType,Infragistics.Win.Ink.CommandButtonDescriptor)">
- <summary>
- Constructor (for text-only buttons with default text alignment and font size - i.e., center bottom and 8)
- </summary>
- <param name="parentElement">The parent element</param>
- <param name="buttonType"></param>
- <param name="commandButtonDescriptor"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonUIElement.#ctor(Infragistics.Win.UIElement,Infragistics.Win.Ink.CommandButtonFontSize,Infragistics.Win.UIElementButtonType,Infragistics.Win.Ink.CommandButtonDescriptor)">
- <summary>
- Constructor (for text-only buttons with default text alignment - i.e., center bottom)
- </summary>
- <param name="parentElement">The parent element</param>
- <param name="fontSize"></param>
- <param name="buttonType"></param>
- <param name="commandButtonDescriptor"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonUIElement.#ctor(Infragistics.Win.UIElement,System.Drawing.Image,Infragistics.Win.UIElementButtonType,Infragistics.Win.Ink.CommandButtonDescriptor)">
- <summary>
- Constructor (for image-only buttons)
- </summary>
- <param name="parentElement">The parent element</param>
- <param name="image"></param>
- <param name="buttonType"></param>
- <param name="commandButtonDescriptor"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonUIElement.ButtonClick">
- <summary>
- Invoked when the button has been clicked.
- </summary>
- <returns>True to prevent the base implementation from being invoked.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonUIElement.OnBeforeDraw">
- <summary>
- A virtual method that gets called before the element draw process starts.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonUIElement.Initialize(Infragistics.Win.Ink.CommandButtonFontSize,Infragistics.Win.HAlign,Infragistics.Win.VAlign,System.Drawing.Image,Infragistics.Win.Ink.CommandButtonDescriptor)">
- <summary>
- Initialize the element (all settings).
- </summary>
- <param name="fontSize"></param>
- <param name="textHAlign"></param>
- <param name="textVAlign"></param>
- <param name="image"></param>
- <param name="commandButtonDescriptor"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonUIElement.Initialize(Infragistics.Win.Ink.CommandButtonFontSize,Infragistics.Win.HAlign,Infragistics.Win.VAlign,Infragistics.Win.Ink.CommandButtonDescriptor)">
- <summary>
- Initialize the element (text-only button settings).
- </summary>
- <param name="fontSize"></param>
- <param name="textHAlign"></param>
- <param name="textVAlign"></param>
- <param name="commandButtonDescriptor"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.CommandButtonUIElement.Initialize(System.Drawing.Image,Infragistics.Win.Ink.CommandButtonDescriptor)">
- <summary>
- Initialize the element (image-only button settings).
- </summary>
- <param name="image"></param>
- <param name="commandButtonDescriptor"></param>
- </member>
- <member name="P:Infragistics.Win.Ink.CommandButtonUIElement.CanClickButton">
- <summary>
- Returns whether the button may be pressed.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CommandButtonUIElement.Enabled">
- <summary>
- Gets/sets whether this element is enabled.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CommandButtonUIElement.WantsMouseHoverNotification">
- <summary>
- Return true if this element wants to be notified when the mouse hovers over it. This property is read-only.
- </summary>
- <remarks>The default implemenation returns false. This should be overridden by elements that want their OnMouseHover method to be called.</remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.CommandButtonUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.CorrectionButtonUIElement">
- <summary>
- Summary description for CorrectionButtonUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.CorrectionButtonUIElement.#ctor(Infragistics.Win.UIElement,System.Drawing.Image,Infragistics.Win.UIElementButtonType,Infragistics.Win.Ink.Segment)">
- <summary>
- Constructor
- </summary>
- <param name="parentElement">The parent element</param>
- <param name="image"></param>
- <param name="buttonType"></param>
- <param name="segment"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.CorrectionButtonUIElement.ButtonClick">
- <summary>
- Invoked when the button has been clicked.
- </summary>
- <returns>True to prevent the base implementation from being invoked.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.CorrectionButtonUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="P:Infragistics.Win.Ink.CorrectionButtonUIElement.ButtonStyle">
- <summary>
- Returns the style of the button element.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CorrectionButtonUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.CorrectionButtonUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.DialogButtonAreaUIElement">
- <summary>
- Summary description for DialogButtonAreaUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.DialogButtonAreaUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- DialogButtonAreaUIElement
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="T:Infragistics.Win.Ink.CommandButtonRole">
- <summary>
- Enumerator used to determine the role of a command button
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonRole.PerformAction">
- <summary>
- Button role is to perform an action.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonRole.SimulateKey">
- <summary>
- Button role is to simulate a keyboard key.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.CommandButtonAction">
- <summary>
- Enumerator used to determine the Action represented by a command button with a CommandButtonRole of 'PerformAction.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.None">
- <summary>
- Button action is 'None'
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.Undo">
- <summary>
- Button action is 'Undo'
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.Redo">
- <summary>
- Button action is 'Redo'
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.Cut">
- <summary>
- Button action is 'Cut'
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.Copy">
- <summary>
- Button action is 'Copy'
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.Paste">
- <summary>
- Button action is 'Paste'
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.Commit">
- <summary>
- Button action is 'Commit'
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.Cancel">
- <summary>
- Button action is 'Cancel'
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.InkMode">
- <summary>
- Button action is 'InkMode'
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.KeyboardMode">
- <summary>
- Button action is 'KeyboardMode'
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.Send">
- <summary>
- Button action is 'Send'
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.Numbers">
- <summary>
- Button action is 'Numbers' which displays a popup for selecting numbers
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonAction.Symbols">
- <summary>
- Button action is 'Symbols' which displays a popup for selecting symbols
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.CommandButtonDisplayStyle">
- <summary>
- Enumerator used to determine the display style of a command button.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonDisplayStyle.DisplayTextOnly">
- <summary>
- Button displays button text only.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonDisplayStyle.DisplayImageOnly">
- <summary>
- Button displays image only.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonDisplayStyle.DisplayKeycode">
- <summary>
- Button displays keycode.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonDisplayStyle.DisplayKeycodeEnhanced">
- <summary>
- Button displays keycode - displays both shifted and unshifted keycodes when the keyboard is unshifted.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.CommandButtonFontSize">
- <summary>
- Enumerator used to determine the font size used by the command button.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonFontSize.Small">
- <summary>
- Button displays text using a small font size.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.CommandButtonFontSize.Large">
- <summary>
- Button displays text using a large font size.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.InputMode">
- <summary>
- Enumerator used to determine the input mode (keyboard or ink) of the UltraPenInputPanel
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.InputMode.Ink">
- <summary>
- Input mode is Ink.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.InputMode.Keyboard">
- <summary>
- Input mode is Keyboard.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.GesturePanelUIElement">
- <summary>
- Summary description for GesturePanelUIElement.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.RoundedRectUIElement">
- <summary>
- Summary description for RoundedRectUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.RoundedRectUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- RoundedRectUIElement
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.RoundedRectUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draws the control's back color.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="P:Infragistics.Win.Ink.RoundedRectUIElement.ClipSelf">
- <summary>
- Returning true causes all drawing of this element to be explicitly clipped.
- to its region
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.RoundedRectUIElement.Region">
- <summary>
- Returns the element's region.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.RoundedRectUIElement.BorderColor">
- <summary>
- Returns the color of this element's borders. Defaults to WindowFrame.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.RoundedRectUIElement.CornerRadius">
- <summary>
- Returns the radius of this element's rounded corners. Defaults to 7.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.RoundedRectUIElement.DrawRoundedBorders">
- <summary>
- Returns whether rounded borders should be drawn. Defaults to true.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.GesturePanelUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- Constructor
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.GesturePanelUIElement.DrawForeground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draw foreground.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.GesturePanelUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="T:Infragistics.Win.Ink.InkAreaUIElement">
- <summary>
- Summary description for InkAreaUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.InkAreaUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Do nothing.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.InkAreaUIElement.DrawForeground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draw foreground.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.InkAreaUIElement.DrawImageBackground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Does nothing
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.InkAreaUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.InkAreaUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.InkAreaUIElement.IsElementDrawn">
- <summary>
- True if this element is drawn normally. The default
- implementation of this property returns true. It may
- be overidden by some elements who don't do any rendering
- (e.g. scrollbars since they are actually scrollbar windows
- that render themselves)
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.InkAreaUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.InkAreaUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.InkCollectorUIElement">
- <summary>
- Summary description for InkCollectorUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.InkCollectorUIElement.DrawForeground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draw foreground.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.InkCollectorUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.InkCollectorUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.KeyboardAreaUIElement">
- <summary>
- Summary description for KeyboardAreaUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.KeyboardAreaUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- KeyboardAreaUIElement
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.KeyboardAreaUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Do nothing.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.KeyboardAreaUIElement.DrawImageBackground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Does nothing
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.KeyboardAreaUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.KeyboardAreaUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.KeyboardAreaUIElement.IsElementDrawn">
- <summary>
- True if this element is drawn normally. The default
- implementation of this property returns true. It may
- be overidden by some elements who don't do any rendering
- (e.g. scrollbars since they are actually scrollbar windows
- that render themselves)
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.KeyboardAreaUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.KeyboardAreaUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.MainAreaUIElement">
- <summary>
- Summary description for MainAreaUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.MainAreaUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- MainAreaUIElement
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MainAreaUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MainAreaUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.MainAreaUIElement.CornerRadius">
- <summary>
- Returns the radius of this element's rounded corners. Defaults to 7.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.MainAreaUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.MainAreaUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.MaskAreaUIElement">
- <summary>
- Summary description for MaskAreaUIElement.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.TextAreaUIElement">
- <summary>
- Summary description for TextAreaUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.TextAreaUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.TextAreaUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.TextAreaUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.TextAreaUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskAreaUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- Constructor
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskAreaUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.MaskCharacterAreaUIElement">
- <summary>
- Summary description for MaskCharacterAreaUIElement.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.TextCharacterAreaUIElement">
- <summary>
- Summary description for TextCharacterAreaUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.TextCharacterAreaUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- Constructor
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.TextCharacterAreaUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Do nothing.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.TextCharacterAreaUIElement.DrawImageBackground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Does nothing
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.TextCharacterAreaUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.TextCharacterAreaUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.TextCharacterAreaUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterAreaUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- Constructor
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterAreaUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.MaskCharacterCellInnerUIElement">
- <summary>
- Summary description for MaskCharacterCellInnerUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellInnerUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- MaskCharacterCellUIElement
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellInnerUIElement.DrawBorders(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draws the element's borders.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellInnerUIElement.DrawForeground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draw foreground.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellInnerUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="P:Infragistics.Win.Ink.MaskCharacterCellInnerUIElement.BorderStyle">
- <summary>
- Returns the appropriate border style.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.MaskCharacterCellUIElement">
- <summary>
- Summary description for MaskCharacterCellUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- MaskCharacterCellUIElement
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellUIElement.OnDispose">
- <summary>
- Cleans up any resources being used.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Do nothing.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellUIElement.DrawForeground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draw foreground.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellUIElement.DrawImageBackground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Does nothing
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellUIElement.OnClick">
- <summary>
- Called when the element is clicked.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellUIElement.GetContext(System.Type,System.Boolean)">
- <summary>
- Returns an object of requested type that relates to the element or null.
- </summary>
- <param name="type">The requested type or null to pick up default context object. </param>
- <param name="checkParentElementContexts">If true will walk up the parent chain looking for the context.</param>
- <returns><see cref="T:System.Object"/></returns>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.MaskCharacterCellUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.MaskCharacterCellUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.MaskCharacterCellUIElement.CharacterIndex">
- <summary>
- Returns the index of the character represented by the element.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.MaskCharacterCellUIElement.RecognizerContext">
- <summary>
- InkRecognizer Context
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.MaskCharacterCellUIElement.MaskCharacterCellAccessibleObject">
- <summary>
- Accesible object representing a single character.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellUIElement.MaskCharacterCellAccessibleObject.#ctor(Infragistics.Win.Ink.MaskCharacterCellUIElement)">
- <summary>
- Initializes a new <see cref="T:Infragistics.Win.Ink.MaskCharacterCellUIElement.MaskCharacterCellAccessibleObject"/>
- </summary>
- <param name="character">Associated element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskCharacterCellUIElement.MaskCharacterCellAccessibleObject.Select(System.Windows.Forms.AccessibleSelection)">
- <summary>
- Modifies the selection or moves the keyboard focus of the accessible object
- </summary>
- <param name="flags">One of the <b>AccessibleSelection</b> values</param>
- </member>
- <member name="P:Infragistics.Win.Ink.MaskCharacterCellUIElement.MaskCharacterCellAccessibleObject.Value">
- <summary>
- Returns the name of the accessible object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.MaskCharacterCellUIElement.MaskCharacterCellAccessibleObject.State">
- <summary>
- Returns the state of the accessible object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.MaskCharacterCellUIElement.MaskCharacterCellAccessibleObject.Role">
- <summary>
- Returns the role of the accessible object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.MaskEditor">
- <summary>
- Summary description for MaskEditor.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.TextEditorBase">
- <summary>
- Summary description for TextEditorBase.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditorBase.EditNewSelStart(System.Int32,System.Int32)">
- <summary>
- Returns a valid SelStart value based on the specified old and new SelStart values. The default implementation simply
- returns the specified new SelStart value.
- </summary>
- <param name="oldSelStart"></param>
- <param name="newSelStart"></param>
- <returns>A valid new SelStart value based on the specified old and new values</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditorBase.EditNewSelLength(System.Int32)">
- <summary>
- Returns a valid SelLength value based on the specified new SelLength value. The default implementation simply
- returns the specified new SelLength value.
- </summary>
- <param name="newSelLength"></param>
- <returns>A valid new SelLength value based on the specified new value.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditorBase.SelectCharacter(System.Int32)">
- <summary>
- Selects the character at the specified index.
- </summary>
- <param name="characterIndex"></param>
- <returns>True if the character at the specified index was selected.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditorBase.SelectCharacterRange(System.Int32,System.Int32)">
- <summary>
- Selects the range of characters between and including the specified indices.
- </summary>
- <param name="characterIndex1"></param>
- <param name="characterIndex2"></param>
- <returns>True if the character range was selected.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditorBase.InsertTextIntoText(System.String,System.String,System.Int32,System.Int32)">
- <summary>
- Inserts the specified source text into specified desitination text based on the specified
- selStart and selLength. If selLength is greater than zero, then the source text will replace
- the 'selected' text in the destination text.
- </summary>
- <param name="destText"></param>
- <param name="sourceText"></param>
- <param name="selStart"></param>
- <param name="selLength"></param>
- <returns>Returns a new string with the text inserted at the correct position</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditorBase.OnScroll(System.Object,System.Windows.Forms.ScrollEventArgs)">
- <summary>
- Handles user interactivity with the scrollbar
- </summary>
- <param name="sender"></param>
- <param name="args"></param>
- </member>
- <member name="P:Infragistics.Win.Ink.TextEditorBase.ScrollHandler">
- <summary>
- Returns the event handler that notifies Scroll
- </summary>
- </member>
- <member name="E:Infragistics.Win.Ink.TextEditorBase.OnScrollPositionChanged">
- <summary>
- Event fired when the scroll position changes
- </summary>
- </member>
- <member name="E:Infragistics.Win.Ink.TextEditorBase.OnSelectionChanged">
- <summary>
- Event fired when the selection changes
- </summary>
- </member>
- <member name="E:Infragistics.Win.Ink.TextEditorBase.OnTextChanged">
- <summary>
- Event fired when the text changes
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskEditor.EditNewSelLength(System.Int32)">
- <summary>
- Returns a valid SelLength value based on the specified new SelLength value. The implementation of this method
- for MaskEditor always returns zero.
- </summary>
- <param name="newSelLength"></param>
- <returns>For MaskEditor, always returns 0.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskEditor.EditNewSelStart(System.Int32,System.Int32)">
- <summary>
- Returns a valid SelStart value based on the specified old and new SelStart values. The default implementation simply
- returns the specified new SelStart value. For the MaskEditor, edits the specified newSelStart to make sure that it points
- to an editable display character.
- </summary>
- <param name="oldSelStart"></param>
- <param name="newSelStart"></param>
- <returns>A valid new SelStart value based on the specified old and new values</returns>
- </member>
- <member name="T:Infragistics.Win.Ink.MaskEditorUIElement">
- <summary>
- Summary description for MaskEditorUIElement.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.TextEditorUIElement">
- <summary>
- Summary description for TextEditorUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditorUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- TextEditorUIElement
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditorUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Do nothing.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditorUIElement.DrawImageBackground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Does nothing
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditorUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.TextEditorUIElement.ClipChildren">
- <summary>
- Returns whether the element should clip its child elements.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.TextEditorUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.TextEditorUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskEditorUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- Constructor
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskEditorUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.MaskToolbarAreaUIElement">
- <summary>
- Summary description for MaskToolbarAreaUIElement.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.ToolbarAreaUIElement">
- <summary>
- Summary description for ToolbarAreaUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.ToolbarAreaUIElement.DrawBackColor(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Do nothing.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.ToolbarAreaUIElement.DrawImageBackground(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Does nothing
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.ToolbarAreaUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.ToolbarAreaUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.ToolbarAreaUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskToolbarAreaUIElement.#ctor(Infragistics.Win.UIElement)">
- <summary>
- Constructor
- </summary>
- <param name="parent">The parent element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.MaskToolbarAreaUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.NumberPadPopupButtonUIElement.OnMouseEnter">
- <summary>
- Fired when the mouse enters the element.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.NumberPadPopupButtonUIElement.OnMouseLeave">
- <summary>
- Fired when the mouse leaves the element.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.PropertyIds">
- <summary>
- Values that uniquely identify each control property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.Appearance">
- <summary>
- The InputMode property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.Appearances">
- <summary>
- The InputMode property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.InputMode">
- <summary>
- The InputMode property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.InputModeSelectable">
- <summary>
- The InputModeSelectable property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.ShowGesturePanel">
- <summary>
- The ShowGesturePanel property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.GesturePanelAppearance">
- <summary>
- The GesturePanelAppearance property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.InkAreaAppearance">
- <summary>
- The InkAreaAppearance property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.TextAreaAppearance">
- <summary>
- The TextAreaAppearance property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.TextRecognitionDelay">
- <summary>
- The TextRecognitionDelay property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.PenThickness">
- <summary>
- The PenThickness property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.PenPressureIgnored">
- <summary>
- The PenPressureIgnored property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.MaskCharacterAppearance">
- <summary>
- The MaskCharacterAppearance property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.ActiveMaskCharacterAppearance">
- <summary>
- The ActiveMaskCharacterAppearance property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.InvalidMaskCharacterAppearance">
- <summary>
- The InvalidMaskCharacterAppearance property.
- </summary>
- </member>
- <member name="F:Infragistics.Win.Ink.PropertyIds.ShowInkButton">
- <summary>
- The ShowInkButton property.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.StateButtonGroup">
- <summary>
- Summary description for StateButtonGroup.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.StateButtonGroup.#ctor">
- <summary>
- Default Constructor (AllowAllUp defaults to false)
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.StateButtonGroup.#ctor(System.Boolean)">
- <summary>
- Constructor
- </summary>
- <param name="allowAllUp"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.StateButtonGroup.CanClickButton(Infragistics.Win.ButtonUIElementBase)">
- <summary>
- Called by a button UIElement when it is clicked.
- </summary>
- <param name="buttonElementClicked"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.SymbolPadPopupButtonUIElement.OnMouseEnter">
- <summary>
- Fired when the mouse enters the element.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.SymbolPadPopupButtonUIElement.OnMouseLeave">
- <summary>
- Fired when the mouse leaves the element.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.SystemButtonAreaUIElement">
- <summary>
- Summary description for SystemButtonAreaUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.SystemButtonAreaUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.SystemButtonAreaUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.SystemButtonAreaUIElement.ClipSelf">
- <summary>
- Returning true causes all drawing of this element to be explicitly clipped.
- to its region
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.SystemButtonAreaUIElement.Region">
- <summary>
- Returns the element's region.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.SystemButtonAreaUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.SystemButtonAreaUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.SystemButtonUIElement">
- <summary>
- Summary description for SystemButtonUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.SystemButtonUIElement.OnClick">
- <summary>
- Called when the element is clicked.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.SystemButtonUIElement.Enabled">
- <summary>
- Gets/sets whether this element is enabled.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.SystemButtonUIElement.WantsMouseHoverNotification">
- <summary>
- Return true if this element wants to be notified when the mouse hovers over it. This property is read-only.
- </summary>
- <remarks>The default implemenation returns false. This should be overridden by elements that want their OnMouseHover method to be called.</remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.SystemButtonUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.SystemButtonUIElement.AccessibilityInstance">
- <summary>
- Returns the accessible object that represents the element or its associated object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.SystemButtonUIElement.SystemButtonAccessibleObject">
- <summary>
- Accessible object representing a <see cref="T:Infragistics.Win.Ink.SystemButtonUIElement.SystemButtonAccessibleObject"/>
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.SystemButtonUIElement.SystemButtonAccessibleObject.#ctor(Infragistics.Win.Ink.SystemButtonUIElement)">
- <summary>
- Initializes a new <see cref="T:Infragistics.Win.Ink.SystemButtonUIElement.SystemButtonAccessibleObject"/>
- </summary>
- <param name="element">Associated element</param>
- </member>
- <member name="M:Infragistics.Win.Ink.SystemButtonUIElement.SystemButtonAccessibleObject.DoDefaultAction">
- <summary>
- Performs the default action associated with this accessible object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.SystemButtonUIElement.SystemButtonAccessibleObject.DefaultAction">
- <summary>
- Gets a string that describes the default action of the object. Not all objects have a default action.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.TextEditor">
- <summary>
- Summary description for TextEditor.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditor.UpdateSegmentPositions">
- <summary>
- Updates the starting position in the text of each segment in our list.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.TextEditor.GetSegmentContainingCharacterPosition(System.Int32)">
- <summary>
- Returns the Segment that contains the specified character index.
- </summary>
- <param name="characterIndex"></param>
- <returns></returns>
- </member>
- <member name="T:Infragistics.Win.Ink.UltraPenInputPanel">
- <summary>
- UltraPenInputPanel is a public control class derived from UltraPenInputPanelBase - it appears
- in the VS .NET toolbox. It is NOT used by the UltraInkProvider (the UltraInkProvider uses
- UltraPenInputPanelInternal). This derived class exposes and serializes values for its key properties.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.UltraPenInputPanelBase">
- <summary>
- UltraPenInputPanelBase is an abstract base class for the UltraPenInputPanel.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.#ctor">
- <summary>
- Constructor
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control"/> and its child controls and optionally releases the managed resources.
- </summary>
- <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.OnPropertyChanged(Infragistics.Win.PropertyChangedEventArgs)">
- <summary>
- Called when a property or sub object's property value has changed.
- </summary>
- <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
- <summary>
- Called when a property has changed on a sub object.
- </summary>
- <remarks>
- <p class="body"><b>OnPropertyChanged</b> will also be called.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Initialize(System.String)">
- <summary>
- Prepares the UltraPenInputPanel for a new editing session, setting the input panel's text to the supplied text.
- Call this method before displaying the UltraPenInputPanel to begin a new edit session.
- </summary>
- <param name="text">The text to be edited</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Initialize(System.String,Infragistics.Win.EditorWithMask,Infragistics.Win.EmbeddableUIElementBase)">
- <summary>
- Prepares the UltraPenInputPanel for a new editing session, setting the input panel's text to the supplied text.
- Call this method before displaying the UltraPenInputPanel to begin a new edit session.
- </summary>
- <param name="text">The text to be edited</param>
- <param name="editorWithMask">If the text being edited originates from an embeddable editor that derives from
- <param name="embeddableElement">The EmbeddableUIElementBase</param>
- EditorWithMask, set this parameter to the editor. This will force the UltraPenInputPanel to recognize mask
- characters and use a boxed input UI.
- </param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.ResolveControlAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Resolves the appearance of the UltraPenInputPanelUIElement
- </summary>
- <param name="appearance">A reference to the AppearanceData structure to be resolved.</param>
- <param name="requestedProps">A reference to the bitflags enumeration describing the properties to be resolved.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.ResolveCharacterCellAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
- <summary>
- Resolves the appearance of the CharacterCellUIElement
- </summary>
- <param name="appearance">A reference to the AppearanceData structure to be resolved.</param>
- <param name="requestedProps">A reference to the bitflags enumeration describing the properties to be resolved.</param>
- <param name="isSelected">True if the character cell is selected, otherwise false.</param>
- <param name="isValid">True if the character cell contains valid text, otherwise false.</param>
- <param name="isActive">True if the character cell is the current active character cell (the one at the insertion point), otherwise false.</param>
- <param name="isEditableMaskChar">True if the character cell represents an editable mask character, otherwise false.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.ResolveGesturePanelAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Resolves the appearance of the GesturePanelUIElement.
- </summary>
- <param name="appearance">A reference to the AppearanceData structure to be resolved.</param>
- <param name="requestedProps">A reference to the bitflags enumeration describing the properties to be resolved.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.ResolveInkAreaAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Resolves the appearance of the InkAreaUIElement.
- </summary>
- <param name="appearance">A reference to the AppearanceData structure to be resolved.</param>
- <param name="requestedProps">A reference to the bitflags enumeration describing the properties to be resolved.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.ResolveInkCollectorAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Resolves the appearance of the InkCollectorUIElement.
- </summary>
- <param name="appearance">A reference to the AppearanceData structure to be resolved.</param>
- <param name="requestedProps">A reference to the bitflags enumeration describing the properties to be resolved.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.ResolveKeyboardAreaAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Resolves the appearance of the KeyboardAreaUIElement
- </summary>
- <param name="appearance">A reference to the AppearanceData structure to be resolved.</param>
- <param name="requestedProps">A reference to the bitflags enumeration describing the properties to be resolved.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.ResolveMainAreaAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Resolves the appearance of the MainAreaUIElement
- </summary>
- <param name="appearance">A reference to the AppearanceData structure to be resolved.</param>
- <param name="requestedProps">A reference to the bitflags enumeration describing the properties to be resolved.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.ResolveSystemButtonAreaAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Resolves the appearance of the SystemButtonAreaUIElement.
- </summary>
- <param name="appearance">A reference to the AppearanceData structure to be resolved.</param>
- <param name="requestedProps">A reference to the bitflags enumeration describing the properties to be resolved.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.ResolveTextAreaAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Resolves the appearance of the TextAreaUIElement
- </summary>
- <param name="appearance">A reference to the AppearanceData structure to be resolved.</param>
- <param name="requestedProps">A reference to the bitflags enumeration describing the properties to be resolved.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.InitializeControl">
- <summary>
- InitializeControl
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.CreateAccessibilityInstance">
- <summary>
- Creates a new accessibility object for the control.
- </summary>
- <returns>A new accessibility object for the control.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.CreateAccessibilityInstance(Infragistics.Win.UIElement)">
- <summary>
- Creates a new accessibility object for the specified child element.
- </summary>
- <returns>A new accessibility object for the control.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.OnMouseEnterNumberPadPopupButtonElement">
- <summary>
- Called from a NumberPadPopupButtonElement when the mouse enters the element.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.OnMouseLeaveNumberPadPopupButtonElement">
- <summary>
- Called from a NumberPadPopupButtonElement when the mouse leaves the element.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.OnMouseEnterSymbolPadPopupButtonElement">
- <summary>
- Called from a SymbolPadPopupButtonElement when the mouse enters the element.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.OnMouseLeaveSymbolPadPopupButtonElement">
- <summary>
- Called from a SymbolPadPopupButtonElement when the mouse leaves the element.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#ISelectionManager#ActivateItem(Infragistics.Shared.ISelectableItem)">
- <summary>
- Active the specified item.
- </summary>
- <param name="item"></param>
- <returns>True if action was cancelled, otherwise false.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#ISelectionManager#GetSelectionStrategy(Infragistics.Shared.ISelectableItem)">
- <summary>
- Returns the selection strategy for the passed in item
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#ISelectionManager#OnDragStart(Infragistics.Shared.ISelectableItem,System.Drawing.Point)">
- <summary>
- Called when a dragging operation is about to begin.
- </summary>
- <param name="item"></param>
- <param name="mousePosition">The position of the mouse at the start of the drag</param>
- <returns>Returns true means that it was handled internally and no further action should be taken</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#ISelectionManager#SelectItem(Infragistics.Shared.ISelectableItem,System.Boolean)">
- <summary>
- Select the specified item.
- The clearExistingSelection parameter specifies if the existing selection
- should be cleared.
- Returns true if action was canceled, false otherwise.
- </summary>
- <param name="item"></param>
- <param name="clearExistingSelection"></param>
- <returns></returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#ISelectionManager#SelectRange(Infragistics.Shared.ISelectableItem,System.Boolean)">
- <summary>
- Selecting a range based on the specified item. The clearExistingSelection
- parameter specifies if the existing selection should be cleared.
- </summary>
- <param name="item"></param>
- <param name="clearExistingSelection"></param>
- <returns></returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#ISelectionManager#SetInitialSelection(Infragistics.Shared.ISelectableItem)">
- <summary>
- Save initial selection settings for specified type
- </summary>
- <param name="item"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#ISelectionManager#SetPivotItem(Infragistics.Shared.ISelectableItem,System.Boolean)">
- <summary>
- Set the specified item as the pivot item. 'isRangeSelect' specifies if this is part of range selection or not.
- </summary>
- <param name="item"></param>
- <param name="IsRangeSelect"></param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#ISelectionManager#TranslateItem(Infragistics.Shared.ISelectableItem@)">
- <summary>
- Potentially translates the passed-in item to a ISelectableItem of a
- different type. For instance, the grid translates a passed-in cell
- into its parent row if CellClickAction is CellClickActionRowSelect.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#ISelectionManager#UnselectItem(Infragistics.Shared.ISelectableItem,System.Boolean)">
- <summary>
- Unselect the specified item.
- The clearExistingSelection parameter specifies if the existing selection
- should be cleared.
- Returns true if action was canceled, false otherwise.
- </summary>
- <param name="item"></param>
- <param name="clearExistingSelection"></param>
- <returns></returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#ISelectionManager#UnselectRange(Infragistics.Shared.ISelectableItem,System.Boolean)">
- <summary>
- Unselect the range from the pivot item to the specified item.
- The clearExistingSelection specifies whether or not to clear the existing
- selection.
- </summary>
- <param name="item"></param>
- <param name="clearExistingSelection"></param>
- <returns></returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#IToolTipItem#GetToolTipInfo(System.Drawing.Point,Infragistics.Win.UIElement,Infragistics.Win.UIElement,Infragistics.Win.ToolTipInfo)">
- <summary>
- Invoked when the tooltip information for an element is required.
- </summary>
- <param name="mousePosition">Current mouse position</param>
- <param name="element">Element for which the tooltip will be displayed</param>
- <param name="previousToolTipElement">Previous element that the tooltip was displayed for or null.</param>
- <param name="toolTipInfoDefault">Default ToolTipInfo structure initialized based on the mouse position. The structure may be modified and returned from the method.</param>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.ControlUIElement">
- <summary>
- Returns the main element
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.DefaultSize">
- <summary>
- Read-only property that returns the default height and width of the control
- when the user double clicks on the toolbox
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.SubObjectPropChangeHandler">
- <summary>
- Returns the event handler that notifies OnSubObjectPropChanged
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.ActiveMaskCharacterAppearance_Protected">
- <summary>
- ActiveMaskCharacterAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.ActiveMaskCharacterAppearanceHolder_Protected">
- <summary>
- ActiveMaskCharacterAppearanceHolder_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.Appearance_Protected">
- <summary>
- Appearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.AppearanceHolder_Protected">
- <summary>
- AppearanceHolder_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.Appearances_Protected">
- <summary>
- Appearances_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.GesturePanelAppearance_Protected">
- <summary>
- GesturePanelAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.GesturePanelAppearanceHolder_Protected">
- <summary>
- GesturePanelAppearanceHolder_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.HasActiveMaskCharacterAppearance_Protected">
- <summary>
- HasActiveMaskCharacterAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.HasAppearance_Protected">
- <summary>
- HasAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.HasGesturePanelAppearance_Protected">
- <summary>
- HasGesturePanelAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.HasInkAreaAppearance_Protected">
- <summary>
- HasInkAreaAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.HasInvalidMaskCharacterAppearance_Protected">
- <summary>
- HasInvalidMaskCharacterAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.HasMaskCharacterAppearance_Protected">
- <summary>
- HasMaskCharacterAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.HasTextAreaAppearance_Protected">
- <summary>
- HasTextAreaAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.InkAreaAppearance_Protected">
- <summary>
- InkAreaAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.InkAreaAppearanceHolder_Protected">
- <summary>
- InkAreaAppearanceHolder_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.InputMode_Protected">
- <summary>
- InputMode_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.InputModeSelectable_Protected">
- <summary>
- InputModeSelectable_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.InvalidMaskCharacterAppearance_Protected">
- <summary>
- InvalidMaskCharacterAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.InvalidMaskCharacterAppearanceHolder_Protected">
- <summary>
- InvalidMaskCharacterAppearanceHolder_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.IUltraControlInCharge">
- <summary>
- IUltraControlInCharge
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.MaskCharacterAppearance_Protected">
- <summary>
- MaskCharacterAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.MaskCharacterAppearanceHolder_Protected">
- <summary>
- MaskCharacterAppearanceHolder_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.PenPressureIgnored_Protected">
- <summary>
- PenPressureIgnored_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.PenThickness_Protected">
- <summary>
- PenThickness_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.ShowGesturePanel_Protected">
- <summary>
- ShowGesturePanel_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.TextAreaAppearance_Protected">
- <summary>
- TextAreaAppearance_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.TextAreaAppearanceHolder_Protected">
- <summary>
- TextAreaAppearanceHolder_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.TextRecognitionDelay_Protected">
- <summary>
- TextRecognitionDelay_Protected
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.GestureRecognizerContext">
- <summary>
- GestureRecognizerContext
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.RecognizerContext">
- <summary>
- InkRecognizer Context
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.IsInkRecognitionAvailable">
- <summary>
- Returns true if Recognizers are installed on the system and available. Otherwise, returns false.
- </summary>
- <remarks>
- <p class="body">If recognizers are not available, the UltraPenInputPanel displays 'Ink Recognition NotAvailable'
- in the ink area and 'Gestures N/A' in the GesturePanel (if visible).</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.IsTextDirty">
- <summary>
- Returns whether the text is dirty.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.Text">
- <summary>
- Returns the text associated with the UltraPenInputPanel.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.UIElement">
- <summary>
- Read-only property that returns the main UIElement of the UltraPenInputPanel.
- </summary>
- <remarks>
- <p class="body">Returns the UIElement that contains all the visible graphics of the control.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.Infragistics#Win#IImageListProvider#ImageList">
- <summary>
- Returns null.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.UltraPenInputPanelBase.UltraPenInputPanelBaseAccessibleObject">
- <summary>
- Accessible object representing an <see cref="T:Infragistics.Win.Ink.UltraPenInputPanelBase"/>
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.UltraPenInputPanelBaseAccessibleObject.#ctor(Infragistics.Win.Ink.UltraPenInputPanelBase)">
- <summary>
- Initializes a new <see cref="T:Infragistics.Win.Ink.UltraPenInputPanelBase.UltraPenInputPanelBaseAccessibleObject"/>
- </summary>
- <param name="panel">Associated control</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.UltraPenInputPanelBaseAccessibleObject.GetChild(System.Int32)">
- <summary>
- Retrieves the accessible child corresponding to the specified index
- </summary>
- <param name="index">The zero-based index of the accessible child</param>
- <returns>An AccessibleObject that represents the accessible child corresponding to the specified index</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.UltraPenInputPanelBaseAccessibleObject.GetChildCount">
- <summary>
- Retrieves the number of children belonging to an accessible object.
- </summary>
- <returns>The number of children belonging to an accessible object.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelBase.UltraPenInputPanelBaseAccessibleObject.GetFocused">
- <summary>
- Retrieves the object that has the keyboard focus.
- </summary>
- <returns>An AccessibleObject that specifies the currently focused child. This method returns the calling object if the object itself is focused. Returns a null reference (Nothing in Visual Basic) if no object has focus.</returns>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.UltraPenInputPanelBaseAccessibleObject.Role">
- <summary>
- Returns the role of the accessible object.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.UltraPenInputPanelBaseAccessibleObject.Description">
- <summary>
- Gets a string that describes the visual appearance of the specified object. Not all objects have a description
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.UltraPenInputPanelBaseAccessibleObject.Name">
- <summary>
- Gets a string that describes the name of the control
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelBase.UltraPenInputPanelBaseAccessibleObject.State">
- <summary>
- Gets the state of this accessible object.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.#ctor">
- <summary>
- Constructor
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeActiveMaskCharacterAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ActiveMaskCharacterAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ActiveMaskCharacterAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetActiveMaskCharacterAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetActiveMaskCharacterAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ActiveMaskCharacterAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ActiveMaskCharacterAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeActiveMaskCharacterAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ActiveMaskCharacterAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeAppearances">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearances"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearances"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetAppearances"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetAppearances">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearances"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearances"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeAppearances"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearances"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeGesturePanelAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.GesturePanelAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.GesturePanelAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetGesturePanelAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetGesturePanelAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.GesturePanelAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.GesturePanelAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeGesturePanelAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.GesturePanelAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeInkAreaAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InkAreaAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InkAreaAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetInkAreaAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetInkAreaAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InkAreaAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InkAreaAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeInkAreaAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InkAreaAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeInputMode">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputMode"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputMode"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetInputMode"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputMode"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetInputMode">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputMode"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputMode"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeInputMode"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputMode"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputMode"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeInputModeSelectable">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputModeSelectable"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputModeSelectable"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetInputModeSelectable"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputModeSelectable"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetInputModeSelectable">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputModeSelectable"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputModeSelectable"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeInputModeSelectable"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputModeSelectable"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InputModeSelectable"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeInvalidMaskCharacterAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InvalidMaskCharacterAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InvalidMaskCharacterAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetInvalidMaskCharacterAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetInvalidMaskCharacterAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InvalidMaskCharacterAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InvalidMaskCharacterAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeInvalidMaskCharacterAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InvalidMaskCharacterAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeMaskCharacterAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.MaskCharacterAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.MaskCharacterAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetMaskCharacterAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetMaskCharacterAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.MaskCharacterAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.MaskCharacterAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeMaskCharacterAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.MaskCharacterAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializePenPressureIgnored">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenPressureIgnored"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenPressureIgnored"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetPenPressureIgnored"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenPressureIgnored"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetPenPressureIgnored">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenPressureIgnored"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenPressureIgnored"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializePenPressureIgnored"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenPressureIgnored"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenPressureIgnored"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializePenThickness">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenThickness"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenThickness"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetPenThickness"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenThickness"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetPenThickness">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenThickness"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenThickness"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializePenThickness"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenThickness"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.PenThickness"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeShowGesturePanel">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ShowGesturePanel"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ShowGesturePanel"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetShowGesturePanel"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ShowGesturePanel"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetShowGesturePanel">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ShowGesturePanel"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ShowGesturePanel"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeShowGesturePanel"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ShowGesturePanel"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ShowGesturePanel"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeTextAreaAppearance">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextAreaAppearance"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextAreaAppearance"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Use this method to determine if an <b>Appearance</b> object has been created and contains data that needs to be serialized.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetTextAreaAppearance"/> method to reset this property to its default value.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetTextAreaAppearance">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextAreaAppearance"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextAreaAppearance"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeTextAreaAppearance"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextAreaAppearance"/> property is set again.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ShouldSerializeTextRecognitionDelay">
- <summary>
- <p class="body">Returns a Boolean value that determines whether the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextRecognitionDelay"/> property is set to its default value.</p>
- </summary>
- <remarks>
- <p class="body">Returns True if the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextRecognitionDelay"/> property is not set to its default value; otherwise, it returns False.</p>
- <p class="body">Invoke the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ResetTextRecognitionDelay"/> method to reset this property to its default value.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextRecognitionDelay"/>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanel.ResetTextRecognitionDelay">
- <summary>
- Resets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextRecognitionDelay"/> property to its default value.
- </summary>
- <remarks>
- <p class="body">Invoke this method to reset the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextRecognitionDelay"/> property to its default value.</p>
- <p class="body">Once this method is invoked, the <see cref="M:Infragistics.Win.Ink.UltraInkProvider.ShouldSerializeTextRecognitionDelay"/> method will return False until the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextRecognitionDelay"/> property is set again.</p>
- </remarks>
- <seealso cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextRecognitionDelay"/>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.About">
- <summary>
- Display the about dialog
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.ActiveMaskCharacterAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> object that controls the formatting of the active mask character. Used only when editing text from masked editors using boxed input.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.HasActiveMaskCharacterAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.ActiveMaskCharacterAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> object that controls the object's formatting.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.HasAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearances">
- <summary>
- Returns a collection of user-created Appearance objects.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">This property is used to hold a collection of Appearance objects.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.GesturePanelAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> object that controls the formatting of the GesturePanel.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.HasGesturePanelAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.GesturePanelAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.InkAreaAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> object that controls the formatting of the InkArea.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.HasInkAreaAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InkAreaAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.InputMode">
- <summary>
- Returns/sets an enumeration that determines the input mode (Ink or Keyboard) of the UltraPenInputPanel
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.InputModeSelectable">
- <summary>
- Returns/sets whether the input mode (Ink or Keyboard) can be selected by the user via buttons on the UltraPenInputPanel.
- </summary>
- <remarks>
- <p class="body">If set to true, buttons are displayed on the UltrPenInputPanel to allow the end user to change the InputMode. If false, not buttons are dislayed and the end user cannot change the InputMode.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.InvalidMaskCharacterAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> object that controls the formatting of invalid mask characters. Used only when editing text from masked editors using boxed input.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.HasInvalidMaskCharacterAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.InvalidMaskCharacterAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.MaskCharacterAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> object that controls the formatting of mask characters. Used only when editing text from masked editors using boxed input.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.HasMaskCharacterAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.MaskCharacterAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.PenPressureIgnored">
- <summary>
- Returns/sets a value that determines whether pen pressure is reflected in the rendering of ink strokes.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.PenThickness">
- <summary>
- Returns/sets a value that determines the thickness used (in pixels) when drawing pen strokes.
- Valid values range from 1 to 20 pixels.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.ShowGesturePanel">
- <summary>
- Returns/sets whether the GesturePanel is shown. The GesturePanel allows entry of application gestures to perform various editing functions.
- </summary>
- <remarks>
- <p class="body">If set to true, a panel is displayed in the ink area that allows the user to enter gestures with the pen to control editing of the text.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.TextAreaAppearance">
- <summary>
- Returns or sets the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.Appearance"/> object that controls the formatting of the TextArea.
- </summary>
- <remarks>
- <p class="body">The Appearance property of an object is used to associate the object with an Appearance object that will determine its appearance. The Appearance object has properties that control settings such as color, borders, font, transparency, etc. For many of the objects in UltraWinToolbars, you do not set formatting properties directly. Instead, you set the properties of an Appearance object, which controls the formatting of the object it is attached to.</p>
- <p class="body">Note that the properties of an Appearance object can also operate in a hierarchical fashion. Certain properties can be set to a "use default" value, which indicates to the control that the property should take its setting from the object's parent. This functionality is enabled by default, so that unless you specify otherwise, child objects resemble their parents, and formatting set at higher levels of the control hierarchy is inherited by objects lower in the hierarchy.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.HasTextAreaAppearance">
- <summary>
- Returns a Boolean value that indicates whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created.
- </summary>
- <remarks>
- <p class="body">Returns True when the Appearance object for the <see cref="P:Infragistics.Win.Ink.UltraPenInputPanel.TextAreaAppearance"/> property has been created; otherwise, returns False.</p>
- <p class="body">Use this property to determine whether an <see cref="T:Infragistics.Win.AppearanceBase"/> object has been created. Appearance objects in general are not created until the properties associated with them are accessed.</p>
- </remarks>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanel.TextRecognitionDelay">
- <summary>
- Returns/sets a value that determines the delay (in milliseconds) between the last stroke entered and the start of the text recognition process.
- Valid values range from 300 to 10000 milliseconds.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.UltraPenInputPanelInternal">
- <summary>
- UltraPenInputPanelInternal is an internal class derived from abstract base class UltraPenInputPanelBase.
- It is used by the UltraInkProvider to provide pen editing servives and is displayed in a popup window.
- It does not expose its key properties publicly. It calls off to the UltraInkProvider to provide values
- for its key properties (e.g., Appearance, InputMode etc.)
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelInternal.#ctor(Infragistics.Win.Ink.UltraInkProvider)">
- <summary>
- Constructor
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.UltraPenInputPanelUIElement">
- <summary>
- Summary description for UltraPenInputPanelUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelUIElement.DrawBorders(Infragistics.Win.UIElementDrawParams@)">
- <summary>
- Draws the element's borders.
- </summary>
- <param name="drawParams">The <see cref="T:Infragistics.Win.UIElementDrawParams"/> used to provide rendering information.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelUIElement.OnVerifyChildElementsComplete(Infragistics.Win.UIElement,System.Boolean)">
- <summary>
- Gets called when any verification process of contained elements completes
- </summary>
- <param name="verifiedElement">The highest level element which began verifying its elements.</param>
- <param name="recursive">True if the element's children were recursively verified; False if only the specified element was verified.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraPenInputPanelUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraPenInputPanelUIElement.BorderStyle">
- <summary>
- Returns the appropriate border style.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.SymbolButtonUIElement">
- <summary>
- Summary description for SymbolButtonUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.SymbolButtonUIElement.ButtonClick">
- <summary>
- Invoked when the button has been clicked.
- </summary>
- <returns>True to prevent the base implementation from being invoked.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.SymbolButtonUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="P:Infragistics.Win.Ink.SymbolButtonUIElement.IsAccessibleElement">
- <summary>
- Indicates if the element supports accessibility
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraSymbolPad.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:System.Windows.Forms.Control"/> and its child controls and optionally releases the managed resources.
- </summary>
- <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraSymbolPad.OnPropertyChanged(Infragistics.Win.PropertyChangedEventArgs)">
- <summary>
- Called when a property or sub object's property value has changed.
- </summary>
- <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraSymbolPad.OnSubObjectPropChanged(Infragistics.Shared.PropChangeInfo)">
- <summary>
- Called when a property has changed on a sub object.
- </summary>
- <remarks>
- <p class="body"><b>OnPropertyChanged</b> will also be called.</p>
- </remarks>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraSymbolPad.CreateAccessibilityInstance">
- <summary>
- Creates a new accessibility object for the control.
- </summary>
- <returns>A new accessibility object for the control.</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraSymbolPad.CreateAccessibilityInstance(Infragistics.Win.UIElement)">
- <summary>
- Creates a new accessibility object for the specified child element.
- </summary>
- <returns>A new accessibility object for the control.</returns>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraSymbolPad.ControlUIElement">
- <summary>
- Returns the main element
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraSymbolPad.SubObjectPropChangeHandler">
- <summary>
- Returns the event handler that notifies OnSubObjectPropChanged
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraSymbolPad.Infragistics#Win#IImageListProvider#ImageList">
- <summary>
- Returns null.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraSymbolPad.SymbolButtonClickEventArgs.#ctor(System.String)">
- <summary>
- Constructor
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraSymbolPad.UltraSymbolPadAccessibleObject.GetChild(System.Int32)">
- <summary>
- Retrieves the accessible child corresponding to the specified index
- </summary>
- <param name="index">The zero-based index of the accessible child</param>
- <returns>An AccessibleObject that represents the accessible child corresponding to the specified index</returns>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraSymbolPad.UltraSymbolPadAccessibleObject.GetChildCount">
- <summary>
- Retrieves the number of children belonging to an accessible object.
- </summary>
- <returns>The number of children belonging to an accessible object.</returns>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraSymbolPad.UltraSymbolPadAccessibleObject.Role">
- <summary>
- Returns the role of the accessible object.
- </summary>
- </member>
- <member name="T:Infragistics.Win.Ink.UltraSymbolPadUIElement">
- <summary>
- Summary description for UltraSymbolPadUIElement.
- </summary>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraSymbolPadUIElement.InitAppearance(Infragistics.Win.AppearanceData@,Infragistics.Win.AppearancePropFlags@)">
- <summary>
- Initializes the appearance for the element.
- </summary>
- <param name="appearance">The appearance structure to initialize.</param>
- <param name="requestedProps">The appearance properties to resolve.</param>
- </member>
- <member name="M:Infragistics.Win.Ink.UltraSymbolPadUIElement.PositionChildElements">
- <summary>
- Creates/verifies the child UI elements for the control.
- </summary>
- </member>
- <member name="P:Infragistics.Win.Ink.UltraSymbolPadUIElement.BorderStyle">
- <summary>
- Returns the appropriate border style.
- </summary>
- </member>
- </members>
- </doc>
|