123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>DevExpress.XtraPrinting.v14.1</name>
- </assembly>
- <members>
- <member name="T:DevExpress.XtraPrinting.Preview.RibbonControllerBase">
- <summary>
- <para>Represents the base class for Ribbon Controller classes that embed their specific functionality into the existing <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> object.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.RibbonControllerBase.BeginInit">
- <summary>
- <para>Starts the RibbonControllerBase's initialization. Initialization occurs at runtime.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.RibbonControllerBase.EndInit">
- <summary>
- <para>Ends the RibbonControllerBase's initialization.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.RibbonControllerBase.Initialize(DevExpress.XtraBars.Ribbon.RibbonControl,DevExpress.XtraBars.Ribbon.RibbonStatusBar)">
- <summary>
- <para>Performs basic initialization of the created <b>Ribbon Controller</b>, and assigns the specified <b>Ribbon Control</b> and <b>Ribbon Status Bar</b> to it.
- </para>
- </summary>
- <param name="ribbonControl">
- A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> object, specifying the Ribbon Control to be assigned to the <see cref="P:DevExpress.XtraPrinting.Preview.RibbonControllerBase.RibbonControl"/> property.
- </param>
- <param name="ribbonStatusBar">
- A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonStatusBar"/> object, specifying the Ribbon status bar to be assigned to the <see cref="P:DevExpress.XtraPrinting.Preview.RibbonControllerBase.RibbonStatusBar"/> property.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.RibbonControllerBase.RibbonControl">
- <summary>
- <para>Gets or sets the <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> class instance to which the <b>Ribbon Controller</b> belongs.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> class instance to which the <b>Ribbon Controller</b> belongs.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.RibbonControllerBase.RibbonStatusBar">
- <summary>
- <para>Gets or sets the <see cref="T:DevExpress.XtraBars.Ribbon.RibbonStatusBar"/> class instance to which the <b>Ribbon Controller</b> belongs.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonStatusBar"/> class instance to which the <b>Ribbon Controller</b> belongs.
- </value>
- </member>
- <member name="T:DevExpress.XtraPrintingLinks.DataGridLink">
- <summary>
- <para>A link to print the <see cref="T:System.Windows.Forms.DataGrid"/> control.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the DataGridLink class with the specified container.
- </para>
- </summary>
- <param name="container">
- An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface which specifies the owner container of a DataGridLink class instance.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Initializes a new instance of the DataGridLink class with the specified printing system.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object which specifies the printing system used to draw the current link. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.Link.PrintingSystem"/> property.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.#ctor">
- <summary>
- <para>Initializes a new instance of the DataGridLink class with default settings.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
- <summary>
- <para>Indicates whether or not the specified Printing System command can be handled.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface that specifies the print control (most typically, it is a <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Generates a report using the specified Printing System.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
- <summary>
- <para>Handles the specified Printing System command.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
- </param>
- <param name="args">
- A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface (most typically, it is the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <param name="handled">
- <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridLink.ImageCollection">
- <summary>
- <para>Provides access to the link's collection of images.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridLink.Images">
- <summary>
- <para>A collection of images which can be added to the page's headers and footers.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridLink.ImageStream">
- <summary>
- <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.Print(System.String)">
- <summary>
- <para>Prints the current document to the specified printer.
- </para>
- </summary>
- <param name="printerName">
- A <see cref="T:System.String"/> value, specifying the printer name.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.PrintDlg">
- <summary>
- <para>Displays the standard <b>Print</b> dialog and prints the current document.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridLink.PrintingSystem">
- <summary>
- <para>Gets or sets the Printing System used to create and print a document for this link.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowPreview">
- <summary>
- <para>Invokes the Print Preview Form which shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form which shows the print preview of the document for this link using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link as a child of the specified parent window, using the specified look and feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Print Preview Form, which modally shows the print preview of the document for this link as a child of the specified parent window.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowPreviewDialog">
- <summary>
- <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrintingLinks.RichTextBoxLink">
- <summary>
- <para>A link to print the <see cref="T:System.Windows.Forms.RichTextBox"/> control.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.#ctor">
- <summary>
- <para>Initializes a new instance of the RichTextBoxLink class with default settings.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Initializes a new instance of the RichTextBoxLink class with the specified printing system.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object which specifies the printing system used to draw the current link. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.Link.PrintingSystem"/> property.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
- <summary>
- <para>Indicates whether or not the specified Printing System command can be handled.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface that specifies the print control (most typically, it is a <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Generates a report using the specified Printing System.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
- <summary>
- <para>Handles the specified Printing System command.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
- </param>
- <param name="args">
- A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface (most typically, it is the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <param name="handled">
- <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLink.ImageCollection">
- <summary>
- <para>Provides access to the link's collection of images.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLink.Images">
- <summary>
- <para>A collection of images which can be added to the Page Headers and Footers.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLink.ImageStream">
- <summary>
- <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.Print(System.String)">
- <summary>
- <para>Prints the current document to the specified printer.
- </para>
- </summary>
- <param name="printerName">
- A <see cref="T:System.String"/> value, specifying the printer name.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.PrintDlg">
- <summary>
- <para>Displays the standard <b>Print</b> dialog and prints the current document.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLink.PrintingSystem">
- <summary>
- <para>Gets or sets the Printing System used to create and print a document for this link.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form which shows the print preview of the document for this link using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowPreview">
- <summary>
- <para>Invokes the Print Preview Form which shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Print Preview Form, which modally shows the print preview of the document for this link as a child of the specified parent window.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link as a child of the specified parent window, using the specified look and feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowPreviewDialog">
- <summary>
- <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrintingLinks.CompositeLink">
- <summary>
- <para>A composite link that can be used to combine several printing links together into a composite document.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Initializes a new instance of the CompositeLink class with the specified printing system.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object which specifies the printing system used to draw the current link. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.Link.PrintingSystem"/> property.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the CompositeLink class with the specified container.
- </para>
- </summary>
- <param name="container">
- An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface which specifies the owner container of a CompositeLink class instance.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.#ctor">
- <summary>
- <para>Initializes a new instance of the CompositeLink class with default settings.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
- <summary>
- <para>Indicates whether or not the specified Printing System command can be handled.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface that specifies the print control (most typically, it is a <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Generates a report using the specified Printing System.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the Printing System of the link.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
- <summary>
- <para>Handles the specified Printing System command.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
- </param>
- <param name="args">
- A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface (most typically, it is the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <param name="handled">
- <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.CompositeLink.ImageCollection">
- <summary>
- <para>Provides access to the link's collection of images.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.CompositeLink.Images">
- <summary>
- <para>A collection of images which can be added to the Page Headers and Footers.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.Images"/> object.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.CompositeLink.ImageStream">
- <summary>
- <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.Print(System.String)">
- <summary>
- <para>Prints the current document to the specified printer.
- </para>
- </summary>
- <param name="printerName">
- A <see cref="T:System.String"/> value, specifying the printer name.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.PrintDlg">
- <summary>
- <para>Displays the standard <b>Print</b> dialog and prints the current document.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.CompositeLink.PrintingSystem">
- <summary>
- <para>Gets or sets the Printing System used to create and print a document for this link.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowPreview">
- <summary>
- <para>Invokes the Print Preview form with the document created from this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview form with the document created from this link.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowPreviewDialog">
- <summary>
- <para>Invokes the modal Print Preview form with the document created from this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the modal Print Preview form with the document created from this link.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the modal Print Preview form with the document created from this link.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrintingLinks.TreeViewLink">
- <summary>
- <para>A link to print the <see cref="T:System.Windows.Forms.TreeView"/> control.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.#ctor">
- <summary>
- <para>Initializes a new instance of the TreeViewLink class with default settings.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Initializes a new instance of the TreeViewLink class with the specified printing system.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object which specifies the printing system used to draw the current link. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.Link.PrintingSystem"/> property.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
- <summary>
- <para>Indicates whether or not the specified Printing System command can be handled.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface that specifies the print control (most typically, it is a <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Generates a report using the specified Printing System.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
- <summary>
- <para>Handles the specified Printing System command.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
- </param>
- <param name="args">
- A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface (most typically, it is the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <param name="handled">
- <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.TreeViewLink.ImageCollection">
- <summary>
- <para>Provides access to the link's collection of images.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.TreeViewLink.Images">
- <summary>
- <para>A collection of images which can be added to the Page Headers and Footers.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.TreeViewLink.ImageStream">
- <summary>
- <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.Print(System.String)">
- <summary>
- <para>Prints the current document to the specified printer.
- </para>
- </summary>
- <param name="printerName">
- A <see cref="T:System.String"/> value, specifying the printer name.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.PrintDlg">
- <summary>
- <para>Displays the standard <b>Print</b> dialog and prints the current document.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.TreeViewLink.PrintingSystem">
- <summary>
- <para>Gets or sets the Printing System used to create and print a document for this link.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowPreview">
- <summary>
- <para>Invokes the Print Preview Form which shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form which shows the print preview of the document for this link using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link as a child of the specified parent window, using the specified look and feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Print Preview Form, which modally shows the print preview of the document for this link as a child of the specified parent window.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowPreviewDialog">
- <summary>
- <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrintingLinks.ListViewLink">
- <summary>
- <para>A link to print the <see cref="T:System.Windows.Forms.ListView"/> control.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.#ctor">
- <summary>
- <para>Initializes a new instance of the ListViewLink class with the default settings.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
- <summary>
- <para>Indicates whether or not the specified Printing System command can be handled.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface that specifies the print control (most typically, it is a <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Generates a report using the specified Printing System.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
- <summary>
- <para>Handles the specified Printing System command.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
- </param>
- <param name="args">
- A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface (most typically, it is the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <param name="handled">
- <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.ListViewLink.ImageCollection">
- <summary>
- <para>Provides access to the link's collection of images.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.ListViewLink.Images">
- <summary>
- <para>A collection of images which can be added to the Page Headers and Footers.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.ListViewLink.ImageStream">
- <summary>
- <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.Print(System.String)">
- <summary>
- <para>Prints the current document to the specified printer.
- </para>
- </summary>
- <param name="printerName">
- A <see cref="T:System.String"/> value, specifying the printer name.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.PrintDlg">
- <summary>
- <para>Displays the standard <b>Print</b> dialog and prints the current document.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.ListViewLink.PrintingSystem">
- <summary>
- <para>Gets or sets the Printing System used to create and print a document for this link.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form which shows the print preview of the document for this link using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowPreview">
- <summary>
- <para>Invokes the Print Preview Form which shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Print Preview Form, which modally shows the print preview of the document for this link as a child of the specified parent window.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowPreviewDialog">
- <summary>
- <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link as a child of the specified parent window, using the specified look and feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx">
- <summary>
- <para>A print preview form with a ribbon toolbar.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx.#ctor">
- <summary>
- <para>Initializes a new instance of the PrintPreviewRibbonFormEx class with the default settings.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx.PrintRibbonController">
- <summary>
- <para>Gets the <b>PrintRibbonController</b> of the Print Preview form with a Ribbon.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintRibbonController"/> object which represents the <b>Print Ribbon Controller</b> of the Print Preview form with a Ribbon.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx.RibbonControl">
- <summary>
- <para>Gets the <b>RibbonControl</b> of the Print Preview form with a Ribbon.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> object which represents the <b>Ribbon Control</b> of the Print Preview form with a Ribbon.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx.RibbonStatusBar">
- <summary>
- <para>Gets the <b>RibbonStatusBar</b> of the Print Preview form with a Ribbon.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonStatusBar"/> object which represents the <b>Ribbon Status Bar</b> of the Print Preview form with a Ribbon.
- </value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.PrintRibbonController">
- <summary>
- <para>As part of the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> control, provides a ribbon toolbar to a Print Preview.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.#ctor">
- <summary>
- <para>Initializes a new instance of the PrintRibbonController class with default settings.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.#ctor(System.Object)">
- <summary>
- <para>Initializes a new instance of the PrintRibbonController class with the specified context.
- </para>
- </summary>
- <param name="contextSpecifier">
- A <see cref="T:System.Object"/> which contains information about the current context.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the PrintRibbonController class with the specified container.
- </para>
- </summary>
- <param name="container">
- An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.BeginInit">
- <summary>
- <para>Starts the PrintRibbonController's initialization. Initialization occurs at runtime.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.EndInit">
- <summary>
- <para>Ends the PrintRibbonController's initialization.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.GetBarItemByCommand(DevExpress.XtraPrinting.PrintingSystemCommand)">
- <summary>
- <para>Gets a bar item within the Ribbon Control by its command.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be executed by the bar item to be found.
- </param>
- <returns>A <see cref="T:DevExpress.XtraBars.BarItem"/> object that represents the bar item which executes the specified command.
- </returns>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintRibbonController.ImageCollection">
- <summary>
- <para>Gets the collection of images used in the PrintRibbonController UI.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.RibbonImageCollection"/> object.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintRibbonController.PreviewRibbonPages">
- <summary>
- <para>Provides access to a collection of Ribbon pages, generated by this PrintRibbonController instance.
- </para>
- </summary>
- <value>An object of the <see cref="T:System.Collections.Generic.IEnumerable"/> generic type, representing a collection of Ribbon pages.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintRibbonController.PrintControl">
- <summary>
- <para>Gets or sets the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance to which the <b>Print Ribbon Controller</b> belongs.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance to which the <b>Print Ribbon Controller</b> belongs.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.UpdateCommands">
- <summary>
- <para>Updates Ribbon Control items according to the current visibility state of the corresponding Printing System commands.
- </para>
- </summary>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.RibbonImageCollection">
- <summary>
- <para>Represents the collection of images used in the Ribbon UI.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.RibbonImageCollection.#ctor">
- <summary>
- <para>Initializes a new instance of the RibbonImageCollection class.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.RibbonImageCollection.GetImage(System.String)">
- <summary>
- <para>Gets the specified image from the collection.
- </para>
- </summary>
- <param name="name">
- A <see cref="T:System.String"/> value specifying the image name.
- </param>
- <returns>An <see cref="T:System.Drawing.Image"/> object.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.RibbonImageCollection.SetImage(System.String,System.Drawing.Image)">
- <summary>
- <para>Sets the specified image in the collection.
- </para>
- </summary>
- <param name="name">
- A <see cref="T:System.String"/> value specifying the image name.
- </param>
- <param name="value">
- An <see cref="T:System.Drawing.Image"/> object.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrinting.PrintTool">
- <summary>
- <para>The base class for the <see cref="T:DevExpress.XtraReports.UI.ReportPrintTool"/> class.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.#ctor(DevExpress.XtraPrinting.PrintingSystemBase)">
- <summary>
- <para>Initializes a new instance of the PrintTool class with the specified Printing System.
- </para>
- </summary>
- <param name="printingSystem">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> object that represents the Print Tool's Printing System. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.PrintTool.PrintingSystem"/> property.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ClosePreview">
- <summary>
- <para>Closes the Print Preview form.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.CloseRibbonPreview">
- <summary>
- <para>Closes the Ribbon Print Preview form.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.Dispose">
- <summary>
- <para>Disposes of the PrintTool object.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.LoadPrinterSettings(System.String)">
- <summary>
- <para>Applies the printer settings restored from the specified file to the system default printer.
- </para>
- </summary>
- <param name="filePath">
- A <see cref="T:System.String"/> value, specifying the name of the file (with a full path to it) from where the printer settings should be loaded.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.LoadPrinterSettingsFromRegistry(System.String)">
- <summary>
- <para>Applies the printer settings restored from the specified registry to the system default printer.
- </para>
- </summary>
- <param name="path">
- A <see cref="T:System.String"/>, specifying the system registry path from where the printer settings should be loaded.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.LoadPrinterSettingsFromStream(System.IO.Stream)">
- <summary>
- <para>Applies the printer settings restored from the specified stream to the system default printer.
- </para>
- </summary>
- <param name="stream">
- A <see cref="T:System.IO.Stream"/> from where the printer settings should be loaded.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.MakeCommandResponsive(DevExpress.XtraPrinting.PrintingSystemBase)">
- <summary>
- <para>For internal use.
- </para>
- </summary>
- <param name="printingSystem">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> descendant.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintTool.PreviewForm">
- <summary>
- <para>Provides access to a Print Preview form of the PrintTool.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx"/> object.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintTool.PreviewRibbonForm">
- <summary>
- <para>Provides access to a Ribbon Print Preview form of the PrintTool.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.Print">
- <summary>
- <para>Prints the current document.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.Print(System.String)">
- <summary>
- <para>Prints the current document on the specified printer.
- </para>
- </summary>
- <param name="printerName">
- A <see cref="T:System.String"/> representing the name of the printer on which the current document should be printed.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog">
- <summary>
- <para>Runs the <b>Print</b> dialog to select a printer, specify the print options (number of copies, page range, and paper source) and print the document.
- </para>
- </summary>
- <returns><b>true</b> if the user clicks <b>OK</b> in the dialog box; <b>false</b> if the user clicks <b>Cancel</b>; otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Runs the <b>Print</b> dialog to select a printer, specify the print options (number of copies, page range, and paper source) and print the document.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
- </param>
- <returns><b>true</b> if the user clicks <b>OK</b> in the dialog box; <b>false</b> if the user clicks <b>Cancel</b>; otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Runs the <b>Print</b> dialog to select a printer, specify the print options (number of copies, page range, and paper source) and print the document.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the <b>Print</b> dialog.
- </param>
- <returns><b>true</b> if the user clicks <b>OK</b> in the dialog box; <b>false</b> if the user clicks <b>Cancel</b>; otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Runs the <b>Print</b> dialog to select a printer, specify the print options (number of copies, page range, and paper source) and print the document.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the <b>Print</b> dialog.
- </param>
- <returns><b>true</b> if the user clicks <b>OK</b> in the dialog box; <b>false</b> if the user clicks <b>Cancel</b>; otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
- </returns>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintTool.PrintingSystem">
- <summary>
- <para>Provides access to the Printing System of the PrintTool.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> class descendant.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.SavePrinterSettings(System.String)">
- <summary>
- <para>Saves the settings of the system default printer to the specified file.
- </para>
- </summary>
- <param name="filePath">
- A <see cref="T:System.String"/> value, specifying the name of the file (with a full path to it) to where the printer settings should be saved.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.SavePrinterSettingsToRegistry(System.String)">
- <summary>
- <para>Saves the settings of the system default printer to the specified registry.
- </para>
- </summary>
- <param name="path">
- A <see cref="T:System.String"/>, specifying the system registry path to where the printer settings should be saved.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.SavePrinterSettingsToStream(System.IO.Stream)">
- <summary>
- <para>Saves the settings of the system default printer to the specified stream.
- </para>
- </summary>
- <param name="stream">
- A <see cref="T:System.IO.Stream"/> to where the printer settings should be saved.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPageSetup">
- <summary>
- <para>Displays a customized <b>Page Setup</b> dialog that reflects the application's current Look And Feel settings.
- </para>
- </summary>
- <returns><b>true</b> if a user clicks <b>OK</b>; <b>false</b> if a user clicks <b>Cancel</b>, otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreview">
- <summary>
- <para>Invokes the standard Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the standard Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool. The form is invoked using the specified look-and-feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreview(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the standard Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool. The form is invoked as a child of the specified parent window, using the specified look-and-feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the standard Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool. The form is invoked using the specified look-and-feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreviewDialog">
- <summary>
- <para>Invokes the standard Print Preview dialog showing the document that is created from a source (report or link) assigned to the PrintTool.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the standard Print Preview dialog showing the document that is created from a source (report or link) assigned to the PrintTool. The dialog is invoked using the specified look-and-feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreview">
- <summary>
- <para>Invokes the Ribbon Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Ribbon Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool. The form is invoked using the specified look-and-feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreview(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Ribbon Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool. The form is invoked as a child of the specified parent window, using the specified look-and-feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreviewDialog">
- <summary>
- <para>Invokes the Ribbon Print Preview dialog showing the document that is created from a source (report or link) assigned to the PrintTool.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Ribbon Print Preview dialog showing the document that is created from a source (report or link) assigned to the PrintTool. The dialog is invoked using the specified look-and-feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Ribbon Print Preview dialog showing the document that is created from a source (report or link) assigned to the PrintTool. The dialog is invoked as a child of the specified parent window, using the specified look-and-feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.DocumentViewer">
- <summary>
- <para>A control to publish (preview, print and export) documents in Windows Forms applications.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.DocumentViewer.#ctor">
- <summary>
- <para>Initializes a new instance of the DocumentViewer class with default settings.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.DocumentViewer.DocumentSource">
- <summary>
- <para>Specifies a document supplier for the DocumentViewer.
- </para>
- </summary>
- <value>A <see cref="T:System.Object"/> value.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.DocumentViewer.InitiateDocumentCreation">
- <summary>
- <para>Specifies whether to create a document automatically, or on a user request.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.DocumentViewer.PrintingSystem">
- <summary>
- <para>Specifies a Printing System assigned to the DocumentViewer.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> descendant.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.DocumentViewer.RequestDocumentCreation">
- <summary>
- <para>Specifies whether to create a document automatically, or on a user request.
- </para>
- </summary>
- <value><b>true</b> to create a document on a user request; otherwise <b>false</b>.
- </value>
- </member>
- <member name="T:DevExpress.XtraReports.UI.ReportPrintTool">
- <summary>
- <para>An instrument for report printing.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraReports.UI.ReportPrintTool.#ctor(DevExpress.XtraReports.IReport)">
- <summary>
- <para>Initializes a new instance of the ReportPrintTool class with the specified report.
- </para>
- </summary>
- <param name="report">
- An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface (usually, it is the <see cref="T:DevExpress.XtraReports.UI.XtraReport"/> class instance).
- </param>
- </member>
- <member name="P:DevExpress.XtraReports.UI.ReportPrintTool.AutoShowParametersPanel">
- <summary>
- <para>Specifies whether the <b>Parameters</b> panel is visible in the <b>Print Preview</b> window.
- </para>
- </summary>
- <value><b>true</b> to always show the <b>Parameters</b> UI; otherwise <b>false</b>.
- </value>
- </member>
- <member name="M:DevExpress.XtraReports.UI.ReportPrintTool.Dispose">
- <summary>
- <para>Disposes of the ReportPrintTool object.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraReports.UI.ReportPrintTool.Report">
- <summary>
- <para>Provides access to the settings of the report assigned to the ReportPrintTool.
- </para>
- </summary>
- <value>An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface (which is typically the <see cref="T:DevExpress.XtraReports.UI.XtraReport"/> class instance).
- </value>
- </member>
- <member name="M:DevExpress.XtraReports.UI.ReportPrintTool.ShowPageSetup">
- <summary>
- <para>Displays a customized <b>Page Setup</b> dialog that reflects the application's current Look And Feel settings.
- </para>
- </summary>
- <returns><b>true</b> if a user clicks <b>OK</b>; <b>false</b> if a user clicks <b>Cancel</b>, otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
- </returns>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase">
- <summary>
- <para>The base class for the print preview forms with a standard toolbar.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.#ctor">
- <summary>
- <para>Initializes a new instance of the PrintPreviewFormExBase class with default settings.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.PrintControl">
- <summary>
- <para>Gets the <b>Print Control</b> of the <b>Print Preview Form</b>.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> object which represents the <b>Print Control</b> of the form.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.PrintingSystem">
- <summary>
- <para>Gets or sets the Printing System used to create and print a document for this link.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> class descendant.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.SaveState">
- <summary>
- <para>Specifies whether the <b>Print Preview Form</b>'s size, position and zoom setting are saved to the Windows registry.
- </para>
- </summary>
- <value><b>true</b> if <b>Print Preview Form</b> settings are saved in the Windows registry; otherwise, <b>false</b>.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.SelectedPageIndex">
- <summary>
- <para>Gets or sets the index of the currently selected page in the form's <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
- </para>
- </summary>
- <value>An integer value which represents the index of the selected page.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.Show(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Displays the <b>Print Preview Form</b> using the specified Look-and-Feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the Look-and-Feel settings to apply to the <b>Print Preview Form</b>.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.Show">
- <summary>
- <para>Displays the <b>Print Preview Form</b>.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.Show(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the PrintPreviewFormExBase as a child of the specified parent window, using the specified look-and-feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.ShowDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the <b>Print Preview Form</b> form which is shown modally as a <i>child</i> of the specified <i>parent</i> window using the specified look and feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the <b>Preview Form</b>.
- </param>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value representing the return value of the dialog.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.ShowDialog">
- <summary>
- <para>Invokes the <b>Print Preview Form</b> form which is shown modally.
- </para>
- </summary>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value representing the return value of the dialog.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.ShowDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the <b>Print Preview Form</b> form which is shown modally as a <i>child</i> of the specified <i>parent</i> window.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
- </param>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value representing the return value of the dialog.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.ShowDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the <b>Print Preview Form</b> form which is shown modally using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the <b>Print Preview Form</b>.
- </param>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value representing the return value of the dialog.
- </returns>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.PrintBarManager">
- <summary>
- <para>As part of the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> control, provides the toolbar, status bar and menu elements in a Print Preview.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.#ctor">
- <summary>
- <para>Initializes a new instance of the PrintBarManager class with default settings.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the PrintBarManager class with the specified container.
- </para>
- </summary>
- <param name="container">
- An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ColorPopupControlContainer">
- <summary>
- <para>Gets or sets the popup control which is used to specify a color within the printing bar manager.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.ColorPopupControlContainer"/> object which represents the popup control used to select a color.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.GetBarItemByCommand(DevExpress.XtraPrinting.PrintingSystemCommand)">
- <summary>
- <para>Gets a bar item within the bar manager by its command.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command to be executed by the bar item to be found.
- </param>
- <returns>A <see cref="T:DevExpress.XtraBars.BarItem"/> object that is the bar item which executes the specified command.
- </returns>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.Images">
- <summary>
- <para>Gets the source of images that can be displayed within items.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.Utils.Images"/> object which provides images for bar items.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ImageStream">
- <summary>
- <para>Gets or sets a stream which contains the images used to display <b>Print Bar Manager</b> items.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object which represents the stream of images.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.Initialize(DevExpress.XtraPrinting.Control.PrintControl)">
- <summary>
- <para>Performs basic initialization of the created PrintBarManager object, and assigns the specified <b>Print Control</b> to it.
- </para>
- </summary>
- <param name="printControl">
- A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> object which specifies the print control to be assigned.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.LargeImages">
- <summary>
- <para>Overrides the <see cref="P:DevExpress.XtraBars.BarManager.LargeImages"/> property.
- </para>
- </summary>
- <value>A <see cref="T:System.Object"/> which provides large images for bar button items.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.MultiplePagesControlContainer">
- <summary>
- <para>Gets or sets the popup control which is used to specify the number of pages to preview within the printing bar manager.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.MultiplePagesControlContainer"/> object which represents the popup control used to select the number of pages to preview.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.PreviewBar">
- <summary>
- <para>Gets or sets the print preview bar controlled by this preview bar manager.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Bar"/> object which represents the print preview bar of this bar manager.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.PrintControl">
- <summary>
- <para>Gets or sets the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance to which the <b>Print Bar Manager</b> belongs.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance to which the <b>Print Bar Manager</b> belongs.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ScaleControlContainer">
- <summary>
- <para>Gets or sets the popup control which is used to specify the document scaling options.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.ScaleControlContainer"/> object which represents the popup control used to specify scaling options.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.UpdateCommands">
- <summary>
- <para>Updates print bar manager items according to the current visibility state of the corresponding Printing System commands.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ZoomItem">
- <summary>
- <para>Gets or sets the editor which is used to specify the zoom level within the printing bar manager.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.ZoomBarEditItem"/> object which represents the zoom editor.
- </value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx">
- <summary>
- <para>A print preview form with a standard toolbar.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx.#ctor">
- <summary>
- <para>Initializes a new instance of the PrintPreviewFormEx class with default settings.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx.PrintBarManager">
- <summary>
- <para>Gets the <see cref="T:DevExpress.XtraPrinting.Preview.PrintBarManager"/> of the <b>Print Preview Form</b>.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintBarManager"/> object which represents the <b>Print Bar Manager</b> of the <b>Print Preview Form</b>.
- </value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Links.LinkPrintTool">
- <summary>
- <para>An instrument to print documents created by links.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Links.LinkPrintTool.#ctor(DevExpress.XtraPrinting.LinkBase)">
- <summary>
- <para>Initializes a new instance of the LinkPrintTool class with the specified link.
- </para>
- </summary>
- <param name="link">
- A <see cref="T:DevExpress.XtraPrinting.LinkBase"/> descendant.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrinting.Control.BrickEventHandler">
- <summary>
- <para>Represents a method that will handle all brick events within the <b>XtraPrinting Library</b>.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.BrickEventHandler.Invoke(System.Object,DevExpress.XtraPrinting.Control.BrickEventArgs)">
- <summary>
- <para>A method that will handle all brick events within the <b>XtraPrinting Library</b>.
- </para>
- </summary>
- <param name="sender">
- The event source.
- </param>
- <param name="e">
- A <see cref="T:DevExpress.XtraPrinting.Control.BrickEventArgs"/> object that contains data related to the event.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrinting.Control.BrickEventArgs">
- <summary>
- <para>Provides data for all brick events within the <b>XtraPrinting Library</b>.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.BrickEventArgs.#ctor(DevExpress.XtraPrinting.Brick)">
- <summary>
- <para>Initializes a new instance of the BrickEventArgs class with the specified brick.
- </para>
- </summary>
- <param name="brick">
- A <see cref="T:DevExpress.XtraPrinting.Brick"/> value, which represents the event's brick. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.BrickEventArgsBase.Brick"/> property.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.BrickEventArgs.#ctor(System.EventArgs,DevExpress.XtraPrinting.Brick,DevExpress.XtraPrinting.Page,System.Drawing.Rectangle,System.Single,System.Single)">
- <summary>
- <para>Initializes a new instance of the BrickEventArgs class with the specified settings.
- </para>
- </summary>
- <param name="args">
- A <see cref="T:System.EventArgs"/> object.
- </param>
- <param name="brick">
- A <see cref="T:DevExpress.XtraPrinting.Brick"/> object.
- </param>
- <param name="page">
- A <see cref="T:DevExpress.XtraPrinting.Page"/> object.
- </param>
- <param name="brickScreenBounds">
- A <see cref="T:System.Drawing.Rectangle"/> structure.
- </param>
- <param name="x">
- A <see cref="T:System.Single"/> value.
- </param>
- <param name="y">
- A <see cref="T:System.Single"/> value.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.Args">
- <summary>
- <para>Gets actual event arguments.
- </para>
- </summary>
- <value>The actual event arguments.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.BrickScreenBounds">
- <summary>
- <para>Gets the custom editor that is shown when clicking a brick.
- </para>
- </summary>
- <value>A <see cref="T:System.Drawing.Rectangle"/> structure.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.Page">
- <summary>
- <para>Gets the page on which the brick associated with the event is located.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Page"/> object specifying the page on which the brick is located.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.X">
- <summary>
- <para>Gets the X-coordinate offset of the brick associated with the event.
- </para>
- </summary>
- <value>A float value specifying the brick's X-offset in three hundredths of an inch.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.Y">
- <summary>
- <para>Gets the Y-coordinate offset of the brick associated with the event.
- </para>
- </summary>
- <value>A float value specifying the brick's Y-offset in three hundredths of an inch.
- </value>
- </member>
- <member name="T:DevExpress.XtraPrinting.PrintableComponentLink">
- <summary>
- <para>A link to print components that implement the <see cref="T:DevExpress.XtraPrinting.IPrintable"/> interface.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the PrintableComponentLink class with the specified container.
- </para>
- </summary>
- <param name="container">
- An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface which specifies the owner container of a PrintableComponentLink class instance.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.#ctor">
- <summary>
- <para>Initializes a new instance of the PrintableComponentLink class with default settings.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Initializes a new instance of the PrintableComponentLink class with the specified printing system.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object which specifies the printing system used to draw the current link. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.Link.PrintingSystem"/> property.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
- <summary>
- <para>Indicates whether or not the specified Printing System command can be handled.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface that specifies the print control (most typically, it is a <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Generates a report using the specified Printing System.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
- <summary>
- <para>Handles the specified Printing System command.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
- </param>
- <param name="args">
- A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface (most typically, it is the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <param name="handled">
- <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintableComponentLink.ImageCollection">
- <summary>
- <para>Provides access to the link's collection of images.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintableComponentLink.Images">
- <summary>
- <para>A collection of images which can be added to the Page Headers and Footers.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintableComponentLink.ImageStream">
- <summary>
- <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.Print(System.String)">
- <summary>
- <para>Prints the current document to the specified printer.
- </para>
- </summary>
- <param name="printerName">
- A <see cref="T:System.String"/> value, specifying the printer name.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.PrintDlg">
- <summary>
- <para>Displays the standard <b>Print</b> dialog and prints the current document.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintableComponentLink.PrintingSystem">
- <summary>
- <para>Gets or sets the Printing System used to create and print a document for this link.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowPreview">
- <summary>
- <para>Invokes the Print Preview Form which shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form which shows the print preview of the document for this link using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Print Preview Form, which modally shows the print preview of the document for this link as a child of the specified parent window.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowPreviewDialog">
- <summary>
- <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link as a child of the specified parent window, using the specified look and feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrinting.XtraPageSettings">
- <summary>
- <para>Provides functionality to print reports.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.XtraPageSettings.#ctor(DevExpress.XtraPrinting.PrintingSystemBase)">
- <summary>
- <para>Initializes a new instance of the XtraPageSettings class with the specified printing system.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> object, which identifies the printing system to be used.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.XtraPageSettings.Assign(System.Drawing.Printing.PageSettings)">
- <summary>
- <para>Assigns the specified page settings.
- </para>
- </summary>
- <param name="pageSettings">
- A <see cref="T:System.Drawing.Printing.PageSettings"/> object providing the page settings.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.XtraPageSettings.Assign(System.Drawing.Printing.Margins,System.Drawing.Printing.PaperKind,System.String,System.Boolean)">
- <summary>
- <para>Assigns the page margins, paper kind, paper name and page orientation of a document, simultaneously.
- </para>
- </summary>
- <param name="margins">
- A <see cref="T:System.Drawing.Printing.Margins"/> object which specifies the margins of the document.
- </param>
- <param name="paperKind">
- A <see cref="T:System.Drawing.Printing.PaperKind"/> value which specifies one of the standard paper sizes.
- </param>
- <param name="paperName">
- A <see cref="T:System.String"/> value which specifies the name of the custom paper which is used in the printer that the document is going to be printed on.
- </param>
- <param name="landscape">
- <b>true</b> to print a page in landscape orientation; otherwise, <b>false</b>.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.XtraPageSettings.AssignDefaultPrinterSettings">
- <summary>
- <para>Assigns the default printer's settings to the <see cref="T:DevExpress.XtraPrinting.XtraPageSettings"/> object.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.XtraPageSettings.AssignDefaultPrinterSettings(DevExpress.XtraPrinting.PrinterSettingsUsing)">
- <summary>
- <para>Assigns the default printer settings to the current page settings according to the specified <see cref="T:DevExpress.XtraPrinting.PrinterSettingsUsing"/> value.
- </para>
- </summary>
- <param name="settingsUsing">
- A <see cref="T:DevExpress.XtraPrinting.PrinterSettingsUsing"/> object specifying which of the printer settings should be assigned.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.XtraPageSettings.AssignPrinterSettings(System.String,System.String,DevExpress.XtraPrinting.PrinterSettingsUsing)">
- <summary>
- <para>Assigns the specified printer's settings to the XtraPageSettings object.
- </para>
- </summary>
- <param name="printerName">
- A <see cref="T:System.String"/> value specifying the printer name. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.XtraPageSettingsBase.PrinterName"/> property.
- </param>
- <param name="paperName">
- A <see cref="T:System.String"/> value specifying the paper name. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.XtraPageSettingsBase.PaperName"/> property.
- </param>
- <param name="settingsUsing">
- A <see cref="T:DevExpress.XtraPrinting.PrinterSettingsUsing"/> object specifying which of the printer settings should be assigned.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrinting.XtraPageSettings.PageSettings">
- <summary>
- <para>Provides access to the current page settings.
- </para>
- </summary>
- <value>A <see cref="T:System.Drawing.Printing.PageSettings"/> object representing the current page settings.
- </value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Control.PrintControl">
- <summary>
- <para>As part of the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> control, provides a canvas on which document pages are drawn in a Print Preview.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.#ctor">
- <summary>
- <para>Initializes a new instance of the PrintControl class with default settings.
- </para>
- </summary>
- </member>
- <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickClick">
- <summary>
- <para>Occurs when the region of a brick within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> is clicked.
- </para>
- </summary>
- </member>
- <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickDoubleClick">
- <summary>
- <para>Occurs when a brick within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> is double-clicked.
- </para>
- </summary>
- </member>
- <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickDown">
- <summary>
- <para>Occurs when the mouse pointer is over the region specified by a brick within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> and the mouse button is pressed.
- </para>
- </summary>
- </member>
- <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickMouseDown">
- <summary>
- <para>Occurs when pressing the mouse button over a brick's region within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
- </para>
- </summary>
- </member>
- <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickMouseMove">
- <summary>
- <para>Occurs when moving the mouse over a brick's region within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
- </para>
- </summary>
- </member>
- <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickMouseUp">
- <summary>
- <para>Occurs when releasing the mouse button over a brick's region within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
- </para>
- </summary>
- </member>
- <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickMove">
- <summary>
- <para>Occurs when the mouse pointer moves over the region specified by a brick within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
- </para>
- </summary>
- </member>
- <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickUp">
- <summary>
- <para>Occurs when the mouse pointer is over the region specified by a brick within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> and the mouse button is released.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.CanExecCommand(DevExpress.XtraPrinting.PrintingSystemCommand)">
- <summary>
- <para>Checks whether or not the specified command can be executed.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value.
- </param>
- <returns><b>true</b> if the command can be executed; otherwise <b>false</b>.
- </returns>
- </member>
- <member name="E:DevExpress.XtraPrinting.Control.PrintControl.CommandChanged">
- <summary>
- <para>Occurs after the status of a printing system command has been changed.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.DockManager">
- <summary>
- <para>Provides access to the Print Control's dock manager.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Docking.DockManager"/> object, representing the dock manager.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.DocumentHasBookmarks">
- <summary>
- <para>Specifies whether or not bookmarks are specified for a document associated with the PrintControl.
- </para>
- </summary>
- <value><b>true</b> if the document contains bookmarks; otherwise <b>false</b>.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.ExecCommand(DevExpress.XtraPrinting.PrintingSystemCommand)">
- <summary>
- <para>Executes the printing system command without any parameters.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value representing the command to be executed.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.ExecCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[])">
- <summary>
- <para>Executes the specified printing system command and passes the specified parameters.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value representing the command to be executed.
- </param>
- <param name="args">
- A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the executing command.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.FindBrick(System.Drawing.Point)">
- <summary>
- <para>Finds a brick based on specific screen coordinates.
- </para>
- </summary>
- <param name="screenPoint">
- A screen coordinate point used to locate a brick.
- </param>
- <returns>A <see cref="T:DevExpress.XtraPrinting.Brick"/> class instance to which a specific point belongs.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.FindBrickBy(System.Drawing.Point,DevExpress.XtraPrinting.Page@,System.Drawing.RectangleF@)">
- <summary>
- <para>Finds a <see cref="T:DevExpress.XtraPrinting.Brick"/> instance that corresponds to the specified parameters.
- </para>
- </summary>
- <param name="screenPoint">
- A <see cref="T:System.Drawing.Point"/> structure.
- </param>
- <param name="page">
- A <see cref="T:DevExpress.XtraPrinting.Page"/> object.
- </param>
- <param name="brickBounds">
- A <see cref="T:System.Drawing.RectangleF"/> structure.
- </param>
- <returns>A <see cref="T:DevExpress.XtraPrinting.Brick"/> object.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.GetBrickScreenBounds(DevExpress.XtraPrinting.Brick,DevExpress.XtraPrinting.Page)">
- <summary>
- <para>Obtains the location and size of the specified brick on the screen.
- </para>
- </summary>
- <param name="brick">
- A <see cref="T:DevExpress.XtraPrinting.Brick"/> object representing the brick whose bounds should be determined.
- </param>
- <param name="page">
- A <see cref="T:DevExpress.XtraPrinting.Page"/> object representing the page containing the brick whose bounds should be determined.
- </param>
- <returns>A <see cref="T:System.Drawing.Rectangle"/> object representing brick bounds on the screen.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.InvalidateBrick(DevExpress.XtraPrinting.Brick)">
- <summary>
- <para>Redraws the region specified by a brick within a <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
- </para>
- </summary>
- <param name="brick">
- A <see cref="T:DevExpress.XtraPrinting.Brick"/> class instance whose visual representation needs to be redrawn.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.IsCommandEnabled(DevExpress.XtraPrinting.PrintingSystemCommand)">
- <summary>
- <para>Specifies whether or not the printing system command is enabled.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value.
- </param>
- <returns><b>true</b> if the command is enabled; otherwise <b>false</b>.
- </returns>
- </member>
- <member name="E:DevExpress.XtraPrinting.Control.PrintControl.PaintBookmarkArea">
- <summary>
- <para>Occurs after a selection border has been drawn around an element in Print Preview.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.PrintingSystem">
- <summary>
- <para>Specifies the Printing System that is used to create and print a document for the link associated with the PrintControl.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> class descendant.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.SetDocumentMapVisibility(System.Boolean)">
- <summary>
- <para>Sets the visibility of the <b>Document Map</b> which is available if the document, represented by the Print Control, contains at least one bookmark.
- </para>
- </summary>
- <param name="value">
- <b>true</b> to show the <b>Document Map</b>; otherwise, <b>false</b>.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.ShowBrick(DevExpress.XtraPrinting.Brick,DevExpress.XtraPrinting.Page)">
- <summary>
- <para>Moves the print control's focus to the specified brick which is printed on the specified page.
- </para>
- </summary>
- <param name="brick">
- A <see cref="T:DevExpress.XtraPrinting.Brick"/> object representing the brick to which focus is moved.
- </param>
- <param name="page">
- A <see cref="T:DevExpress.XtraPrinting.Page"/> object representing the page where the brick is printed. Note that if a brick is split across two or more pages, then only the part of the brick which is printed on the specified page will be focused.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrinting.PrintingSystem">
- <summary>
- <para>Implements the basic printing functionality of the XtraPrinting Library.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintingSystem.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance and adds it to the form's container.
- </para>
- </summary>
- <param name="container">
- An <b>IContainer</b> that contains a <b>XtraPrintingSystem</b> component, if any.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintingSystem.#ctor">
- <summary>
- <para>Initializes a new instance of the PrintingSystem class with default settings.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintingSystem.About">
- <summary>
- <para>Activates the <b>About</b> dialog.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintingSystem.Links">
- <summary>
- <para>Gets the collection of links, defined for the current <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
- </para>
- </summary>
- <value>The link collection of the current <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintingSystem.PageSettings">
- <summary>
- <para>Gets the current page settings.
- </para>
- </summary>
- <value>Current page settings.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintingSystem.PageSetup">
- <summary>
- <para>Displays the <b>PageSetup</b> dialog.
- </para>
- </summary>
- <returns><b>true</b>, if the "OK" button is clicked in the <b>PageSetup</b> dialog, <b>false</b>, if the "Cancel" button is clicked in the <b>PageSetup</b> dialog.
- </returns>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintingSystem.PreviewFormEx">
- <summary>
- <para>Gets the form used to display the document preview.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx"/> object which represents the current preview form.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintingSystem.PreviewRibbonFormEx">
- <summary>
- <para>Gets the Ribbon form used to display the document preview.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx"/> object which represents the current preview form.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintingSystem.Print">
- <summary>
- <para>Prints the current document.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintingSystem.Print(System.String)">
- <summary>
- <para>Prints the current document to the specified printer.
- </para>
- </summary>
- <param name="printerName">
- A <see cref="T:System.String"/> representing the name of the printer on which to print the document.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintingSystem.PrintDlg">
- <summary>
- <para>Displays the standard <b>Print</b> dialog and prints the current document.
- </para>
- </summary>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value containing the return value of the print dialog box.
- </returns>
- </member>
- <member name="P:DevExpress.XtraPrinting.PrintingSystem.Watermark">
- <summary>
- <para>Provides access to watermark settings of the printing system's document.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Drawing.Watermark"/> object containing watermark settings.
- </value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Link">
- <summary>
- <para>A printing link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the Link class with the specified container.
- </para>
- </summary>
- <param name="container">
- An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface which specifies the owner container of a Link class instance.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.#ctor">
- <summary>
- <para>Initializes a new instance of the Link class with default settings.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Initializes a new instance of the Link class with the specified printing system.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object which specifies the printing system used to draw the current link. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.Link.PrintingSystem"/> property.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
- <summary>
- <para>Indicates whether or not the specified Printing System command can be handled.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface that specifies the print control (most typically, it is a <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
- </returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Generates a report using the specified <b>PrintingSystem</b>.
- </para>
- </summary>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
- <summary>
- <para>Handles the specified Printing System command.
- </para>
- </summary>
- <param name="command">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
- </param>
- <param name="args">
- A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
- </param>
- <param name="printControl">
- An object implementing the <see cref="T:DevExpress.XtraPrinting.IPrintControl"/> interface (most typically, it is the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance).
- </param>
- <param name="handled">
- <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
- </param>
- </member>
- <member name="P:DevExpress.XtraPrinting.Link.ImageCollection">
- <summary>
- <para>Provides access to the link's collection of images.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Link.Images">
- <summary>
- <para>A collection of images which can be added to the Page Headers and Footers.
- </para>
- </summary>
- <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
- </value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Link.ImageStream">
- <summary>
- <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.Print(System.String)">
- <summary>
- <para>Prints the current document to the specified printer.
- </para>
- </summary>
- <param name="printerName">
- A <see cref="T:System.String"/> representing the name of the printer on which to print the document.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.PrintDlg">
- <summary>
- <para>Displays the standard <b>Print</b> dialog and prints the current document.
- </para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Link.PrintingSystem">
- <summary>
- <para>Gets or sets the Printing System used to create and print a document for this link.
- </para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
- </value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the <b>Print Preview Form</b> which shows the print preview of the document for this link using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Print Preview Form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.ShowPreview">
- <summary>
- <para>Invokes the <b>Print Preview Form</b> which shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the <b>Print Preview Form</b>, which modally shows the print preview of the document for this link as a <i>child</i> of the specified <i>parent</i> window.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.ShowPreviewDialog">
- <summary>
- <para>Invokes the <b>Print Preview Form</b> which modally shows the print preview of the document for this link.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the <b>Print Preview Form</b> which modally shows the print preview of the document for this link as a <i>child</i> of the specified <i>parent</i> window, using the specified look and feel settings.
- </para>
- </summary>
- <param name="owner">
- A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
- </param>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the <b>Preview Form</b>.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
- </para>
- </summary>
- <param name="lookAndFeel">
- A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
- </param>
- </member>
- <member name="T:DevExpress.XtraPrinting.ExportOptionsTool">
- <summary>
- <para>Enables editing the export options of a report before saving it to a third-party format.
- </para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.ExportOptionsTool.EditExportOptions(DevExpress.XtraPrinting.ExportOptionsBase,DevExpress.XtraPrinting.PrintingSystemBase)">
- <summary>
- <para>Invokes the <b>Export Options</b> dialog.
- </para>
- </summary>
- <param name="options">
- An <see cref="T:DevExpress.XtraPrinting.ExportOptionsTool"/> descendant that specifies the report export options.
- </param>
- <param name="ps">
- A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> descendant.
- </param>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value.
- </returns>
- </member>
- </members>
- </doc>
|