123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868 |
- <?xml version="1.0" encoding="utf-8"?>
- <doc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <assembly>
- <name>DevExpress.XtraPrinting.v20.1</name>
- </assembly>
- <members>
- <member name="N:DevExpress.XtraPrinting">
- <summary>
- <para>Contains classes that provide the basic functionality for the XtraPrinting library (bricks, pages, document).</para>
- </summary>
- </member>
- <member name="N:DevExpress.XtraPrinting.Control">
- <summary>
- <para>Contains classes that implement the PrintControl functionality.</para>
- </summary>
- </member>
- <member name="T:DevExpress.XtraPrinting.Control.AreaPaintEventArgs">
- <summary>
- <para>Provides data for the <see cref="E:DevExpress.XtraPrinting.Control.PrintControl.PaintMarkedBricksArea"/> event.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.AreaPaintEventArgs.Area">
- <summary>
- <para>Gets the area around the element being painted.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.RectangleF"/> structure.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.AreaPaintEventArgs.Graphics">
- <summary>
- <para>Gets the drawing surface of the element being painted.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.Graphics"/> object.</value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Control.BrickEventArgs">
- <summary>
- <para>Provides data for all brick events within the XtraPrinting Library.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.BrickEventArgs.#ctor(DevExpress.XtraPrinting.Brick)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Control.BrickEventArgs"/> class with the specified brick.</para>
- </summary>
- <param name="brick">A <see cref="T:DevExpress.XtraPrinting.Brick"/> value. 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 <see cref="T:DevExpress.XtraPrinting.Control.BrickEventArgs"/> class with the specified settings.</para>
- </summary>
- <param name="args">A <see cref="T:System.EventArgs"/> object. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.Control.BrickEventArgs.Args"/> property.</param>
- <param name="brick">A <see cref="T:DevExpress.XtraPrinting.Brick"/> object. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.BrickEventArgsBase.Brick"/> property.</param>
- <param name="page">A <see cref="T:DevExpress.XtraPrinting.Page"/> object. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.Control.BrickEventArgs.Page"/> property.</param>
- <param name="brickScreenBounds">A <see cref="T:System.Drawing.Rectangle"/> structure. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.Control.BrickEventArgs.BrickScreenBounds"/> property.</param>
- <param name="x">A <see cref="T:System.Single"/> value. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.Control.BrickEventArgs.X"/> property.</param>
- <param name="y">A <see cref="T:System.Single"/> value. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.Control.BrickEventArgs.Y"/> property.</param>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.Args">
- <summary>
- <para>Returns an object storing the event arguments.</para>
- </summary>
- <value>A <see cref="T:System.EventArgs"/> object, storing the event arguments.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.BrickScreenBounds">
- <summary>
- <para>Returns the rectangle displayed 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>Returns the document page containing the brick for which the corresponding event was fired.</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>Returns the horizontal mouse position within a brick.</para>
- </summary>
- <value>A <see cref="T:System.Single"/> value, specifying the mouse position's X-coordinate (in three hundredths of an inch).</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.Y">
- <summary>
- <para>Returns the vertical mouse position within a brick.</para>
- </summary>
- <value>A <see cref="T:System.Single"/> value, specifying the mouse position's Y-coordinate (in three hundredths of an inch).</value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Control.BrickEventHandler">
- <summary>
- <para>A method that will handle all brick events within the XtraPrinting Library.</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.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 <see cref="T:DevExpress.XtraPrinting.Control.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>true, if the command can be executed; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.CloseFindControl">
- <summary>
- <para>Hides the Find panel enabling text search in a document.</para>
- </summary>
- </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="M:DevExpress.XtraPrinting.Control.PrintControl.DisableExportModeValues(System.Object[])">
- <summary>
- <para>Removes the specified export modes from the list of export options available in Print Preview.</para>
- </summary>
- <param name="disableValues">An array of export modes to remove.</param>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.DockingViewStyle">
- <summary>
- <para>Specifies the View style for dock panels.</para>
- </summary>
- <value>An enumeration value that specifies the View style.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.DockManager">
- <summary>
- <para>Provides access to the <see cref="T:DevExpress.XtraBars.Docking.DockManager"/>, specifying the settings of dock panels in Print Preview.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Docking.DockManager"/> object.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.DocumentHasBookmarks">
- <summary>
- <para>Indicates whether or not a <see cref="T:DevExpress.XtraPrinting.Document"/> opened in Print Preview has any bookmarks.</para>
- </summary>
- <value>true, if the document has bookmarks assigned to its elements; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.DocumentMapVisible">
- <summary>
- <para>Indicates whether or not the Document Map is visible in Print Preview.</para>
- </summary>
- <value>true, if the Document Map is visible; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.EditingFieldsHighlighted">
- <summary>
- <para>Indicates whether the editing fields are highlighted in the document displayed in the Print Preview.</para>
- </summary>
- <value>true, if the document has the editing fields highlighted; otherwise, false.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.ExecCommand(DevExpress.XtraPrinting.PrintingSystemCommand)">
- <summary>
- <para>Executes the specified command without any parameters.</para>
- </summary>
- <param name="command">A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value, specifying the command to execute.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.ExecCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[])">
- <summary>
- <para>Executes the specified command with custom parameters.</para>
- </summary>
- <param name="command">A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value, specifying the command to execute.</param>
- <param name="args">A collection of <see cref="T:System.Object"/> values, specifying custom parameters to pass to the executed command.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.FindBrick(System.Drawing.Point)">
- <summary>
- <para>Returns a brick occupying the document area where a point with the specified coordinates is located.</para>
- </summary>
- <param name="screenPoint">A <see cref="T:System.Drawing.Point"/> structure, specifying the coordinates of a point corresponding to a brick's location.</param>
- <returns>A <see cref="T:DevExpress.XtraPrinting.Brick"/> object, corresponding to a brick located at the specified coordinates.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.FindBrickBy(System.Drawing.Point,DevExpress.XtraPrinting.Page@,System.Drawing.RectangleF@)">
- <summary>
- <para>Returns a brick corresponding to the specified location and size.</para>
- </summary>
- <param name="screenPoint">A <see cref="T:System.Drawing.Point"/> structure, specifying the coordinates of a point contained within the area occupied by the brick.</param>
- <param name="page">A <see cref="T:DevExpress.XtraPrinting.Page"/> object, specifying the page at which the brick is located.</param>
- <param name="brickBounds">A <see cref="T:System.Drawing.RectangleF"/> structure, specifying the brick's location and size.</param>
- <returns>A <see cref="T:DevExpress.XtraPrinting.Brick"/> object.</returns>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.FindPanelVisible">
- <summary>
- <para>Indicates whether or not the Find panel is visible in Print Preview.</para>
- </summary>
- <value>true, if the Find panel is visible; otherwise, false.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.GetBrickScreenBounds(DevExpress.XtraPrinting.Brick,DevExpress.XtraPrinting.Page)">
- <summary>
- <para>Returns the location and size of the specified brick.</para>
- </summary>
- <param name="brick">A <see cref="T:DevExpress.XtraPrinting.Brick"/> object, specifying the brick to be located.</param>
- <param name="page">A <see cref="T:DevExpress.XtraPrinting.Page"/> object, specifying the page at which the brick is located.</param>
- <returns>A <see cref="T:System.Drawing.Rectangle"/> structure, specifying the brick's location and size.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.GetDockPanel(DevExpress.XtraPrinting.Preview.PreviewDockPanelKind)">
- <summary>
- <para>Provides access to the Print Priview's dock panel.</para>
- </summary>
- <param name="panelKind">The <see cref="T:DevExpress.XtraPrinting.Preview.PreviewDockPanelKind"/> enumeration value specifying the requested dock panel.</param>
- <returns>The requested dock panel.</returns>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.HorizontalScrollBarVisibility">
- <summary>
- <para>Specifies the visibility of the horizontal scroll bar in Print Preview.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraEditors.ViewInfo.ScrollBarVisibility"/> enumeration value.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.InvalidateBrick(DevExpress.XtraPrinting.Brick)">
- <summary>
- <para>Redraws the specified brick in a document to apply any changes made to this brick.</para>
- </summary>
- <param name="brick">A <see cref="T:DevExpress.XtraPrinting.Brick"/> object that needs to be redrawn.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.IsCommandEnabled(DevExpress.XtraPrinting.PrintingSystemCommand)">
- <summary>
- <para>Returns a value indicating whether or not the specified command is enabled.</para>
- </summary>
- <param name="command">A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value.</param>
- <returns>true, if the command is enabled; otherwise, false.</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="E:DevExpress.XtraPrinting.Control.PrintControl.PaintMarkedBricksArea">
- <summary>
- <para>Occurs when the area of a marked brick is painted.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.PrintingSystem">
- <summary>
- <para>Specifies the Printing System that is used to create document pages for a link or report opened in Print Preview.</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>Specifies the visibility of the Document Map in Print Preview.</para>
- </summary>
- <param name="value">true, to display the Document Map; otherwise, false.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.SetThumbnailsVisibility(System.Boolean)">
- <summary>
- <para>Specifies the visibility of the Thumbnails panel in Print Preview.</para>
- </summary>
- <param name="value">true, to display the Thumbnails panel; otherwise, false.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.ShowBrick(DevExpress.XtraPrinting.Brick,DevExpress.XtraPrinting.Page)">
- <summary>
- <para>Navigates to the specified brick in a document opened in Print Preview.</para>
- </summary>
- <param name="brick">A <see cref="T:DevExpress.XtraPrinting.Brick"/> object, specifying the brick to navigate to.</param>
- <param name="page">A <see cref="T:DevExpress.XtraPrinting.Page"/> object, specifying the page at which the brick is located. When a brick occupies multiple pages, the focus will move to that part of the brick which is printed on the specified page.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.ShowBrickCenter(DevExpress.XtraPrinting.Brick,DevExpress.XtraPrinting.Page)">
- <summary>
- <para>Locates the specified brick and displays it in the center of the visible <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> area.</para>
- </summary>
- <param name="brick">A <see cref="T:DevExpress.XtraPrinting.Brick"/> object, specifying the brick to be located.</param>
- <param name="page">A <see cref="T:DevExpress.XtraPrinting.Page"/> object, specifying the document page at which the brick is located.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Control.PrintControl.ShowFindControl">
- <summary>
- <para>Displays the Find panel enabling text search in a document.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.ThumbnailsVisible">
- <summary>
- <para>Indicates whether or not the Thumbnails panel is visible in Print Preview.</para>
- </summary>
- <value>true, if the Thumbnails panel is visible; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.UseAsyncDocumentCreation">
- <summary>
- <para>Gets or sets whether the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> should create a report document asynchronously in a separate task.</para>
- </summary>
- <value>True or Default, to create a report document asynchronously in a separate task; otherwise, False.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Control.PrintControl.VerticalScrollBarVisibility">
- <summary>
- <para>Specifies the visibility of the vertical scroll bar in Print Preview.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraEditors.ViewInfo.ScrollBarVisibility"/> value.</value>
- </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 Export Options 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>
- <member name="M:DevExpress.XtraPrinting.ExportOptionsTool.EditExportOptions(DevExpress.XtraPrinting.ExportOptionsBase,DevExpress.XtraPrinting.PrintingSystemBase,System.Collections.Generic.IDictionary{System.Type,System.Object[]})">
- <summary>
- <para>Invokes the Export Options dialog.</para>
- </summary>
- <param name="options">An <see cref="T:DevExpress.XtraPrinting.ExportOptionsBase"/> descendant.</param>
- <param name="ps">A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> descendant.</param>
- <param name="disabledExportModes">A dictionary, listing the disabled export modes.</param>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.ExportOptionsTool.EditExportOptions(DevExpress.XtraPrinting.ExportOptionsBase,DevExpress.XtraPrinting.PrintingSystemBase,System.Collections.Generic.IDictionary{System.Type,System.Object[]},System.Windows.Forms.IWin32Window)">
- <summary>
- <para></para>
- </summary>
- <param name="options"></param>
- <param name="ps"></param>
- <param name="disabledExportModes"></param>
- <param name="owner"></param>
- <returns></returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.ExportOptionsTool.EditExportOptions(DevExpress.XtraPrinting.ExportOptionsBase,DevExpress.XtraPrinting.PrintingSystemBase,System.Windows.Forms.IWin32Window)">
- <summary>
- <para></para>
- </summary>
- <param name="options"></param>
- <param name="ps"></param>
- <param name="owner"></param>
- <returns></returns>
- </member>
- <member name="T:DevExpress.XtraPrinting.Link">
- <summary>
- <para>A printing link.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.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.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.Link"/> class instance.</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>true if the command can be handled; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Generates a report using the specified PrintingSystem.</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">true if the command has been handled by a link; otherwise, false.</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 DevExpress.Utils.ImageCollectionStreamer object.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.Print">
- <summary>
- <para>Prints the current document using the system default printer.</para>
- </summary>
- </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 Print 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">
- <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.Link.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 Print Preview Form.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.ShowPreview(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form that 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 Print Preview Form.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Link.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.Link.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.Link.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.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="N:DevExpress.XtraPrinting.Links">
- <summary>
- <para>Contains the <see cref="T:DevExpress.XtraPrinting.Links.LinkPrintTool"/> class that is used to print documents created using printing links.</para>
- </summary>
- </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 <see cref="T:DevExpress.XtraPrinting.Links.LinkPrintTool"/> class with the specified link.</para>
- </summary>
- <param name="link">A <see cref="T:DevExpress.XtraPrinting.LinkBase"/> descendant.</param>
- </member>
- <member name="N:DevExpress.XtraPrinting.Preview">
- <summary>
- <para>Contains classes that implement the print preview functionality in XtraPrinting library.</para>
- </summary>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.DefaultPrintDialogRunner">
- <summary>
- <para>Specifies a Print dialog to select a printer, specify the print options (number of copies, page range, and paper source) and print the document.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.DefaultPrintDialogRunner.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.DefaultPrintDialogRunner"/> class with default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.DefaultPrintDialogRunner.Run(System.Drawing.Printing.PrintDocument,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags)">
- <summary>
- <para>Invokes a customized Print dialog.</para>
- </summary>
- <param name="document">A <see cref="T:System.Drawing.Printing.PrintDocument"/>.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/>.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the dialog owner.</param>
- <param name="flags">A <see cref="T:DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags"/> enumeration value that enables editing of specific settings in the invoked dialog.</param>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value that specifies identifiers to indicate the return value of a dialog box.</returns>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.DocumentViewer">
- <summary>
- <para>The 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 <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> class with default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.DocumentViewer.DocumentSource">
- <summary>
- <para>Specifies a document supplier for the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/>.</para>
- </summary>
- <value>A <see cref="T:System.Object"/> value.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.DocumentViewer.InitiateDocumentCreation">
- <summary>
- <para>Re-creates the document.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.DocumentViewer.PrintingSystem">
- <summary>
- <para>Specifies a Printing System assigned to the <see cref="T:DevExpress.XtraPrinting.Preview.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>true to create a document on a user request; otherwise false.</value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.DocumentViewerBarManager">
- <summary>
- <para>A <see cref="T:DevExpress.XtraBars.BarManager"/> tailored to provide the toolbar, status bar and menu elements to the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/>.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.DocumentViewerBarManager.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewerBarManager"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.DocumentViewerBarManager.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewerBarManager"/> 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 <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewerBarManager"/> class instance.</param>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.DocumentViewerBarManager.DocumentViewer">
- <summary>
- <para>Gets or sets a <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> associated with the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewerBarManager"/>.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> object.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.DocumentViewerBarManager.PrintControl">
- <summary>
- <para>Gets or sets a <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> associated with the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewerBarManager"/>.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> object.</value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController">
- <summary>
- <para>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintRibbonController"/> tailored to provide a ribbon toolbar to the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/>.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController"/> 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 <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController"/> class instance.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController.#ctor(System.Object)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController"/> 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="P:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController.DocumentViewer">
- <summary>
- <para>Gets or sets a <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> associated with the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController"/>.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> object.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController.PrintControl">
- <summary>
- <para>Gets or sets a <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> associated with the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewerRibbonController"/>.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> object.</value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin">
- <summary>
- <para>Provides functionality to register custom editors to be used for editing the control content in Print Preview.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.EnsureStaticConstructor">
- <summary>
- <para>For internal use.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.Instance">
- <summary>
- <para>Specifies an instance of the <see cref="T:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin"/> class.</para>
- </summary>
- <value>The instance of the <see cref="T:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin"/> class.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.RegisterEditor(System.String,System.String,System.String,DevExpress.XtraEditors.Repository.RepositoryItem)">
- <summary>
- <para>Registers a custom editor to be used for changing control content in Print Preview.</para>
- </summary>
- <param name="name">The name of a custom editor.</param>
- <param name="displayName">The display name of a custom editor.</param>
- <param name="category">The name of a category to which an editor should be added.</param>
- <param name="repositoryItem">A <see cref="T:DevExpress.XtraEditors.Repository.RepositoryItem"/> descendant providing the required functionality.</param>
- <returns>true, if an editor has been successfully registered; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.RegisterImageCollectionEditor(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.Drawing.Image})">
- <summary>
- <para>Registers an image editor with a collection of predefined named images to be used for changing image content in Print Preview.</para>
- </summary>
- <param name="name">The name of the registered image collection editor.</param>
- <param name="displayName">The display name of the registered image collection editor.</param>
- <param name="images">The editor's image collection.</param>
- <returns>true, if the image list has been successfully registered; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.RegisterImageCollectionEditor(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.Drawing.Image},System.Boolean,System.Boolean)">
- <summary>
- <para>Registers an image editor with a filterable collection of predefined named images to be used for changing image content in Print Preview.</para>
- </summary>
- <param name="name">The name of the registered image collection editor.</param>
- <param name="displayName">The display name of the registered image collection editor.</param>
- <param name="images">The editor's image collection.</param>
- <param name="searchEnabled">true, if the editor allows end users to use incremental search in the image collection; otherwise, false.</param>
- <param name="sizeOptionsEnabled">true, if the editor allows end users to set up the image's size and alignment options; otherwise, false.</param>
- <returns>true, if the image list has been successfully registered; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.RegisterImageCollectionEditor(System.String,System.String,System.Collections.Generic.IEnumerable{System.Drawing.Image})">
- <summary>
- <para>Registers an image editor with a collection of predefined images to be used for changing image content in Print Preview.</para>
- </summary>
- <param name="name">The name of the registered image collection editor.</param>
- <param name="displayName">The display name of the registered image collection editor.</param>
- <param name="images">The editor's image collection.</param>
- <returns>true, if the image list has been successfully registered; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.RegisterImageCollectionEditor(System.String,System.String,System.Collections.Generic.IEnumerable{System.Drawing.Image},System.Boolean)">
- <summary>
- <para>Registers an image editor with a collection of predefined images to be used for changing image content in Print Preview.</para>
- </summary>
- <param name="name">The name of the registered image collection editor.</param>
- <param name="displayName">The display name of the registered image collection editor.</param>
- <param name="images">The editor's image collection.</param>
- <param name="sizeOptionsEnabled">true, if the editor allows end users to set up the image's size and alignment options; otherwise, false.</param>
- <returns>true, if the image list has been successfully registered; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.RegisterImageEditor(System.String,System.String,DevExpress.XtraPrinting.Preview.ImageEditorOptions)">
- <summary>
- <para>Registers a custom image editor that you can use to edit the <see cref="T:DevExpress.XtraReports.UI.XRPictureBox"/>'s content in Print Preview.</para>
- </summary>
- <param name="name">The registered image editor's unique name.</param>
- <param name="displayName">The registered image editor's display name.</param>
- <param name="options">An object that provides settings for the registered image editor.</param>
- <returns>true, if the image editor has been successfully registered; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.RegisterMaskEditor(System.String,System.String,System.String,DevExpress.XtraEditors.Mask.MaskType,System.String)">
- <summary>
- <para>Registers the standard editor with a custom mask to be used for changing control content in Print Preview.</para>
- </summary>
- <param name="name">The name of the editor being registered.</param>
- <param name="displayName">The display name of the editor being registered.</param>
- <param name="category">The name of a category to which the editor should be added.</param>
- <param name="maskType">A <see cref="T:DevExpress.XtraEditors.Mask.MaskType"/> enumeration value which specifies the mask type used.</param>
- <param name="mask">Specifies the editor's mask.</param>
- <returns>true, if an editor has been successfully registered; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.TryGetRepositoryItem(System.String,DevExpress.XtraEditors.Repository.RepositoryItem@)">
- <summary>
- <para>Attempts to obtain a repository item by the specified name.</para>
- </summary>
- <param name="name">The name of an item to be obtained.</param>
- <param name="value">A <see cref="T:DevExpress.XtraEditors.Repository.RepositoryItem"/> descendant with the specified name.</param>
- <returns>true, if a repository item has been obtained; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.EditingFieldExtensionsWin.UnregisterEditor(System.String)">
- <summary>
- <para>Unregisters the specified editor from being used for changing control content in Print Preview.</para>
- </summary>
- <param name="name">The name of an editor to be unregistered.</param>
- <returns>true, if an editor has been successfully unregistered; otherwise, false.</returns>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.ImageCollectionItem">
- <summary>
- <para>An object that provides an image and its caption.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.ImageCollectionItem.#ctor(System.Drawing.Image)">
- <summary>
- <para>Initializes a new instance of the <xref:DevExpress.XtraPrinting.Preview.ImageCollectionItem class with the specified image.</para>
- </summary>
- <param name="image">An image.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.ImageCollectionItem.#ctor(System.Drawing.Image,System.String)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.ImageCollectionItem"/> class with the specified image and its caption.</para>
- </summary>
- <param name="image">An image.</param>
- <param name="caption">The image's caption.</param>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.ImageCollectionItem.Caption">
- <summary>
- <para>The caption that the <see cref="T:DevExpress.XtraPrinting.Preview.ImageCollectionItem"/> object uses to present its <see cref="P:DevExpress.XtraPrinting.Preview.ImageCollectionItem.Image"/>.</para>
- </summary>
- <value>The <see cref="P:DevExpress.XtraPrinting.Preview.ImageCollectionItem.Image"/>'s caption.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.ImageCollectionItem.Image">
- <summary>
- <para>The image that the <see cref="T:DevExpress.XtraPrinting.Preview.ImageCollectionItem"/> object provides.</para>
- </summary>
- <value>The image that the ImageCollectionItem object provides.</value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.ImageEditorOptions">
- <summary>
- <para>Provides options for the image editor that you can use to edit the <see cref="T:DevExpress.XtraReports.UI.XRPictureBox"/> control's content in Print Preview.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.ImageEditorOptions.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.ImageEditorOptions"/> class with default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.ImageEditorOptions.AllowChangeSizeOptions">
- <summary>
- <para>Indicates whether an end user can change the image's size mode and location in the image editor.</para>
- </summary>
- <value>true, if the editor allows end users to change the image's size mode and location; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.ImageEditorOptions.AllowClear">
- <summary>
- <para>Indicates whether an end user can remove content from the image editor.</para>
- </summary>
- <value>true, if the editor allows end users to clear content; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.ImageEditorOptions.AllowDraw">
- <summary>
- <para>Indicates whether an end user can draw in the image editor.</para>
- </summary>
- <value>true, if the editor allows end users to draw; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.ImageEditorOptions.AllowLoadImage">
- <summary>
- <para>Indicates whether an end user can load an image to the image editor.</para>
- </summary>
- <value>true, if the editor allows end users to load images; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.ImageEditorOptions.AllowSearchPredefinedImages">
- <summary>
- <para>Indicates whether the image editor allows end users to use incremental search in the image collection.</para>
- </summary>
- <value>true, if the editor allows end users to use incremental search in the image collection; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.ImageEditorOptions.PredefinedImages">
- <summary>
- <para>A collection of images that an end user can load to the image editor in Print Preview.</para>
- </summary>
- <value>The image editor's image collection.</value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.PageSetupEditorForm">
- <summary>
- <para>A customized Page Setup dialog that reflects the application's current Look And Feel settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PageSetupEditorForm.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.PageSetupEditorForm"/> class with default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PageSetupEditorForm.IsMetric">
- <summary>
- <para>Specifies whether the editor values in the Page Setup dialog use the imperial or metric system of measurement.</para>
- </summary>
- <value>true if the editor values are calculated in millimeters; false if the editor values are calculated in inches.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PageSetupEditorForm.Landscape">
- <summary>
- <para>Gets the page orientation.</para>
- </summary>
- <value>true if the page orientation is landscape; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PageSetupEditorForm.MarginsF">
- <summary>
- <para>Gets the margins of a report page measured in three hundredths of an inch.</para>
- </summary>
- <value>The margins (measured in 1/300 of an inch) of a report page.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PageSetupEditorForm.MinMarginsF">
- <summary>
- <para>Gets the minimum size allowed for a report's margins.</para>
- </summary>
- <value>The margins (measured in 1/300 of an inch) of a report page.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PageSetupEditorForm.PaperSize">
- <summary>
- <para>Gets the current paper size.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.Printing.PaperSize"/> object.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PageSetupEditorForm.Setup(System.Drawing.Printing.PrinterSettings.PaperSizeCollection,System.Collections.Generic.IEnumerable{DevExpress.XtraPrinting.Preview.UnitInfo},System.Drawing.GraphicsUnit,System.Drawing.Printing.PaperKind,System.Drawing.Size,System.Boolean,DevExpress.XtraPrinting.Native.MarginsF,DevExpress.XtraPrinting.Native.MarginsF)">
- <summary>
- <para></para>
- </summary>
- <param name="paperSizes"></param>
- <param name="units"></param>
- <param name="unit"></param>
- <param name="paperKind"></param>
- <param name="pageSize"></param>
- <param name="landscape"></param>
- <param name="marginsF"></param>
- <param name="minMarginsF"></param>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.PreviewDockPanelKind">
- <summary>
- <para>Identifies the End-User Print Preview's dock panels.</para>
- </summary>
- </member>
- <member name="F:DevExpress.XtraPrinting.Preview.PreviewDockPanelKind.DocumentMap">
- <summary>
- <para>Identifies the Document Map dock panel.</para>
- </summary>
- </member>
- <member name="F:DevExpress.XtraPrinting.Preview.PreviewDockPanelKind.Parameters">
- <summary>
- <para>Identifies the Parameters dock panel.</para>
- </summary>
- </member>
- <member name="F:DevExpress.XtraPrinting.Preview.PreviewDockPanelKind.Thumbnails">
- <summary>
- <para>Identifies the Thumbnails dock panel.</para>
- </summary>
- </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 <see cref="T:DevExpress.XtraPrinting.Preview.PrintBarManager"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.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.AllowDefaultSvgImages">
- <summary>
- <para>Specifies whether to use bitmap or vector icons for the standard Document Preview toolbar.</para>
- </summary>
- <value>true, to use vector images; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ColorPopupControlContainer">
- <summary>
- <para>For internal use.</para>
- </summary>
- <value>A DevExpress.XtraPrinting.Preview.ColorPopupControlContainer object.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.GetBarItemByCommand(DevExpress.XtraPrinting.PrintingSystemCommand)">
- <summary>
- <para>Provides access to a bar item corresponding to the specified command.</para>
- </summary>
- <param name="command">A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value, specifying the command corresponding to the bar item in question.</param>
- <returns>A <see cref="T:DevExpress.XtraBars.BarItem"/> object, specifying the bar item corresponding to the specified command.</returns>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.Images">
- <summary>
- <para>Provides access to the collection of images displayed by bar items in Print Preview.</para>
- </summary>
- <value>A <see cref="T:DevExpress.Utils.Images"/> object, specifying the bar item images.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ImageStream">
- <summary>
- <para>For internal use. Specifies the stream containing images displayed by bar items.</para>
- </summary>
- <value>A DevExpress.Utils.ImageCollectionStreamer object, specifying the stream of bar item images.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.Initialize(DevExpress.XtraPrinting.Control.PrintControl)">
- <summary>
- <para>Performs basic initialization of the created <see cref="T:DevExpress.XtraPrinting.Preview.PrintBarManager"/> object and associates it with the specified <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.</para>
- </summary>
- <param name="printControl">A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> object, displaying a document in Print Preview.</param>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.LargeImages">
- <summary>
- <para>Overrides the <see cref="P:DevExpress.XtraBars.BarManager.LargeImages"/> property to hide it.</para>
- </summary>
- <value>A <see cref="T:System.Object"/> value.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.MultiplePagesControlContainer">
- <summary>
- <para>For internal use.</para>
- </summary>
- <value>A DevExpress.XtraPrinting.Preview.MultiplePagesControlContainer object.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.PreviewBar">
- <summary>
- <para>For internal use. Specifies the Print Preview bar controlled by this <see cref="T:DevExpress.XtraPrinting.Preview.PrintBarManager"/> instance.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Bar"/> object.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.PrintControl">
- <summary>
- <para>Specifies the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> associated with the current <see cref="T:DevExpress.XtraPrinting.Preview.PrintBarManager"/> instance.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> object.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ScaleControlContainer">
- <summary>
- <para>For internal use.</para>
- </summary>
- <value>A DevExpress.XtraPrinting.Preview.ScaleControlContainer object.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.UpdateCommands">
- <summary>
- <para>For internal use. Updates the bar items according to the current visibility state of the corresponding Printing System commands.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.UseDefaultSvgImages">
- <summary>
- <para>Use the <see cref="P:DevExpress.XtraPrinting.Preview.PrintBarManager.AllowDefaultSvgImages"/> property instead.</para>
- </summary>
- <value>true, to use vector images; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ZoomItem">
- <summary>
- <para>For internal use. Gets or sets the editor which is used to specify the zoom level within the printing bar manager.</para>
- </summary>
- <value>A DevExpress.XtraPrinting.Preview.ZoomBarEditItem object.</value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags">
- <summary>
- <para>Enables modifying options in the Print dialog that is provided by the <see cref="T:DevExpress.XtraPrinting.Preview.PrintDialogRunner"/>.</para>
- </summary>
- </member>
- <member name="F:DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags.AllowAllPages">
- <summary>
- <para>Indicates whether the All option button is enabled.</para>
- </summary>
- </member>
- <member name="F:DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags.AllowCurrentPage">
- <summary>
- <para>Indicates whether the Current page option button is enabled.</para>
- </summary>
- </member>
- <member name="F:DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags.AllowPrintToFile">
- <summary>
- <para>Indicates whether the Print to file check box is enabled.</para>
- </summary>
- </member>
- <member name="F:DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags.AllowSelection">
- <summary>
- <para>Indicates whether the Selection option button is enabled.</para>
- </summary>
- </member>
- <member name="F:DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags.AllowSomePages">
- <summary>
- <para>Indicates whether the Pages option button is enabled.</para>
- </summary>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.PrintDialogRunner">
- <summary>
- <para>Provides settings to an application's Print dialog.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintDialogRunner.Instance">
- <summary>
- <para>Assigns a default Print dialog.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.DefaultPrintDialogRunner"/>, or <see cref="T:DevExpress.XtraPrinting.Preview.SystemPrintDialogRunner"/>.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintDialogRunner.Run(System.Drawing.Printing.PrintDocument,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags)">
- <summary>
- <para>Invokes a specified Print dialog.</para>
- </summary>
- <param name="document">A <see cref="T:System.Drawing.Printing.PrintDocument"/>.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/>.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the dialog owner.</param>
- <param name="flags">A <see cref="T:DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags"/> enumeration value that enables editing of specific settings in the invoked dialog.</param>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value that specifies identifiers to indicate the return value of a dialog box.</returns>
- </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 <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx.PrintBarManager">
- <summary>
- <para>Gets the <see cref="T:DevExpress.XtraPrinting.Preview.PrintBarManager"/> that provides the toolbar, status bar and menu elements to Print Preview.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintBarManager"/> object.</value>
- </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 <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase"/> class with default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.PrintControl">
- <summary>
- <para>Gets the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> of the Print Preview Form.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> object.</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 Print Preview Form's size, position and zoom setting are saved to the Windows registry.</para>
- </summary>
- <value>true if Print Preview Form settings are saved in the Windows registry; otherwise, false.</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">
- <summary>
- <para>Displays the Print Preview Form.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.Show(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Displays the Print Preview Form 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 Print Preview Form.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.Show(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the <see cref="T:DevExpress.XtraPrinting.Preview.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">
- <summary>
- <para>Invokes the Print Preview Form 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(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form 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 Print Preview Form.</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(System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Invokes the Print Preview Form form which is shown modally 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>
- <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,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form form which is shown modally 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>
- <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.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 <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx.PrintRibbonController">
- <summary>
- <para>Gets the PrintRibbonController of the Print Preview form with a Ribbon.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintRibbonController"/> object which represents the Print Ribbon Controller of the Print Preview form with a Ribbon.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx.RibbonControl">
- <summary>
- <para>Gets the RibbonControl of the Print Preview form with a Ribbon.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> object which represents the Ribbon Control of the Print Preview form with a Ribbon.</value>
- </member>
- <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx.RibbonStatusBar">
- <summary>
- <para>Gets the RibbonStatusBar of the Print Preview form with a Ribbon.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonStatusBar"/> object which represents the Ribbon Status Bar 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 <see cref="T:DevExpress.XtraPrinting.Preview.PrintRibbonController"/> class with default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.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.#ctor(System.Object)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.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="P:DevExpress.XtraPrinting.Preview.PrintRibbonController.AllowDefaultSvgImages">
- <summary>
- <para>Specifies whether to use bitmap or vector icons for the ribbon Document Preview toolbar.</para>
- </summary>
- <value>true, to use vector images; otherwise, false.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.BeginInit">
- <summary>
- <para>Starts the <see cref="T:DevExpress.XtraPrinting.Preview.PrintRibbonController"/>'s initialization. Initialization occurs at runtime.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.EndInit">
- <summary>
- <para>Ends the <see cref="T:DevExpress.XtraPrinting.Preview.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 <see cref="T:DevExpress.XtraPrinting.Preview.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 <see cref="T:DevExpress.XtraPrinting.Preview.PrintRibbonController"/> instance.</para>
- </summary>
- <value>An object of the <see cref="T:System.Collections.Generic.IEnumerable`1"/> 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 Print Ribbon Controller belongs.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance to which the Print Ribbon Controller 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="P:DevExpress.XtraPrinting.Preview.PrintRibbonController.UseDefaultSvgImages">
- <summary>
- <para>Use the <see cref="P:DevExpress.XtraPrinting.Preview.PrintRibbonController.AllowDefaultSvgImages"/> property instead.</para>
- </summary>
- <value>true, to use vector images; otherwise, false.</value>
- </member>
- <member name="T:DevExpress.XtraPrinting.Preview.RibbonControllerBase">
- <summary>
- <para>The base 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 <see cref="T:DevExpress.XtraPrinting.Preview.RibbonControllerBase"/>'s initialization. Initialization occurs at runtime.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.RibbonControllerBase.EndInit">
- <summary>
- <para>Ends the <see cref="T:DevExpress.XtraPrinting.Preview.RibbonControllerBase"/>'s initialization.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.RibbonControllerBase.Initialize(DevExpress.XtraBars.Ribbon.RibbonControl,DevExpress.XtraBars.Ribbon.RibbonStatusBar)">
- <summary>
- <para>Provides Ribbon Controller initialization with the specified Ribbon Control and Status Bar.</para>
- </summary>
- <param name="ribbonControl">A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> object.</param>
- <param name="ribbonStatusBar">A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonStatusBar"/> object.</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 Ribbon Controller belongs.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> class instance to which the Ribbon Controller 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 Ribbon Controller belongs.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonStatusBar"/> class instance to which the Ribbon Controller belongs.</value>
- </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 <see cref="T:DevExpress.XtraPrinting.Preview.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.Preview.SystemPrintDialogRunner">
- <summary>
- <para>Enables running the standard <see cref="T:System.Windows.Forms.PrintDialog"/>.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.SystemPrintDialogRunner.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.Preview.SystemPrintDialogRunner"/> class with default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.Preview.SystemPrintDialogRunner.Run(System.Drawing.Printing.PrintDocument,DevExpress.LookAndFeel.UserLookAndFeel,System.Windows.Forms.IWin32Window,DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags)">
- <summary>
- <para>Invokes a standard system Print dialog.</para>
- </summary>
- <param name="document">A <see cref="T:System.Drawing.Printing.PrintDocument"/>.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/>.</param>
- <param name="owner">An object implementing the <see cref="T:System.Windows.Forms.IWin32Window"/> interface that is the dialog owner.</param>
- <param name="flags">A <see cref="T:DevExpress.XtraPrinting.Preview.PrintDialogAllowFlags"/> enumeration value that enables editing of specific settings in the invoked dialog.</param>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value that specifies identifiers to indicate the return value of a dialog box.</returns>
- </member>
- <member name="T:DevExpress.XtraPrinting.PrintableComponentLink">
- <summary>
- <para>A link to print and export components that implement the <see cref="T:DevExpress.XtraPrinting.IPrintable"/> interface.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.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.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.PrintableComponentLink"/> class instance.</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>true if the command can be handled; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Creates a document using the specified Printing System, so the document can be displayed or printed.</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">true if the command has been handled by a link; otherwise, false.</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 DevExpress.Utils.ImageCollectionStreamer object.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.Print">
- <summary>
- <para>Prints the current document using the system default printer.</para>
- </summary>
- </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 Print 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.ShowPreview(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form that 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 Print Preview Form.</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)">
- <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(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.PrintingSystem">
- <summary>
- <para>Implements the basic printing functionality of the XtraPrinting Library.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintingSystem.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class with default settings.</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 IContainer that contains a XtraPrintingSystem component, if any.</param>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintingSystem.About">
- <summary>
- <para>Activates the About 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 PageSetup dialog.</para>
- </summary>
- <returns>true, if the "OK" button is clicked in the PageSetup dialog, false, if the "Cancel" button is clicked in the PageSetup 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 Print 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.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 <see cref="T:DevExpress.XtraPrinting.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.PrintToolBase.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 <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.PrintTool"/>.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx"/> object.</value>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog">
- <summary>
- <para>Runs the Print dialog to select a printer, specify the print options (number of copies, page range, and paper source) and print the document.</para>
- </summary>
- <returns>true if the user clicks OK in the dialog box; false if the user clicks Cancel; otherwise null (Nothing in Visual Basic).</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Runs the Print 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 Print dialog.</param>
- <returns>true if the user clicks Print in the dialog box; false if the user clicks Cancel; otherwise null (Nothing in Visual Basic).</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog(System.Windows.Forms.IWin32Window)">
- <summary>
- <para>Runs the Print 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>true if the user clicks Print in the dialog box; false if the user clicks Cancel; otherwise null (Nothing in Visual Basic).</returns>
- </member>
- <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Runs the Print 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 Print dialog.</param>
- <returns>true if the user clicks Print in the dialog box; false if the user clicks Cancel; otherwise null (Nothing in Visual Basic).</returns>
- </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 Page Setup dialog that reflects the application's current Look And Feel settings.</para>
- </summary>
- <returns>true if a user clicks OK; false if a user clicks Cancel, otherwise null (Nothing 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 <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.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">
- <summary>
- <para>Invokes the standard Print Preview dialog showing the document that is created from a source (report or link) assigned to the <see cref="T:DevExpress.XtraPrinting.PrintTool"/>.</para>
- </summary>
- </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 <see cref="T:DevExpress.XtraPrinting.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(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 <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.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 <see cref="T:DevExpress.XtraPrinting.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.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 <see cref="T:DevExpress.XtraPrinting.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.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">true to print a page in landscape orientation; otherwise, false.</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.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 <see cref="T:DevExpress.XtraPrinting.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="N:DevExpress.XtraPrintingLinks">
- <summary>
- <para>Contains classes which provide printing and exporting functionality for standard Windows Forms controls.</para>
- </summary>
- </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">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.CompositeLink"/> class with default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.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 <see cref="T:DevExpress.XtraPrintingLinks.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 <see cref="T:DevExpress.XtraPrintingLinks.CompositeLink"/> class instance.</param>
- </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>true if the command can be handled; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Creates a document using the specified Printing System, so the document can be displayed or printed.</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">true if the command has been handled by a link; otherwise, false.</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 DevExpress.Utils.ImageCollectionStreamer object.</value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.Print">
- <summary>
- <para>Prints the current document using the system default printer.</para>
- </summary>
- </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 Print 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.ShowPreview(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form that 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 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)">
- <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 parent window for this dialog.</param>
- </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 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 Print Preview form.</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.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">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.DataGridLink"/> class with default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.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(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.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 <see cref="T:DevExpress.XtraPrintingLinks.DataGridLink"/> class instance.</param>
- </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>true if the command can be handled; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Creates a document using the specified Printing System, so the document can be displayed or printed.</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">true if the command has been handled by a link; otherwise, false.</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 DevExpress.Utils.ImageCollectionStreamer object.</value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.Print">
- <summary>
- <para>Prints the current document using the system default printer.</para>
- </summary>
- </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 Print 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.ShowPreview(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form that 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 Print Preview Form.</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.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(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.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.DataGridLinkBase">
- <summary>
- <para>The base class for the <see cref="T:DevExpress.XtraPrintingLinks.DataGridLink"/> class.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLinkBase.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.DataGridLinkBase"/> class.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLinkBase.#ctor(DevExpress.XtraPrinting.PrintingSystemBase)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.DataGridLinkBase"/> class with specified printing system.</para>
- </summary>
- <param name="ps">A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> object which specifies the printing system used to draw the current link. This value is assigned to the <see cref="P:DevExpress.XtraPrintingLinks.DataGridLink.PrintingSystem"/> property.</param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLinkBase.#ctor(System.ComponentModel.IContainer)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.DataGridLinkBase"/> class with 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 <see cref="T:DevExpress.XtraPrintingLinks.DataGridLinkBase"/> class instance.</param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLinkBase.AddSubreport(System.Drawing.PointF)">
- <summary>
- <para>Adds a subreport to the current report.</para>
- </summary>
- <param name="offset">A <see cref="T:System.Drawing.PointF"/> object which specifies the vertical offset of the subreport within the current report.</param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridLinkBase.AutoHeight">
- <summary>
- <para>Gets or sets a value indicating whether the height of the DataGrid to be printed should be calculated automatically.</para>
- </summary>
- <value>true to automatically calculate a data grid's height; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridLinkBase.DataGrid">
- <summary>
- <para>Gets or sets a <see cref="T:System.Windows.Forms.DataGrid"/> object to be printed via the current link.</para>
- </summary>
- <value>A <see cref="T:System.Windows.Forms.DataGrid"/> object to be printed.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridLinkBase.PrintableObjectType">
- <summary>
- <para>Gets the type of the object to be printed by the link.</para>
- </summary>
- <value>A <see cref="T:System.Type"/> class descendant representing the <see cref="T:System.Windows.Forms.DataGrid"/> type.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridLinkBase.PrintStyle">
- <summary>
- <para>Gets or sets the data grid's printing style.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrintingLinks.DataGridPrintStyle"/> object.</value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridLinkBase.SetDataObject(System.Object)">
- <summary>
- <para>Sets the object to be printed by this link.</para>
- </summary>
- <param name="data">A <see cref="T:System.Windows.Forms.DataGrid"/> object to be printed by this link.</param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridLinkBase.UseDataGridView">
- <summary>
- <para>Gets or sets a value indicating whether this <see cref="T:DevExpress.XtraPrintingLinks.DataGridLinkBase"/> class descendant should use the visual style of the DataGrid it prints.</para>
- </summary>
- <value>true to use the DatGrid style; otherwise, false.</value>
- </member>
- <member name="T:DevExpress.XtraPrintingLinks.DataGridPrintStyle">
- <summary>
- <para>Represents a print style used to print the <see cref="T:System.Windows.Forms.DataGrid"/> via the <see cref="T:DevExpress.XtraPrintingLinks.DataGridLink"/>.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridPrintStyle.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.DataGridPrintStyle"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridPrintStyle.#ctor(DevExpress.XtraPrintingLinks.DataGridPrintStyle)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.DataGridPrintStyle"/> class with specified source print style.</para>
- </summary>
- <param name="printStyle">A <see cref="T:DevExpress.XtraPrintingLinks.DataGridPrintStyle"/> object whose properties are to be copied.</param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridPrintStyle.#ctor(System.Windows.Forms.DataGrid)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.DataGridPrintStyle"/> class with specified data grid.</para>
- </summary>
- <param name="dataGrid">A <see cref="T:System.Windows.Forms.DataGrid"/> object whose print style settings are to be copied.</param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridPrintStyle.AlternatingBackColor">
- <summary>
- <para>Gets or sets the background color of odd-numbered rows of the grid.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.Color"/> that represents the alternating background color.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridPrintStyle.BackColor">
- <summary>
- <para>Gets or sets the background color of even-numbered rows of the grid.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.Color"/> that represents the color of rows in the grid.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridPrintStyle.CaptionBackColor">
- <summary>
- <para>Gets or sets the background color of the caption area.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.Color"/> that represents the caption's background color.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridPrintStyle.CaptionForeColor">
- <summary>
- <para>Gets or sets the foreground color of the caption area.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.Color"/> that represents the foreground color of the caption area.</value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridPrintStyle.CopyFrom(DevExpress.XtraPrintingLinks.DataGridPrintStyle)">
- <summary>
- <para>Duplicates the properties of the specified print style into the current <see cref="T:DevExpress.XtraPrintingLinks.DataGridPrintStyle"/> instance.</para>
- </summary>
- <param name="printStyle">A <see cref="T:DevExpress.XtraPrintingLinks.DataGridPrintStyle"/> object whose properties are to be copied.</param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridPrintStyle.CopyFrom(System.Windows.Forms.DataGrid)">
- <summary>
- <para>Duplicates the properties of the specified data grid's print style into the current <see cref="T:DevExpress.XtraPrintingLinks.DataGridPrintStyle"/> instance.</para>
- </summary>
- <param name="dataGrid">A <see cref="T:System.Windows.Forms.DataGrid"/> object whose print style settings are to be copied.</param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridPrintStyle.FlatMode">
- <summary>
- <para>Gets or sets a value indicating whether the grid is printed in flat mode.</para>
- </summary>
- <value>true if the grid is displayed flat; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridPrintStyle.ForeColor">
- <summary>
- <para>Gets or sets the foreground color (typically the color of the text) of the data grid.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.Color"/> that represents the foreground color.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridPrintStyle.GridLineColor">
- <summary>
- <para>Gets or sets the color of the grid lines.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.Color"/> that represents the color of the grid lines.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridPrintStyle.GridLineStyle">
- <summary>
- <para>Gets or sets the line style of the grid.</para>
- </summary>
- <value>One of the <see cref="T:System.Windows.Forms.DataGridLineStyle"/> values.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridPrintStyle.HeaderBackColor">
- <summary>
- <para>Gets or sets the background color of all row and column headers.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.Color"/> that represents the background color of row and column headers.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.DataGridPrintStyle.HeaderForeColor">
- <summary>
- <para>Gets or sets the foreground color of headers.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.Color"/> that represents the foreground color of the grid's column headers, including the column header text and the plus/minus glyphs.</value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.DataGridPrintStyle.ToString">
- <summary>
- <para>Returns the textual representation of the print style.</para>
- </summary>
- <returns>A <see cref="T:System.String"/> value which specifies the full name of the class.</returns>
- </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 <see cref="T:DevExpress.XtraPrintingLinks.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>true if the command can be handled; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Creates a document using the specified Printing System, so the document can be displayed or printed.</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">true if the command has been handled by a link; otherwise, false.</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 DevExpress.Utils.ImageCollectionStreamer object.</value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.Print">
- <summary>
- <para>Prints the current document using the system default printer.</para>
- </summary>
- </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 Print 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">
- <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.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(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form that 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 Print Preview Form.</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)">
- <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(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.XtraPrintingLinks.ListViewLinkBase">
- <summary>
- <para>The base class for the <see cref="T:DevExpress.XtraPrintingLinks.ListViewLink"/> class.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLinkBase.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.ListViewLinkBase"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLinkBase.AddSubreport(System.Drawing.PointF)">
- <summary>
- <para>Adds a subreport to the current report.</para>
- </summary>
- <param name="offset">A <see cref="T:System.Drawing.PointF"/> object which specifies the vertical offset of the subreport within the current report.</param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.ListViewLinkBase.ListView">
- <summary>
- <para>Gets or sets a <see cref="T:System.Windows.Forms.ListView"/> object to be printed via the current link.</para>
- </summary>
- <value>A <see cref="T:System.Windows.Forms.ListView"/> object to be printed.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.ListViewLinkBase.PrintableObjectType">
- <summary>
- <para>Gets the type of the object to be printed by the link.</para>
- </summary>
- <value>A <see cref="T:System.Type"/> class descendant representing the System.Windows.Forms.ListView type.</value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.ListViewLinkBase.SetDataObject(System.Object)">
- <summary>
- <para>Sets the object to be printed by this link.</para>
- </summary>
- <param name="data">A <see cref="T:System.Windows.Forms.ListView"/> object to be printed by this link.</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 <see cref="T:DevExpress.XtraPrintingLinks.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 <see cref="T:DevExpress.XtraPrintingLinks.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>true if the command can be handled; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Creates a document using the specified Printing System, so the document can be displayed or printed.</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">true if the command has been handled by a link; otherwise, false.</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 DevExpress.Utils.ImageCollectionStreamer object.</value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.Print">
- <summary>
- <para>Prints the current document using the system default printer.</para>
- </summary>
- </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 Print 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">
- <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.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(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form that 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 Print 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.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.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.RichTextBoxLinkBase">
- <summary>
- <para>The base class for the <see cref="T:DevExpress.XtraPrintingLinks.RichTextBoxLink"/> class.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase.#ctor(DevExpress.XtraPrinting.PrintingSystemBase)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase"/> class with the specified printing system.</para>
- </summary>
- <param name="ps">A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> object which specifies the printing system used to draw the current link. This value is assigned to the <see cref="P:DevExpress.XtraPrintingLinks.RichTextBoxLink.PrintingSystem"/> property.</param>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase.AddSubreport(System.Drawing.PointF)">
- <summary>
- <para>Adds a subreport to the current report.</para>
- </summary>
- <param name="offset">A <see cref="T:System.Drawing.PointF"/> object which specifies the vertical offset of the subreport within the current report.</param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase.CustomFormatSize">
- <summary>
- <para>Gets or sets the custom size with which a System.Windows.Forms.RichTextBox control should be printed.</para>
- </summary>
- <value>A <see cref="T:System.Drawing.Size"/> value.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase.InfiniteFormatHeight">
- <summary>
- <para>Gets or sets a value indicating whether the <see cref="T:System.Windows.Forms.RichTextBox"/> should be printed with unlimited height.</para>
- </summary>
- <value>true if a RichTextBox should be printed with unlimited height; otherwise, false.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase.PrintableObjectType">
- <summary>
- <para>Gets the type of the object to be printed by the link.</para>
- </summary>
- <value>A <see cref="T:System.Type"/> class descendant representing the <see cref="T:System.Windows.Forms.RichTextBox"/> type.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase.PrintFormat">
- <summary>
- <para>Gets or sets a value indicating what size a <see cref="T:System.Windows.Forms.RichTextBox"/> is printed.</para>
- </summary>
- <value>A <see cref="T:DevExpress.XtraPrintingLinks.RichTextPrintFormat"/> enumeration value. The default is ClientPageSize.</value>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase.RichTextBox">
- <summary>
- <para>Gets or sets a <see cref="T:System.Windows.Forms.RichTextBox"/> object to be printed via the current link.</para>
- </summary>
- <value>A <see cref="T:System.Windows.Forms.RichTextBox"/> object to be printed. The default is null.</value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase.SetDataObject(System.Object)">
- <summary>
- <para>Sets the object to be printed by this link.</para>
- </summary>
- <param name="data">A <see cref="T:System.Windows.Forms.RichTextBox"/> object to be printed by this link.</param>
- </member>
- <member name="T:DevExpress.XtraPrintingLinks.RichTextPrintFormat">
- <summary>
- <para>Specifies how the <see cref="T:System.Windows.Forms.RichTextBox"/> is printed via the <see cref="T:DevExpress.XtraPrintingLinks.RichTextBoxLink"/>.</para>
- </summary>
- </member>
- <member name="F:DevExpress.XtraPrintingLinks.RichTextPrintFormat.ClientPageSize">
- <summary>
- <para>A RichTextBox is printed using the page width specified by the <see cref="P:DevExpress.XtraPrinting.PrintingSystem.PageSettings"/> of a link's <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/>.</para>
- </summary>
- </member>
- <member name="F:DevExpress.XtraPrintingLinks.RichTextPrintFormat.Custom">
- <summary>
- <para>A RichTextBox is printed using the width specified via the <see cref="P:DevExpress.XtraPrintingLinks.RichTextBoxLinkBase.CustomFormatSize"/> property.</para>
- </summary>
- </member>
- <member name="F:DevExpress.XtraPrintingLinks.RichTextPrintFormat.RichTextBoxSize">
- <summary>
- <para>A RichTextBox is printed using the Width property value of the RichTextBox control.</para>
- </summary>
- </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 <see cref="T:DevExpress.XtraPrintingLinks.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 <see cref="T:DevExpress.XtraPrintingLinks.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>true if the command can be handled; otherwise, false.</returns>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
- <summary>
- <para>Creates a document using the specified Printing System, so the document can be displayed or printed.</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">true if the command has been handled by a link; otherwise, false.</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 DevExpress.Utils.ImageCollectionStreamer object.</value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.Print">
- <summary>
- <para>Prints the current document using the system default printer.</para>
- </summary>
- </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 Print 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.ShowPreview(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Invokes the Print Preview Form that 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 Print Preview Form.</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.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(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.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.TreeViewLinkBase">
- <summary>
- <para>The base class for the <see cref="T:DevExpress.XtraPrintingLinks.TreeViewLink"/> class.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLinkBase.#ctor">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.TreeViewLinkBase"/> class with the default settings.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLinkBase.#ctor(DevExpress.XtraPrinting.PrintingSystemBase)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraPrintingLinks.TreeViewLinkBase"/> class with specified printing system.</para>
- </summary>
- <param name="ps">A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> object which specifies the printing system used to draw the current link. This value is assigned to the <see cref="P:DevExpress.XtraPrintingLinks.TreeViewLink.PrintingSystem"/> property.</param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.TreeViewLinkBase.PrintableObjectType">
- <summary>
- <para>Gets the type of the object to be printed by the link.</para>
- </summary>
- <value>A <see cref="T:System.Type"/> class descendant representing the <see cref="T:System.Windows.Forms.TreeView"/> type.</value>
- </member>
- <member name="M:DevExpress.XtraPrintingLinks.TreeViewLinkBase.SetDataObject(System.Object)">
- <summary>
- <para>Sets the object to be printed by this link.</para>
- </summary>
- <param name="data">A <see cref="T:System.Windows.Forms.TreeView"/> object to be printed by this link.</param>
- </member>
- <member name="P:DevExpress.XtraPrintingLinks.TreeViewLinkBase.TreeView">
- <summary>
- <para>Gets or sets a <see cref="T:System.Windows.Forms.TreeView"/> object to be printed via the current link.</para>
- </summary>
- <value>A <see cref="T:System.Windows.Forms.TreeView"/> object to be printed.</value>
- </member>
- <member name="N:DevExpress.XtraReports.UI">
- <summary>
- <para>Contains classes that implement the basic functionality of XtraReports.</para>
- </summary>
- </member>
- <member name="T:DevExpress.XtraReports.UI.ReportPrintTool">
- <summary>
- <para>An instrument for publishing reports in WinForms applications.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraReports.UI.ReportPrintTool.#ctor(DevExpress.XtraReports.IReport,System.Boolean)">
- <summary>
- <para>Initializes a new instance of the <see cref="T:DevExpress.XtraReports.UI.ReportPrintTool"/> class with specified settings.</para>
- </summary>
- <param name="report"></param>
- <param name="useAsyncDocumentCreation"></param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.ReportPrintTool.ApproveParameters(System.Collections.Generic.IEnumerable{DevExpress.XtraReports.Parameters.Parameter},System.Boolean)">
- <summary>
- <para></para>
- </summary>
- <param name="parameters"></param>
- <param name="requestParameters"></param>
- <returns></returns>
- </member>
- <member name="P:DevExpress.XtraReports.UI.ReportPrintTool.AutoShowParametersPanel">
- <summary>
- <para>Specifies whether the Parameters panel is visible in the Print Preview window.</para>
- </summary>
- <value>true to always show the Parameters UI; otherwise false.</value>
- </member>
- <member name="P:DevExpress.XtraReports.UI.ReportPrintTool.Report">
- <summary>
- <para>Provides access to the settings of the report assigned to the <see cref="T:DevExpress.XtraReports.UI.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 Page Setup dialog that reflects the application's current Look And Feel settings.</para>
- </summary>
- <returns>true if a user clicks OK; false if a user clicks Cancel, otherwise null (Nothing in Visual Basic).</returns>
- </member>
- <member name="T:DevExpress.XtraReports.UI.XtraReportPreviewExtensions">
- <summary>
- <para>Provides extension methods that enable you to show a report in a WinForms Print Preview.</para>
- </summary>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.AssignPrintTool(DevExpress.XtraReports.IReport,DevExpress.XtraReports.UI.ReportPrintTool)">
- <summary>
- <para>For internal use.</para>
- </summary>
- <param name="report"></param>
- <param name="printTool"></param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.ClosePreview(DevExpress.XtraReports.IReport)">
- <summary>
- <para>Closes the standard Print Preview form in which the report document is shown.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.CloseRibbonPreview(DevExpress.XtraReports.IReport)">
- <summary>
- <para>Closes the ribbon-based Print Preview form in which the report document is shown.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.Print(DevExpress.XtraReports.IReport)">
- <summary>
- <para>Prints the report document.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.Print(DevExpress.XtraReports.IReport,System.String)">
- <summary>
- <para>Prints the report document on the specified printer.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- <param name="printerName">A <see cref="T:System.String"/> object that specifies the name of the printer on which the current document should be printed.</param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.PrintDialog(DevExpress.XtraReports.IReport)">
- <summary>
- <para>Runs the Print dialog to select a printer, specify the print options and print the document.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value.</returns>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.ShowPageSetupDialog(DevExpress.XtraReports.IReport)">
- <summary>
- <para>Displays the Page Setup dialog that allows users to customize page settings.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value.</returns>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.ShowPreview(DevExpress.XtraReports.IReport)">
- <summary>
- <para>Opens the report document in the standard Print Preview form.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.ShowPreview(DevExpress.XtraReports.IReport,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Opens the report document in the standard Print Preview form with the specified look and feel settings.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to Print Preview.</param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.ShowPreviewDialog(DevExpress.XtraReports.IReport)">
- <summary>
- <para>Opens the report document in the standard Print Preview form modally.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.ShowPreviewDialog(DevExpress.XtraReports.IReport,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Opens the report document in the standard Print Preview form modally with the specified look and feel settings.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to Print Preview.</param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.ShowRibbonPreview(DevExpress.XtraReports.IReport)">
- <summary>
- <para>Opens the report document in the ribbon-based Print Preview form.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.ShowRibbonPreview(DevExpress.XtraReports.IReport,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Opens the report document in the ribbon-based Print Preview form with the specified look and feel settings.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to Print Preview.</param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.ShowRibbonPreviewDialog(DevExpress.XtraReports.IReport)">
- <summary>
- <para>Opens the report document in the ribbon-based Print Preview form modally.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- </member>
- <member name="M:DevExpress.XtraReports.UI.XtraReportPreviewExtensions.ShowRibbonPreviewDialog(DevExpress.XtraReports.IReport,DevExpress.LookAndFeel.UserLookAndFeel)">
- <summary>
- <para>Opens the report document in the ribbon-based Print Preview form modally with the specified look and feel settings.</para>
- </summary>
- <param name="report">An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface.</param>
- <param name="lookAndFeel">A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to Print Preview.</param>
- </member>
- </members>
- </doc>
|