3d394738dd81d6af4f75ac21f57d367d214fa6f9.svn-base 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>DevExpress.XtraPrinting.v14.1</name>
  5. </assembly>
  6. <members>
  7. <member name="T:DevExpress.XtraPrinting.Preview.RibbonControllerBase">
  8. <summary>
  9. <para>Represents the base class for Ribbon Controller classes that embed their specific functionality into the existing <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> object.
  10. </para>
  11. </summary>
  12. </member>
  13. <member name="M:DevExpress.XtraPrinting.Preview.RibbonControllerBase.BeginInit">
  14. <summary>
  15. <para>Starts the RibbonControllerBase's initialization. Initialization occurs at runtime.
  16. </para>
  17. </summary>
  18. </member>
  19. <member name="M:DevExpress.XtraPrinting.Preview.RibbonControllerBase.EndInit">
  20. <summary>
  21. <para>Ends the RibbonControllerBase's initialization.
  22. </para>
  23. </summary>
  24. </member>
  25. <member name="M:DevExpress.XtraPrinting.Preview.RibbonControllerBase.Initialize(DevExpress.XtraBars.Ribbon.RibbonControl,DevExpress.XtraBars.Ribbon.RibbonStatusBar)">
  26. <summary>
  27. <para>Performs basic initialization of the created <b>Ribbon Controller</b>, and assigns the specified <b>Ribbon Control</b> and <b>Ribbon Status Bar</b> to it.
  28. </para>
  29. </summary>
  30. <param name="ribbonControl">
  31. A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> object, specifying the Ribbon Control to be assigned to the <see cref="P:DevExpress.XtraPrinting.Preview.RibbonControllerBase.RibbonControl"/> property.
  32. </param>
  33. <param name="ribbonStatusBar">
  34. A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonStatusBar"/> object, specifying the Ribbon status bar to be assigned to the <see cref="P:DevExpress.XtraPrinting.Preview.RibbonControllerBase.RibbonStatusBar"/> property.
  35. </param>
  36. </member>
  37. <member name="P:DevExpress.XtraPrinting.Preview.RibbonControllerBase.RibbonControl">
  38. <summary>
  39. <para>Gets or sets the <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> class instance to which the <b>Ribbon Controller</b> belongs.
  40. </para>
  41. </summary>
  42. <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> class instance to which the <b>Ribbon Controller</b> belongs.
  43. </value>
  44. </member>
  45. <member name="P:DevExpress.XtraPrinting.Preview.RibbonControllerBase.RibbonStatusBar">
  46. <summary>
  47. <para>Gets or sets the <see cref="T:DevExpress.XtraBars.Ribbon.RibbonStatusBar"/> class instance to which the <b>Ribbon Controller</b> belongs.
  48. </para>
  49. </summary>
  50. <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonStatusBar"/> class instance to which the <b>Ribbon Controller</b> belongs.
  51. </value>
  52. </member>
  53. <member name="T:DevExpress.XtraPrintingLinks.DataGridLink">
  54. <summary>
  55. <para>A link to print the <see cref="T:System.Windows.Forms.DataGrid"/> control.
  56. </para>
  57. </summary>
  58. </member>
  59. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.#ctor(System.ComponentModel.IContainer)">
  60. <summary>
  61. <para>Initializes a new instance of the DataGridLink class with the specified container.
  62. </para>
  63. </summary>
  64. <param name="container">
  65. An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface which specifies the owner container of a DataGridLink class instance.
  66. </param>
  67. </member>
  68. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
  69. <summary>
  70. <para>Initializes a new instance of the DataGridLink class with the specified printing system.
  71. </para>
  72. </summary>
  73. <param name="ps">
  74. 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.
  75. </param>
  76. </member>
  77. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.#ctor">
  78. <summary>
  79. <para>Initializes a new instance of the DataGridLink class with default settings.
  80. </para>
  81. </summary>
  82. </member>
  83. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
  84. <summary>
  85. <para>Indicates whether or not the specified Printing System command can be handled.
  86. </para>
  87. </summary>
  88. <param name="command">
  89. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
  90. </param>
  91. <param name="printControl">
  92. 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).
  93. </param>
  94. <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
  95. </returns>
  96. </member>
  97. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
  98. <summary>
  99. <para>Generates a report using the specified Printing System.
  100. </para>
  101. </summary>
  102. <param name="ps">
  103. A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
  104. </param>
  105. </member>
  106. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
  107. <summary>
  108. <para>Handles the specified Printing System command.
  109. </para>
  110. </summary>
  111. <param name="command">
  112. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
  113. </param>
  114. <param name="args">
  115. A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
  116. </param>
  117. <param name="printControl">
  118. 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).
  119. </param>
  120. <param name="handled">
  121. <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
  122. </param>
  123. </member>
  124. <member name="P:DevExpress.XtraPrintingLinks.DataGridLink.ImageCollection">
  125. <summary>
  126. <para>Provides access to the link's collection of images.
  127. </para>
  128. </summary>
  129. <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
  130. </value>
  131. </member>
  132. <member name="P:DevExpress.XtraPrintingLinks.DataGridLink.Images">
  133. <summary>
  134. <para>A collection of images which can be added to the page's headers and footers.
  135. </para>
  136. </summary>
  137. <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
  138. </value>
  139. </member>
  140. <member name="P:DevExpress.XtraPrintingLinks.DataGridLink.ImageStream">
  141. <summary>
  142. <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
  143. </para>
  144. </summary>
  145. <value>An <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
  146. </value>
  147. </member>
  148. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.Print(System.String)">
  149. <summary>
  150. <para>Prints the current document to the specified printer.
  151. </para>
  152. </summary>
  153. <param name="printerName">
  154. A <see cref="T:System.String"/> value, specifying the printer name.
  155. </param>
  156. </member>
  157. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.PrintDlg">
  158. <summary>
  159. <para>Displays the standard <b>Print</b> dialog and prints the current document.
  160. </para>
  161. </summary>
  162. </member>
  163. <member name="P:DevExpress.XtraPrintingLinks.DataGridLink.PrintingSystem">
  164. <summary>
  165. <para>Gets or sets the Printing System used to create and print a document for this link.
  166. </para>
  167. </summary>
  168. <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
  169. </value>
  170. </member>
  171. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowPreview">
  172. <summary>
  173. <para>Invokes the Print Preview Form which shows the print preview of the document for this link.
  174. </para>
  175. </summary>
  176. </member>
  177. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  178. <summary>
  179. <para>Invokes the Print Preview Form which shows the print preview of the document for this link using the specified look and feel settings.
  180. </para>
  181. </summary>
  182. <param name="lookAndFeel">
  183. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
  184. </param>
  185. </member>
  186. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  187. <summary>
  188. <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.
  189. </para>
  190. </summary>
  191. <param name="owner">
  192. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
  193. </param>
  194. <param name="lookAndFeel">
  195. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
  196. </param>
  197. </member>
  198. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
  199. <summary>
  200. <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.
  201. </para>
  202. </summary>
  203. <param name="owner">
  204. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
  205. </param>
  206. </member>
  207. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowPreviewDialog">
  208. <summary>
  209. <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link.
  210. </para>
  211. </summary>
  212. </member>
  213. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  214. <summary>
  215. <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  216. </para>
  217. </summary>
  218. <param name="lookAndFeel">
  219. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  220. </param>
  221. </member>
  222. <member name="M:DevExpress.XtraPrintingLinks.DataGridLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
  223. <summary>
  224. <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  225. </para>
  226. </summary>
  227. <param name="lookAndFeel">
  228. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  229. </param>
  230. </member>
  231. <member name="T:DevExpress.XtraPrintingLinks.RichTextBoxLink">
  232. <summary>
  233. <para>A link to print the <see cref="T:System.Windows.Forms.RichTextBox"/> control.
  234. </para>
  235. </summary>
  236. </member>
  237. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.#ctor">
  238. <summary>
  239. <para>Initializes a new instance of the RichTextBoxLink class with default settings.
  240. </para>
  241. </summary>
  242. </member>
  243. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
  244. <summary>
  245. <para>Initializes a new instance of the RichTextBoxLink class with the specified printing system.
  246. </para>
  247. </summary>
  248. <param name="ps">
  249. 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.
  250. </param>
  251. </member>
  252. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
  253. <summary>
  254. <para>Indicates whether or not the specified Printing System command can be handled.
  255. </para>
  256. </summary>
  257. <param name="command">
  258. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
  259. </param>
  260. <param name="printControl">
  261. 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).
  262. </param>
  263. <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
  264. </returns>
  265. </member>
  266. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
  267. <summary>
  268. <para>Generates a report using the specified Printing System.
  269. </para>
  270. </summary>
  271. <param name="ps">
  272. A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
  273. </param>
  274. </member>
  275. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
  276. <summary>
  277. <para>Handles the specified Printing System command.
  278. </para>
  279. </summary>
  280. <param name="command">
  281. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
  282. </param>
  283. <param name="args">
  284. A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
  285. </param>
  286. <param name="printControl">
  287. 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).
  288. </param>
  289. <param name="handled">
  290. <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
  291. </param>
  292. </member>
  293. <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLink.ImageCollection">
  294. <summary>
  295. <para>Provides access to the link's collection of images.
  296. </para>
  297. </summary>
  298. <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
  299. </value>
  300. </member>
  301. <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLink.Images">
  302. <summary>
  303. <para>A collection of images which can be added to the Page Headers and Footers.
  304. </para>
  305. </summary>
  306. <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
  307. </value>
  308. </member>
  309. <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLink.ImageStream">
  310. <summary>
  311. <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
  312. </para>
  313. </summary>
  314. <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
  315. </value>
  316. </member>
  317. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.Print(System.String)">
  318. <summary>
  319. <para>Prints the current document to the specified printer.
  320. </para>
  321. </summary>
  322. <param name="printerName">
  323. A <see cref="T:System.String"/> value, specifying the printer name.
  324. </param>
  325. </member>
  326. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.PrintDlg">
  327. <summary>
  328. <para>Displays the standard <b>Print</b> dialog and prints the current document.
  329. </para>
  330. </summary>
  331. </member>
  332. <member name="P:DevExpress.XtraPrintingLinks.RichTextBoxLink.PrintingSystem">
  333. <summary>
  334. <para>Gets or sets the Printing System used to create and print a document for this link.
  335. </para>
  336. </summary>
  337. <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
  338. </value>
  339. </member>
  340. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  341. <summary>
  342. <para>Invokes the Print Preview Form which shows the print preview of the document for this link using the specified look and feel settings.
  343. </para>
  344. </summary>
  345. <param name="lookAndFeel">
  346. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
  347. </param>
  348. </member>
  349. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowPreview">
  350. <summary>
  351. <para>Invokes the Print Preview Form which shows the print preview of the document for this link.
  352. </para>
  353. </summary>
  354. </member>
  355. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
  356. <summary>
  357. <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.
  358. </para>
  359. </summary>
  360. <param name="owner">
  361. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
  362. </param>
  363. </member>
  364. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  365. <summary>
  366. <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.
  367. </para>
  368. </summary>
  369. <param name="owner">
  370. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
  371. </param>
  372. <param name="lookAndFeel">
  373. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
  374. </param>
  375. </member>
  376. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowPreviewDialog">
  377. <summary>
  378. <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link.
  379. </para>
  380. </summary>
  381. </member>
  382. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  383. <summary>
  384. <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  385. </para>
  386. </summary>
  387. <param name="lookAndFeel">
  388. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  389. </param>
  390. </member>
  391. <member name="M:DevExpress.XtraPrintingLinks.RichTextBoxLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
  392. <summary>
  393. <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  394. </para>
  395. </summary>
  396. <param name="lookAndFeel">
  397. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  398. </param>
  399. </member>
  400. <member name="T:DevExpress.XtraPrintingLinks.CompositeLink">
  401. <summary>
  402. <para>A composite link that can be used to combine several printing links together into a composite document.
  403. </para>
  404. </summary>
  405. </member>
  406. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
  407. <summary>
  408. <para>Initializes a new instance of the CompositeLink class with the specified printing system.
  409. </para>
  410. </summary>
  411. <param name="ps">
  412. 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.
  413. </param>
  414. </member>
  415. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.#ctor(System.ComponentModel.IContainer)">
  416. <summary>
  417. <para>Initializes a new instance of the CompositeLink class with the specified container.
  418. </para>
  419. </summary>
  420. <param name="container">
  421. An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface which specifies the owner container of a CompositeLink class instance.
  422. </param>
  423. </member>
  424. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.#ctor">
  425. <summary>
  426. <para>Initializes a new instance of the CompositeLink class with default settings.
  427. </para>
  428. </summary>
  429. </member>
  430. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
  431. <summary>
  432. <para>Indicates whether or not the specified Printing System command can be handled.
  433. </para>
  434. </summary>
  435. <param name="command">
  436. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
  437. </param>
  438. <param name="printControl">
  439. 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).
  440. </param>
  441. <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
  442. </returns>
  443. </member>
  444. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
  445. <summary>
  446. <para>Generates a report using the specified Printing System.
  447. </para>
  448. </summary>
  449. <param name="ps">
  450. A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the Printing System of the link.
  451. </param>
  452. </member>
  453. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
  454. <summary>
  455. <para>Handles the specified Printing System command.
  456. </para>
  457. </summary>
  458. <param name="command">
  459. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
  460. </param>
  461. <param name="args">
  462. A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
  463. </param>
  464. <param name="printControl">
  465. 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).
  466. </param>
  467. <param name="handled">
  468. <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
  469. </param>
  470. </member>
  471. <member name="P:DevExpress.XtraPrintingLinks.CompositeLink.ImageCollection">
  472. <summary>
  473. <para>Provides access to the link's collection of images.
  474. </para>
  475. </summary>
  476. <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
  477. </value>
  478. </member>
  479. <member name="P:DevExpress.XtraPrintingLinks.CompositeLink.Images">
  480. <summary>
  481. <para>A collection of images which can be added to the Page Headers and Footers.
  482. </para>
  483. </summary>
  484. <value>An <see cref="T:DevExpress.Utils.Images"/> object.
  485. </value>
  486. </member>
  487. <member name="P:DevExpress.XtraPrintingLinks.CompositeLink.ImageStream">
  488. <summary>
  489. <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
  490. </para>
  491. </summary>
  492. <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
  493. </value>
  494. </member>
  495. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.Print(System.String)">
  496. <summary>
  497. <para>Prints the current document to the specified printer.
  498. </para>
  499. </summary>
  500. <param name="printerName">
  501. A <see cref="T:System.String"/> value, specifying the printer name.
  502. </param>
  503. </member>
  504. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.PrintDlg">
  505. <summary>
  506. <para>Displays the standard <b>Print</b> dialog and prints the current document.
  507. </para>
  508. </summary>
  509. </member>
  510. <member name="P:DevExpress.XtraPrintingLinks.CompositeLink.PrintingSystem">
  511. <summary>
  512. <para>Gets or sets the Printing System used to create and print a document for this link.
  513. </para>
  514. </summary>
  515. <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
  516. </value>
  517. </member>
  518. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowPreview">
  519. <summary>
  520. <para>Invokes the Print Preview form with the document created from this link.
  521. </para>
  522. </summary>
  523. </member>
  524. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  525. <summary>
  526. <para>Invokes the Print Preview form with the document created from this link.
  527. </para>
  528. </summary>
  529. <param name="lookAndFeel">
  530. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Print Preview form.
  531. </param>
  532. </member>
  533. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowPreviewDialog">
  534. <summary>
  535. <para>Invokes the modal Print Preview form with the document created from this link.
  536. </para>
  537. </summary>
  538. </member>
  539. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  540. <summary>
  541. <para>Invokes the modal Print Preview form with the document created from this link.
  542. </para>
  543. </summary>
  544. <param name="owner">
  545. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
  546. </param>
  547. <param name="lookAndFeel">
  548. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Print Preview form.
  549. </param>
  550. </member>
  551. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
  552. <summary>
  553. <para>Invokes the modal Print Preview form with the document created from this link.
  554. </para>
  555. </summary>
  556. <param name="owner">
  557. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
  558. </param>
  559. </member>
  560. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  561. <summary>
  562. <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  563. </para>
  564. </summary>
  565. <param name="lookAndFeel">
  566. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  567. </param>
  568. </member>
  569. <member name="M:DevExpress.XtraPrintingLinks.CompositeLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
  570. <summary>
  571. <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  572. </para>
  573. </summary>
  574. <param name="lookAndFeel">
  575. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  576. </param>
  577. </member>
  578. <member name="T:DevExpress.XtraPrintingLinks.TreeViewLink">
  579. <summary>
  580. <para>A link to print the <see cref="T:System.Windows.Forms.TreeView"/> control.
  581. </para>
  582. </summary>
  583. </member>
  584. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.#ctor">
  585. <summary>
  586. <para>Initializes a new instance of the TreeViewLink class with default settings.
  587. </para>
  588. </summary>
  589. </member>
  590. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
  591. <summary>
  592. <para>Initializes a new instance of the TreeViewLink class with the specified printing system.
  593. </para>
  594. </summary>
  595. <param name="ps">
  596. 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.
  597. </param>
  598. </member>
  599. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
  600. <summary>
  601. <para>Indicates whether or not the specified Printing System command can be handled.
  602. </para>
  603. </summary>
  604. <param name="command">
  605. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
  606. </param>
  607. <param name="printControl">
  608. 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).
  609. </param>
  610. <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
  611. </returns>
  612. </member>
  613. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
  614. <summary>
  615. <para>Generates a report using the specified Printing System.
  616. </para>
  617. </summary>
  618. <param name="ps">
  619. A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
  620. </param>
  621. </member>
  622. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
  623. <summary>
  624. <para>Handles the specified Printing System command.
  625. </para>
  626. </summary>
  627. <param name="command">
  628. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
  629. </param>
  630. <param name="args">
  631. A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
  632. </param>
  633. <param name="printControl">
  634. 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).
  635. </param>
  636. <param name="handled">
  637. <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
  638. </param>
  639. </member>
  640. <member name="P:DevExpress.XtraPrintingLinks.TreeViewLink.ImageCollection">
  641. <summary>
  642. <para>Provides access to the link's collection of images.
  643. </para>
  644. </summary>
  645. <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
  646. </value>
  647. </member>
  648. <member name="P:DevExpress.XtraPrintingLinks.TreeViewLink.Images">
  649. <summary>
  650. <para>A collection of images which can be added to the Page Headers and Footers.
  651. </para>
  652. </summary>
  653. <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
  654. </value>
  655. </member>
  656. <member name="P:DevExpress.XtraPrintingLinks.TreeViewLink.ImageStream">
  657. <summary>
  658. <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
  659. </para>
  660. </summary>
  661. <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
  662. </value>
  663. </member>
  664. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.Print(System.String)">
  665. <summary>
  666. <para>Prints the current document to the specified printer.
  667. </para>
  668. </summary>
  669. <param name="printerName">
  670. A <see cref="T:System.String"/> value, specifying the printer name.
  671. </param>
  672. </member>
  673. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.PrintDlg">
  674. <summary>
  675. <para>Displays the standard <b>Print</b> dialog and prints the current document.
  676. </para>
  677. </summary>
  678. </member>
  679. <member name="P:DevExpress.XtraPrintingLinks.TreeViewLink.PrintingSystem">
  680. <summary>
  681. <para>Gets or sets the Printing System used to create and print a document for this link.
  682. </para>
  683. </summary>
  684. <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
  685. </value>
  686. </member>
  687. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowPreview">
  688. <summary>
  689. <para>Invokes the Print Preview Form which shows the print preview of the document for this link.
  690. </para>
  691. </summary>
  692. </member>
  693. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  694. <summary>
  695. <para>Invokes the Print Preview Form which shows the print preview of the document for this link using the specified look and feel settings.
  696. </para>
  697. </summary>
  698. <param name="lookAndFeel">
  699. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
  700. </param>
  701. </member>
  702. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  703. <summary>
  704. <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.
  705. </para>
  706. </summary>
  707. <param name="owner">
  708. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
  709. </param>
  710. <param name="lookAndFeel">
  711. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
  712. </param>
  713. </member>
  714. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
  715. <summary>
  716. <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.
  717. </para>
  718. </summary>
  719. <param name="owner">
  720. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
  721. </param>
  722. </member>
  723. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowPreviewDialog">
  724. <summary>
  725. <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link.
  726. </para>
  727. </summary>
  728. </member>
  729. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  730. <summary>
  731. <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  732. </para>
  733. </summary>
  734. <param name="lookAndFeel">
  735. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  736. </param>
  737. </member>
  738. <member name="M:DevExpress.XtraPrintingLinks.TreeViewLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
  739. <summary>
  740. <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  741. </para>
  742. </summary>
  743. <param name="lookAndFeel">
  744. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  745. </param>
  746. </member>
  747. <member name="T:DevExpress.XtraPrintingLinks.ListViewLink">
  748. <summary>
  749. <para>A link to print the <see cref="T:System.Windows.Forms.ListView"/> control.
  750. </para>
  751. </summary>
  752. </member>
  753. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.#ctor">
  754. <summary>
  755. <para>Initializes a new instance of the ListViewLink class with the default settings.
  756. </para>
  757. </summary>
  758. </member>
  759. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
  760. <summary>
  761. <para>Indicates whether or not the specified Printing System command can be handled.
  762. </para>
  763. </summary>
  764. <param name="command">
  765. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
  766. </param>
  767. <param name="printControl">
  768. 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).
  769. </param>
  770. <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
  771. </returns>
  772. </member>
  773. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
  774. <summary>
  775. <para>Generates a report using the specified Printing System.
  776. </para>
  777. </summary>
  778. <param name="ps">
  779. A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
  780. </param>
  781. </member>
  782. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
  783. <summary>
  784. <para>Handles the specified Printing System command.
  785. </para>
  786. </summary>
  787. <param name="command">
  788. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
  789. </param>
  790. <param name="args">
  791. A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
  792. </param>
  793. <param name="printControl">
  794. 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).
  795. </param>
  796. <param name="handled">
  797. <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
  798. </param>
  799. </member>
  800. <member name="P:DevExpress.XtraPrintingLinks.ListViewLink.ImageCollection">
  801. <summary>
  802. <para>Provides access to the link's collection of images.
  803. </para>
  804. </summary>
  805. <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
  806. </value>
  807. </member>
  808. <member name="P:DevExpress.XtraPrintingLinks.ListViewLink.Images">
  809. <summary>
  810. <para>A collection of images which can be added to the Page Headers and Footers.
  811. </para>
  812. </summary>
  813. <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
  814. </value>
  815. </member>
  816. <member name="P:DevExpress.XtraPrintingLinks.ListViewLink.ImageStream">
  817. <summary>
  818. <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
  819. </para>
  820. </summary>
  821. <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
  822. </value>
  823. </member>
  824. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.Print(System.String)">
  825. <summary>
  826. <para>Prints the current document to the specified printer.
  827. </para>
  828. </summary>
  829. <param name="printerName">
  830. A <see cref="T:System.String"/> value, specifying the printer name.
  831. </param>
  832. </member>
  833. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.PrintDlg">
  834. <summary>
  835. <para>Displays the standard <b>Print</b> dialog and prints the current document.
  836. </para>
  837. </summary>
  838. </member>
  839. <member name="P:DevExpress.XtraPrintingLinks.ListViewLink.PrintingSystem">
  840. <summary>
  841. <para>Gets or sets the Printing System used to create and print a document for this link.
  842. </para>
  843. </summary>
  844. <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
  845. </value>
  846. </member>
  847. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  848. <summary>
  849. <para>Invokes the Print Preview Form which shows the print preview of the document for this link using the specified look and feel settings.
  850. </para>
  851. </summary>
  852. <param name="lookAndFeel">
  853. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
  854. </param>
  855. </member>
  856. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowPreview">
  857. <summary>
  858. <para>Invokes the Print Preview Form which shows the print preview of the document for this link.
  859. </para>
  860. </summary>
  861. </member>
  862. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
  863. <summary>
  864. <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.
  865. </para>
  866. </summary>
  867. <param name="owner">
  868. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
  869. </param>
  870. </member>
  871. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowPreviewDialog">
  872. <summary>
  873. <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link.
  874. </para>
  875. </summary>
  876. </member>
  877. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  878. <summary>
  879. <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.
  880. </para>
  881. </summary>
  882. <param name="owner">
  883. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
  884. </param>
  885. <param name="lookAndFeel">
  886. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
  887. </param>
  888. </member>
  889. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  890. <summary>
  891. <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  892. </para>
  893. </summary>
  894. <param name="lookAndFeel">
  895. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  896. </param>
  897. </member>
  898. <member name="M:DevExpress.XtraPrintingLinks.ListViewLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
  899. <summary>
  900. <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  901. </para>
  902. </summary>
  903. <param name="lookAndFeel">
  904. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  905. </param>
  906. </member>
  907. <member name="T:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx">
  908. <summary>
  909. <para>A print preview form with a ribbon toolbar.
  910. </para>
  911. </summary>
  912. </member>
  913. <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx.#ctor">
  914. <summary>
  915. <para>Initializes a new instance of the PrintPreviewRibbonFormEx class with the default settings.
  916. </para>
  917. </summary>
  918. </member>
  919. <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx.PrintRibbonController">
  920. <summary>
  921. <para>Gets the <b>PrintRibbonController</b> of the Print Preview form with a Ribbon.
  922. </para>
  923. </summary>
  924. <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintRibbonController"/> object which represents the <b>Print Ribbon Controller</b> of the Print Preview form with a Ribbon.
  925. </value>
  926. </member>
  927. <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx.RibbonControl">
  928. <summary>
  929. <para>Gets the <b>RibbonControl</b> of the Print Preview form with a Ribbon.
  930. </para>
  931. </summary>
  932. <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonControl"/> object which represents the <b>Ribbon Control</b> of the Print Preview form with a Ribbon.
  933. </value>
  934. </member>
  935. <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx.RibbonStatusBar">
  936. <summary>
  937. <para>Gets the <b>RibbonStatusBar</b> of the Print Preview form with a Ribbon.
  938. </para>
  939. </summary>
  940. <value>A <see cref="T:DevExpress.XtraBars.Ribbon.RibbonStatusBar"/> object which represents the <b>Ribbon Status Bar</b> of the Print Preview form with a Ribbon.
  941. </value>
  942. </member>
  943. <member name="T:DevExpress.XtraPrinting.Preview.PrintRibbonController">
  944. <summary>
  945. <para>As part of the <see cref="T:DevExpress.XtraPrinting.Preview.DocumentViewer"/> control, provides a ribbon toolbar to a Print Preview.
  946. </para>
  947. </summary>
  948. </member>
  949. <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.#ctor">
  950. <summary>
  951. <para>Initializes a new instance of the PrintRibbonController class with default settings.
  952. </para>
  953. </summary>
  954. </member>
  955. <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.#ctor(System.Object)">
  956. <summary>
  957. <para>Initializes a new instance of the PrintRibbonController class with the specified context.
  958. </para>
  959. </summary>
  960. <param name="contextSpecifier">
  961. A <see cref="T:System.Object"/> which contains information about the current context.
  962. </param>
  963. </member>
  964. <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.#ctor(System.ComponentModel.IContainer)">
  965. <summary>
  966. <para>Initializes a new instance of the PrintRibbonController class with the specified container.
  967. </para>
  968. </summary>
  969. <param name="container">
  970. An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface.
  971. </param>
  972. </member>
  973. <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.BeginInit">
  974. <summary>
  975. <para>Starts the PrintRibbonController's initialization. Initialization occurs at runtime.
  976. </para>
  977. </summary>
  978. </member>
  979. <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.EndInit">
  980. <summary>
  981. <para>Ends the PrintRibbonController's initialization.
  982. </para>
  983. </summary>
  984. </member>
  985. <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.GetBarItemByCommand(DevExpress.XtraPrinting.PrintingSystemCommand)">
  986. <summary>
  987. <para>Gets a bar item within the Ribbon Control by its command.
  988. </para>
  989. </summary>
  990. <param name="command">
  991. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be executed by the bar item to be found.
  992. </param>
  993. <returns>A <see cref="T:DevExpress.XtraBars.BarItem"/> object that represents the bar item which executes the specified command.
  994. </returns>
  995. </member>
  996. <member name="P:DevExpress.XtraPrinting.Preview.PrintRibbonController.ImageCollection">
  997. <summary>
  998. <para>Gets the collection of images used in the PrintRibbonController UI.
  999. </para>
  1000. </summary>
  1001. <value>A <see cref="T:DevExpress.XtraPrinting.Preview.RibbonImageCollection"/> object.
  1002. </value>
  1003. </member>
  1004. <member name="P:DevExpress.XtraPrinting.Preview.PrintRibbonController.PreviewRibbonPages">
  1005. <summary>
  1006. <para>Provides access to a collection of Ribbon pages, generated by this PrintRibbonController instance.
  1007. </para>
  1008. </summary>
  1009. <value>An object of the <see cref="T:System.Collections.Generic.IEnumerable"/> generic type, representing a collection of Ribbon pages.
  1010. </value>
  1011. </member>
  1012. <member name="P:DevExpress.XtraPrinting.Preview.PrintRibbonController.PrintControl">
  1013. <summary>
  1014. <para>Gets or sets the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance to which the <b>Print Ribbon Controller</b> belongs.
  1015. </para>
  1016. </summary>
  1017. <value>A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance to which the <b>Print Ribbon Controller</b> belongs.
  1018. </value>
  1019. </member>
  1020. <member name="M:DevExpress.XtraPrinting.Preview.PrintRibbonController.UpdateCommands">
  1021. <summary>
  1022. <para>Updates Ribbon Control items according to the current visibility state of the corresponding Printing System commands.
  1023. </para>
  1024. </summary>
  1025. </member>
  1026. <member name="T:DevExpress.XtraPrinting.Preview.RibbonImageCollection">
  1027. <summary>
  1028. <para>Represents the collection of images used in the Ribbon UI.
  1029. </para>
  1030. </summary>
  1031. </member>
  1032. <member name="M:DevExpress.XtraPrinting.Preview.RibbonImageCollection.#ctor">
  1033. <summary>
  1034. <para>Initializes a new instance of the RibbonImageCollection class.
  1035. </para>
  1036. </summary>
  1037. </member>
  1038. <member name="M:DevExpress.XtraPrinting.Preview.RibbonImageCollection.GetImage(System.String)">
  1039. <summary>
  1040. <para>Gets the specified image from the collection.
  1041. </para>
  1042. </summary>
  1043. <param name="name">
  1044. A <see cref="T:System.String"/> value specifying the image name.
  1045. </param>
  1046. <returns>An <see cref="T:System.Drawing.Image"/> object.
  1047. </returns>
  1048. </member>
  1049. <member name="M:DevExpress.XtraPrinting.Preview.RibbonImageCollection.SetImage(System.String,System.Drawing.Image)">
  1050. <summary>
  1051. <para>Sets the specified image in the collection.
  1052. </para>
  1053. </summary>
  1054. <param name="name">
  1055. A <see cref="T:System.String"/> value specifying the image name.
  1056. </param>
  1057. <param name="value">
  1058. An <see cref="T:System.Drawing.Image"/> object.
  1059. </param>
  1060. </member>
  1061. <member name="T:DevExpress.XtraPrinting.PrintTool">
  1062. <summary>
  1063. <para>The base class for the <see cref="T:DevExpress.XtraReports.UI.ReportPrintTool"/> class.
  1064. </para>
  1065. </summary>
  1066. </member>
  1067. <member name="M:DevExpress.XtraPrinting.PrintTool.#ctor(DevExpress.XtraPrinting.PrintingSystemBase)">
  1068. <summary>
  1069. <para>Initializes a new instance of the PrintTool class with the specified Printing System.
  1070. </para>
  1071. </summary>
  1072. <param name="printingSystem">
  1073. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> object that represents the Print Tool's Printing System. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.PrintTool.PrintingSystem"/> property.
  1074. </param>
  1075. </member>
  1076. <member name="M:DevExpress.XtraPrinting.PrintTool.ClosePreview">
  1077. <summary>
  1078. <para>Closes the Print Preview form.
  1079. </para>
  1080. </summary>
  1081. </member>
  1082. <member name="M:DevExpress.XtraPrinting.PrintTool.CloseRibbonPreview">
  1083. <summary>
  1084. <para>Closes the Ribbon Print Preview form.
  1085. </para>
  1086. </summary>
  1087. </member>
  1088. <member name="M:DevExpress.XtraPrinting.PrintTool.Dispose">
  1089. <summary>
  1090. <para>Disposes of the PrintTool object.
  1091. </para>
  1092. </summary>
  1093. </member>
  1094. <member name="M:DevExpress.XtraPrinting.PrintTool.LoadPrinterSettings(System.String)">
  1095. <summary>
  1096. <para>Applies the printer settings restored from the specified file to the system default printer.
  1097. </para>
  1098. </summary>
  1099. <param name="filePath">
  1100. 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.
  1101. </param>
  1102. </member>
  1103. <member name="M:DevExpress.XtraPrinting.PrintTool.LoadPrinterSettingsFromRegistry(System.String)">
  1104. <summary>
  1105. <para>Applies the printer settings restored from the specified registry to the system default printer.
  1106. </para>
  1107. </summary>
  1108. <param name="path">
  1109. A <see cref="T:System.String"/>, specifying the system registry path from where the printer settings should be loaded.
  1110. </param>
  1111. </member>
  1112. <member name="M:DevExpress.XtraPrinting.PrintTool.LoadPrinterSettingsFromStream(System.IO.Stream)">
  1113. <summary>
  1114. <para>Applies the printer settings restored from the specified stream to the system default printer.
  1115. </para>
  1116. </summary>
  1117. <param name="stream">
  1118. A <see cref="T:System.IO.Stream"/> from where the printer settings should be loaded.
  1119. </param>
  1120. </member>
  1121. <member name="M:DevExpress.XtraPrinting.PrintTool.MakeCommandResponsive(DevExpress.XtraPrinting.PrintingSystemBase)">
  1122. <summary>
  1123. <para>For internal use.
  1124. </para>
  1125. </summary>
  1126. <param name="printingSystem">
  1127. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> descendant.
  1128. </param>
  1129. </member>
  1130. <member name="P:DevExpress.XtraPrinting.PrintTool.PreviewForm">
  1131. <summary>
  1132. <para>Provides access to a Print Preview form of the PrintTool.
  1133. </para>
  1134. </summary>
  1135. <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx"/> object.
  1136. </value>
  1137. </member>
  1138. <member name="P:DevExpress.XtraPrinting.PrintTool.PreviewRibbonForm">
  1139. <summary>
  1140. <para>Provides access to a Ribbon Print Preview form of the PrintTool.
  1141. </para>
  1142. </summary>
  1143. <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx"/> object.
  1144. </value>
  1145. </member>
  1146. <member name="M:DevExpress.XtraPrinting.PrintTool.Print">
  1147. <summary>
  1148. <para>Prints the current document.
  1149. </para>
  1150. </summary>
  1151. </member>
  1152. <member name="M:DevExpress.XtraPrinting.PrintTool.Print(System.String)">
  1153. <summary>
  1154. <para>Prints the current document on the specified printer.
  1155. </para>
  1156. </summary>
  1157. <param name="printerName">
  1158. A <see cref="T:System.String"/> representing the name of the printer on which the current document should be printed.
  1159. </param>
  1160. </member>
  1161. <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog">
  1162. <summary>
  1163. <para>Runs the <b>Print</b> dialog to select a printer, specify the print options (number of copies, page range, and paper source) and print the document.
  1164. </para>
  1165. </summary>
  1166. <returns><b>true</b> if the user clicks <b>OK</b> in the dialog box; <b>false</b> if the user clicks <b>Cancel</b>; otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
  1167. </returns>
  1168. </member>
  1169. <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog(System.Windows.Forms.IWin32Window)">
  1170. <summary>
  1171. <para>Runs the <b>Print</b> dialog to select a printer, specify the print options (number of copies, page range, and paper source) and print the document.
  1172. </para>
  1173. </summary>
  1174. <param name="owner">
  1175. A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
  1176. </param>
  1177. <returns><b>true</b> if the user clicks <b>OK</b> in the dialog box; <b>false</b> if the user clicks <b>Cancel</b>; otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
  1178. </returns>
  1179. </member>
  1180. <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
  1181. <summary>
  1182. <para>Runs the <b>Print</b> dialog to select a printer, specify the print options (number of copies, page range, and paper source) and print the document.
  1183. </para>
  1184. </summary>
  1185. <param name="lookAndFeel">
  1186. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the <b>Print</b> dialog.
  1187. </param>
  1188. <returns><b>true</b> if the user clicks <b>OK</b> in the dialog box; <b>false</b> if the user clicks <b>Cancel</b>; otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
  1189. </returns>
  1190. </member>
  1191. <member name="M:DevExpress.XtraPrinting.PrintTool.PrintDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  1192. <summary>
  1193. <para>Runs the <b>Print</b> dialog to select a printer, specify the print options (number of copies, page range, and paper source) and print the document.
  1194. </para>
  1195. </summary>
  1196. <param name="owner">
  1197. A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
  1198. </param>
  1199. <param name="lookAndFeel">
  1200. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the <b>Print</b> dialog.
  1201. </param>
  1202. <returns><b>true</b> if the user clicks <b>OK</b> in the dialog box; <b>false</b> if the user clicks <b>Cancel</b>; otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
  1203. </returns>
  1204. </member>
  1205. <member name="P:DevExpress.XtraPrinting.PrintTool.PrintingSystem">
  1206. <summary>
  1207. <para>Provides access to the Printing System of the PrintTool.
  1208. </para>
  1209. </summary>
  1210. <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> class descendant.
  1211. </value>
  1212. </member>
  1213. <member name="M:DevExpress.XtraPrinting.PrintTool.SavePrinterSettings(System.String)">
  1214. <summary>
  1215. <para>Saves the settings of the system default printer to the specified file.
  1216. </para>
  1217. </summary>
  1218. <param name="filePath">
  1219. 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.
  1220. </param>
  1221. </member>
  1222. <member name="M:DevExpress.XtraPrinting.PrintTool.SavePrinterSettingsToRegistry(System.String)">
  1223. <summary>
  1224. <para>Saves the settings of the system default printer to the specified registry.
  1225. </para>
  1226. </summary>
  1227. <param name="path">
  1228. A <see cref="T:System.String"/>, specifying the system registry path to where the printer settings should be saved.
  1229. </param>
  1230. </member>
  1231. <member name="M:DevExpress.XtraPrinting.PrintTool.SavePrinterSettingsToStream(System.IO.Stream)">
  1232. <summary>
  1233. <para>Saves the settings of the system default printer to the specified stream.
  1234. </para>
  1235. </summary>
  1236. <param name="stream">
  1237. A <see cref="T:System.IO.Stream"/> to where the printer settings should be saved.
  1238. </param>
  1239. </member>
  1240. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPageSetup">
  1241. <summary>
  1242. <para>Displays a customized <b>Page Setup</b> dialog that reflects the application's current Look And Feel settings.
  1243. </para>
  1244. </summary>
  1245. <returns><b>true</b> if a user clicks <b>OK</b>; <b>false</b> if a user clicks <b>Cancel</b>, otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
  1246. </returns>
  1247. </member>
  1248. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreview">
  1249. <summary>
  1250. <para>Invokes the standard Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool.
  1251. </para>
  1252. </summary>
  1253. </member>
  1254. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  1255. <summary>
  1256. <para>Invokes the standard Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool. The form is invoked using the specified look-and-feel settings.
  1257. </para>
  1258. </summary>
  1259. <param name="lookAndFeel">
  1260. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Print Preview form.
  1261. </param>
  1262. </member>
  1263. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreview(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  1264. <summary>
  1265. <para>Invokes the standard Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool. The form is invoked as a child of the specified parent window, using the specified look-and-feel settings.
  1266. </para>
  1267. </summary>
  1268. <param name="owner">
  1269. A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
  1270. </param>
  1271. <param name="lookAndFeel">
  1272. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Print Preview form.
  1273. </param>
  1274. </member>
  1275. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
  1276. <summary>
  1277. <para>Invokes the standard Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool. The form is invoked using the specified look-and-feel settings.
  1278. </para>
  1279. </summary>
  1280. <param name="lookAndFeel">
  1281. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Print Preview form.
  1282. </param>
  1283. </member>
  1284. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreviewDialog">
  1285. <summary>
  1286. <para>Invokes the standard Print Preview dialog showing the document that is created from a source (report or link) assigned to the PrintTool.
  1287. </para>
  1288. </summary>
  1289. </member>
  1290. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  1291. <summary>
  1292. <para>Invokes the standard Print Preview dialog showing the document that is created from a source (report or link) assigned to the PrintTool. The dialog is invoked using the specified look-and-feel settings.
  1293. </para>
  1294. </summary>
  1295. <param name="owner">
  1296. A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
  1297. </param>
  1298. <param name="lookAndFeel">
  1299. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Print Preview form.
  1300. </param>
  1301. </member>
  1302. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreview">
  1303. <summary>
  1304. <para>Invokes the Ribbon Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool.
  1305. </para>
  1306. </summary>
  1307. </member>
  1308. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  1309. <summary>
  1310. <para>Invokes the Ribbon Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool. The form is invoked using the specified look-and-feel settings.
  1311. </para>
  1312. </summary>
  1313. <param name="lookAndFeel">
  1314. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Ribbon Print Preview form.
  1315. </param>
  1316. </member>
  1317. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreview(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  1318. <summary>
  1319. <para>Invokes the Ribbon Print Preview form showing the document that is created from a source (report or link) assigned to the PrintTool. The form is invoked as a child of the specified parent window, using the specified look-and-feel settings.
  1320. </para>
  1321. </summary>
  1322. <param name="owner">
  1323. A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
  1324. </param>
  1325. <param name="lookAndFeel">
  1326. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Ribbon Print Preview form.
  1327. </param>
  1328. </member>
  1329. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreviewDialog">
  1330. <summary>
  1331. <para>Invokes the Ribbon Print Preview dialog showing the document that is created from a source (report or link) assigned to the PrintTool.
  1332. </para>
  1333. </summary>
  1334. </member>
  1335. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
  1336. <summary>
  1337. <para>Invokes the Ribbon Print Preview dialog showing the document that is created from a source (report or link) assigned to the PrintTool. The dialog is invoked using the specified look-and-feel settings.
  1338. </para>
  1339. </summary>
  1340. <param name="lookAndFeel">
  1341. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Ribbon Print Preview form.
  1342. </param>
  1343. </member>
  1344. <member name="M:DevExpress.XtraPrinting.PrintTool.ShowRibbonPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  1345. <summary>
  1346. <para>Invokes the Ribbon Print Preview dialog showing the document that is created from a source (report or link) assigned to the PrintTool. The dialog is invoked as a child of the specified parent window, using the specified look-and-feel settings.
  1347. </para>
  1348. </summary>
  1349. <param name="owner">
  1350. A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
  1351. </param>
  1352. <param name="lookAndFeel">
  1353. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Ribbon Print Preview form.
  1354. </param>
  1355. </member>
  1356. <member name="T:DevExpress.XtraPrinting.Preview.DocumentViewer">
  1357. <summary>
  1358. <para>A control to publish (preview, print and export) documents in Windows Forms applications.
  1359. </para>
  1360. </summary>
  1361. </member>
  1362. <member name="M:DevExpress.XtraPrinting.Preview.DocumentViewer.#ctor">
  1363. <summary>
  1364. <para>Initializes a new instance of the DocumentViewer class with default settings.
  1365. </para>
  1366. </summary>
  1367. </member>
  1368. <member name="P:DevExpress.XtraPrinting.Preview.DocumentViewer.DocumentSource">
  1369. <summary>
  1370. <para>Specifies a document supplier for the DocumentViewer.
  1371. </para>
  1372. </summary>
  1373. <value>A <see cref="T:System.Object"/> value.
  1374. </value>
  1375. </member>
  1376. <member name="M:DevExpress.XtraPrinting.Preview.DocumentViewer.InitiateDocumentCreation">
  1377. <summary>
  1378. <para>Specifies whether to create a document automatically, or on a user request.
  1379. </para>
  1380. </summary>
  1381. </member>
  1382. <member name="P:DevExpress.XtraPrinting.Preview.DocumentViewer.PrintingSystem">
  1383. <summary>
  1384. <para>Specifies a Printing System assigned to the DocumentViewer.
  1385. </para>
  1386. </summary>
  1387. <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> descendant.
  1388. </value>
  1389. </member>
  1390. <member name="P:DevExpress.XtraPrinting.Preview.DocumentViewer.RequestDocumentCreation">
  1391. <summary>
  1392. <para>Specifies whether to create a document automatically, or on a user request.
  1393. </para>
  1394. </summary>
  1395. <value><b>true</b> to create a document on a user request; otherwise <b>false</b>.
  1396. </value>
  1397. </member>
  1398. <member name="T:DevExpress.XtraReports.UI.ReportPrintTool">
  1399. <summary>
  1400. <para>An instrument for report printing.
  1401. </para>
  1402. </summary>
  1403. </member>
  1404. <member name="M:DevExpress.XtraReports.UI.ReportPrintTool.#ctor(DevExpress.XtraReports.IReport)">
  1405. <summary>
  1406. <para>Initializes a new instance of the ReportPrintTool class with the specified report.
  1407. </para>
  1408. </summary>
  1409. <param name="report">
  1410. An object implementing the <see cref="T:DevExpress.XtraReports.IReport"/> interface (usually, it is the <see cref="T:DevExpress.XtraReports.UI.XtraReport"/> class instance).
  1411. </param>
  1412. </member>
  1413. <member name="P:DevExpress.XtraReports.UI.ReportPrintTool.AutoShowParametersPanel">
  1414. <summary>
  1415. <para>Specifies whether the <b>Parameters</b> panel is visible in the <b>Print Preview</b> window.
  1416. </para>
  1417. </summary>
  1418. <value><b>true</b> to always show the <b>Parameters</b> UI; otherwise <b>false</b>.
  1419. </value>
  1420. </member>
  1421. <member name="M:DevExpress.XtraReports.UI.ReportPrintTool.Dispose">
  1422. <summary>
  1423. <para>Disposes of the ReportPrintTool object.
  1424. </para>
  1425. </summary>
  1426. </member>
  1427. <member name="P:DevExpress.XtraReports.UI.ReportPrintTool.Report">
  1428. <summary>
  1429. <para>Provides access to the settings of the report assigned to the ReportPrintTool.
  1430. </para>
  1431. </summary>
  1432. <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).
  1433. </value>
  1434. </member>
  1435. <member name="M:DevExpress.XtraReports.UI.ReportPrintTool.ShowPageSetup">
  1436. <summary>
  1437. <para>Displays a customized <b>Page Setup</b> dialog that reflects the application's current Look And Feel settings.
  1438. </para>
  1439. </summary>
  1440. <returns><b>true</b> if a user clicks <b>OK</b>; <b>false</b> if a user clicks <b>Cancel</b>, otherwise <b>null</b> (<b>Nothing</b> in Visual Basic).
  1441. </returns>
  1442. </member>
  1443. <member name="T:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase">
  1444. <summary>
  1445. <para>The base class for the print preview forms with a standard toolbar.
  1446. </para>
  1447. </summary>
  1448. </member>
  1449. <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.#ctor">
  1450. <summary>
  1451. <para>Initializes a new instance of the PrintPreviewFormExBase class with default settings.
  1452. </para>
  1453. </summary>
  1454. </member>
  1455. <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.PrintControl">
  1456. <summary>
  1457. <para>Gets the <b>Print Control</b> of the <b>Print Preview Form</b>.
  1458. </para>
  1459. </summary>
  1460. <value>A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> object which represents the <b>Print Control</b> of the form.
  1461. </value>
  1462. </member>
  1463. <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.PrintingSystem">
  1464. <summary>
  1465. <para>Gets or sets the Printing System used to create and print a document for this link.
  1466. </para>
  1467. </summary>
  1468. <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> class descendant.
  1469. </value>
  1470. </member>
  1471. <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.SaveState">
  1472. <summary>
  1473. <para>Specifies whether the <b>Print Preview Form</b>'s size, position and zoom setting are saved to the Windows registry.
  1474. </para>
  1475. </summary>
  1476. <value><b>true</b> if <b>Print Preview Form</b> settings are saved in the Windows registry; otherwise, <b>false</b>.
  1477. </value>
  1478. </member>
  1479. <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.SelectedPageIndex">
  1480. <summary>
  1481. <para>Gets or sets the index of the currently selected page in the form's <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
  1482. </para>
  1483. </summary>
  1484. <value>An integer value which represents the index of the selected page.
  1485. </value>
  1486. </member>
  1487. <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.Show(DevExpress.LookAndFeel.UserLookAndFeel)">
  1488. <summary>
  1489. <para>Displays the <b>Print Preview Form</b> using the specified Look-and-Feel settings.
  1490. </para>
  1491. </summary>
  1492. <param name="lookAndFeel">
  1493. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the Look-and-Feel settings to apply to the <b>Print Preview Form</b>.
  1494. </param>
  1495. </member>
  1496. <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.Show">
  1497. <summary>
  1498. <para>Displays the <b>Print Preview Form</b>.
  1499. </para>
  1500. </summary>
  1501. </member>
  1502. <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.Show(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  1503. <summary>
  1504. <para>Invokes the PrintPreviewFormExBase as a child of the specified parent window, using the specified look-and-feel settings.
  1505. </para>
  1506. </summary>
  1507. <param name="owner">
  1508. A <see cref="T:System.Windows.Forms.IWin32Window"/> object that is the parent window for this dialog.
  1509. </param>
  1510. <param name="lookAndFeel">
  1511. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object, specifying the look-and-feel settings applied to the Print Preview form.
  1512. </param>
  1513. </member>
  1514. <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.ShowDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  1515. <summary>
  1516. <para>Invokes the <b>Print Preview Form</b> form which is shown modally as a <i>child</i> of the specified <i>parent</i> window using the specified look and feel settings.
  1517. </para>
  1518. </summary>
  1519. <param name="owner">
  1520. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
  1521. </param>
  1522. <param name="lookAndFeel">
  1523. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the <b>Preview Form</b>.
  1524. </param>
  1525. <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value representing the return value of the dialog.
  1526. </returns>
  1527. </member>
  1528. <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.ShowDialog">
  1529. <summary>
  1530. <para>Invokes the <b>Print Preview Form</b> form which is shown modally.
  1531. </para>
  1532. </summary>
  1533. <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value representing the return value of the dialog.
  1534. </returns>
  1535. </member>
  1536. <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.ShowDialog(System.Windows.Forms.IWin32Window)">
  1537. <summary>
  1538. <para>Invokes the <b>Print Preview Form</b> form which is shown modally as a <i>child</i> of the specified <i>parent</i> window.
  1539. </para>
  1540. </summary>
  1541. <param name="owner">
  1542. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
  1543. </param>
  1544. <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value representing the return value of the dialog.
  1545. </returns>
  1546. </member>
  1547. <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormExBase.ShowDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
  1548. <summary>
  1549. <para>Invokes the <b>Print Preview Form</b> form which is shown modally using the specified look and feel settings.
  1550. </para>
  1551. </summary>
  1552. <param name="lookAndFeel">
  1553. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the <b>Print Preview Form</b>.
  1554. </param>
  1555. <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value representing the return value of the dialog.
  1556. </returns>
  1557. </member>
  1558. <member name="T:DevExpress.XtraPrinting.Preview.PrintBarManager">
  1559. <summary>
  1560. <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.
  1561. </para>
  1562. </summary>
  1563. </member>
  1564. <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.#ctor">
  1565. <summary>
  1566. <para>Initializes a new instance of the PrintBarManager class with default settings.
  1567. </para>
  1568. </summary>
  1569. </member>
  1570. <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.#ctor(System.ComponentModel.IContainer)">
  1571. <summary>
  1572. <para>Initializes a new instance of the PrintBarManager class with the specified container.
  1573. </para>
  1574. </summary>
  1575. <param name="container">
  1576. An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface.
  1577. </param>
  1578. </member>
  1579. <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ColorPopupControlContainer">
  1580. <summary>
  1581. <para>Gets or sets the popup control which is used to specify a color within the printing bar manager.
  1582. </para>
  1583. </summary>
  1584. <value>A <see cref="T:DevExpress.XtraPrinting.Preview.ColorPopupControlContainer"/> object which represents the popup control used to select a color.
  1585. </value>
  1586. </member>
  1587. <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.GetBarItemByCommand(DevExpress.XtraPrinting.PrintingSystemCommand)">
  1588. <summary>
  1589. <para>Gets a bar item within the bar manager by its command.
  1590. </para>
  1591. </summary>
  1592. <param name="command">
  1593. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command to be executed by the bar item to be found.
  1594. </param>
  1595. <returns>A <see cref="T:DevExpress.XtraBars.BarItem"/> object that is the bar item which executes the specified command.
  1596. </returns>
  1597. </member>
  1598. <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.Images">
  1599. <summary>
  1600. <para>Gets the source of images that can be displayed within items.
  1601. </para>
  1602. </summary>
  1603. <value>A <see cref="T:DevExpress.Utils.Images"/> object which provides images for bar items.
  1604. </value>
  1605. </member>
  1606. <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ImageStream">
  1607. <summary>
  1608. <para>Gets or sets a stream which contains the images used to display <b>Print Bar Manager</b> items.
  1609. </para>
  1610. </summary>
  1611. <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object which represents the stream of images.
  1612. </value>
  1613. </member>
  1614. <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.Initialize(DevExpress.XtraPrinting.Control.PrintControl)">
  1615. <summary>
  1616. <para>Performs basic initialization of the created PrintBarManager object, and assigns the specified <b>Print Control</b> to it.
  1617. </para>
  1618. </summary>
  1619. <param name="printControl">
  1620. A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> object which specifies the print control to be assigned.
  1621. </param>
  1622. </member>
  1623. <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.LargeImages">
  1624. <summary>
  1625. <para>Overrides the <see cref="P:DevExpress.XtraBars.BarManager.LargeImages"/> property.
  1626. </para>
  1627. </summary>
  1628. <value>A <see cref="T:System.Object"/> which provides large images for bar button items.
  1629. </value>
  1630. </member>
  1631. <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.MultiplePagesControlContainer">
  1632. <summary>
  1633. <para>Gets or sets the popup control which is used to specify the number of pages to preview within the printing bar manager.
  1634. </para>
  1635. </summary>
  1636. <value>A <see cref="T:DevExpress.XtraPrinting.Preview.MultiplePagesControlContainer"/> object which represents the popup control used to select the number of pages to preview.
  1637. </value>
  1638. </member>
  1639. <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.PreviewBar">
  1640. <summary>
  1641. <para>Gets or sets the print preview bar controlled by this preview bar manager.
  1642. </para>
  1643. </summary>
  1644. <value>A <see cref="T:DevExpress.XtraBars.Bar"/> object which represents the print preview bar of this bar manager.
  1645. </value>
  1646. </member>
  1647. <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.PrintControl">
  1648. <summary>
  1649. <para>Gets or sets the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance to which the <b>Print Bar Manager</b> belongs.
  1650. </para>
  1651. </summary>
  1652. <value>A <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> class instance to which the <b>Print Bar Manager</b> belongs.
  1653. </value>
  1654. </member>
  1655. <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ScaleControlContainer">
  1656. <summary>
  1657. <para>Gets or sets the popup control which is used to specify the document scaling options.
  1658. </para>
  1659. </summary>
  1660. <value>A <see cref="T:DevExpress.XtraPrinting.Preview.ScaleControlContainer"/> object which represents the popup control used to specify scaling options.
  1661. </value>
  1662. </member>
  1663. <member name="M:DevExpress.XtraPrinting.Preview.PrintBarManager.UpdateCommands">
  1664. <summary>
  1665. <para>Updates print bar manager items according to the current visibility state of the corresponding Printing System commands.
  1666. </para>
  1667. </summary>
  1668. </member>
  1669. <member name="P:DevExpress.XtraPrinting.Preview.PrintBarManager.ZoomItem">
  1670. <summary>
  1671. <para>Gets or sets the editor which is used to specify the zoom level within the printing bar manager.
  1672. </para>
  1673. </summary>
  1674. <value>A <see cref="T:DevExpress.XtraPrinting.Preview.ZoomBarEditItem"/> object which represents the zoom editor.
  1675. </value>
  1676. </member>
  1677. <member name="T:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx">
  1678. <summary>
  1679. <para>A print preview form with a standard toolbar.
  1680. </para>
  1681. </summary>
  1682. </member>
  1683. <member name="M:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx.#ctor">
  1684. <summary>
  1685. <para>Initializes a new instance of the PrintPreviewFormEx class with default settings.
  1686. </para>
  1687. </summary>
  1688. </member>
  1689. <member name="P:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx.PrintBarManager">
  1690. <summary>
  1691. <para>Gets the <see cref="T:DevExpress.XtraPrinting.Preview.PrintBarManager"/> of the <b>Print Preview Form</b>.
  1692. </para>
  1693. </summary>
  1694. <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintBarManager"/> object which represents the <b>Print Bar Manager</b> of the <b>Print Preview Form</b>.
  1695. </value>
  1696. </member>
  1697. <member name="T:DevExpress.XtraPrinting.Links.LinkPrintTool">
  1698. <summary>
  1699. <para>An instrument to print documents created by links.
  1700. </para>
  1701. </summary>
  1702. </member>
  1703. <member name="M:DevExpress.XtraPrinting.Links.LinkPrintTool.#ctor(DevExpress.XtraPrinting.LinkBase)">
  1704. <summary>
  1705. <para>Initializes a new instance of the LinkPrintTool class with the specified link.
  1706. </para>
  1707. </summary>
  1708. <param name="link">
  1709. A <see cref="T:DevExpress.XtraPrinting.LinkBase"/> descendant.
  1710. </param>
  1711. </member>
  1712. <member name="T:DevExpress.XtraPrinting.Control.BrickEventHandler">
  1713. <summary>
  1714. <para>Represents a method that will handle all brick events within the <b>XtraPrinting Library</b>.
  1715. </para>
  1716. </summary>
  1717. </member>
  1718. <member name="M:DevExpress.XtraPrinting.Control.BrickEventHandler.Invoke(System.Object,DevExpress.XtraPrinting.Control.BrickEventArgs)">
  1719. <summary>
  1720. <para>A method that will handle all brick events within the <b>XtraPrinting Library</b>.
  1721. </para>
  1722. </summary>
  1723. <param name="sender">
  1724. The event source.
  1725. </param>
  1726. <param name="e">
  1727. A <see cref="T:DevExpress.XtraPrinting.Control.BrickEventArgs"/> object that contains data related to the event.
  1728. </param>
  1729. </member>
  1730. <member name="T:DevExpress.XtraPrinting.Control.BrickEventArgs">
  1731. <summary>
  1732. <para>Provides data for all brick events within the <b>XtraPrinting Library</b>.
  1733. </para>
  1734. </summary>
  1735. </member>
  1736. <member name="M:DevExpress.XtraPrinting.Control.BrickEventArgs.#ctor(DevExpress.XtraPrinting.Brick)">
  1737. <summary>
  1738. <para>Initializes a new instance of the BrickEventArgs class with the specified brick.
  1739. </para>
  1740. </summary>
  1741. <param name="brick">
  1742. A <see cref="T:DevExpress.XtraPrinting.Brick"/> value, which represents the event's brick. This value is assigned to the <see cref="P:DevExpress.XtraPrinting.BrickEventArgsBase.Brick"/> property.
  1743. </param>
  1744. </member>
  1745. <member name="M:DevExpress.XtraPrinting.Control.BrickEventArgs.#ctor(System.EventArgs,DevExpress.XtraPrinting.Brick,DevExpress.XtraPrinting.Page,System.Drawing.Rectangle,System.Single,System.Single)">
  1746. <summary>
  1747. <para>Initializes a new instance of the BrickEventArgs class with the specified settings.
  1748. </para>
  1749. </summary>
  1750. <param name="args">
  1751. A <see cref="T:System.EventArgs"/> object.
  1752. </param>
  1753. <param name="brick">
  1754. A <see cref="T:DevExpress.XtraPrinting.Brick"/> object.
  1755. </param>
  1756. <param name="page">
  1757. A <see cref="T:DevExpress.XtraPrinting.Page"/> object.
  1758. </param>
  1759. <param name="brickScreenBounds">
  1760. A <see cref="T:System.Drawing.Rectangle"/> structure.
  1761. </param>
  1762. <param name="x">
  1763. A <see cref="T:System.Single"/> value.
  1764. </param>
  1765. <param name="y">
  1766. A <see cref="T:System.Single"/> value.
  1767. </param>
  1768. </member>
  1769. <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.Args">
  1770. <summary>
  1771. <para>Gets actual event arguments.
  1772. </para>
  1773. </summary>
  1774. <value>The actual event arguments.
  1775. </value>
  1776. </member>
  1777. <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.BrickScreenBounds">
  1778. <summary>
  1779. <para>Gets the custom editor that is shown when clicking a brick.
  1780. </para>
  1781. </summary>
  1782. <value>A <see cref="T:System.Drawing.Rectangle"/> structure.
  1783. </value>
  1784. </member>
  1785. <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.Page">
  1786. <summary>
  1787. <para>Gets the page on which the brick associated with the event is located.
  1788. </para>
  1789. </summary>
  1790. <value>A <see cref="T:DevExpress.XtraPrinting.Page"/> object specifying the page on which the brick is located.
  1791. </value>
  1792. </member>
  1793. <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.X">
  1794. <summary>
  1795. <para>Gets the X-coordinate offset of the brick associated with the event.
  1796. </para>
  1797. </summary>
  1798. <value>A float value specifying the brick's X-offset in three hundredths of an inch.
  1799. </value>
  1800. </member>
  1801. <member name="P:DevExpress.XtraPrinting.Control.BrickEventArgs.Y">
  1802. <summary>
  1803. <para>Gets the Y-coordinate offset of the brick associated with the event.
  1804. </para>
  1805. </summary>
  1806. <value>A float value specifying the brick's Y-offset in three hundredths of an inch.
  1807. </value>
  1808. </member>
  1809. <member name="T:DevExpress.XtraPrinting.PrintableComponentLink">
  1810. <summary>
  1811. <para>A link to print components that implement the <see cref="T:DevExpress.XtraPrinting.IPrintable"/> interface.
  1812. </para>
  1813. </summary>
  1814. </member>
  1815. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.#ctor(System.ComponentModel.IContainer)">
  1816. <summary>
  1817. <para>Initializes a new instance of the PrintableComponentLink class with the specified container.
  1818. </para>
  1819. </summary>
  1820. <param name="container">
  1821. An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface which specifies the owner container of a PrintableComponentLink class instance.
  1822. </param>
  1823. </member>
  1824. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.#ctor">
  1825. <summary>
  1826. <para>Initializes a new instance of the PrintableComponentLink class with default settings.
  1827. </para>
  1828. </summary>
  1829. </member>
  1830. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
  1831. <summary>
  1832. <para>Initializes a new instance of the PrintableComponentLink class with the specified printing system.
  1833. </para>
  1834. </summary>
  1835. <param name="ps">
  1836. 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.
  1837. </param>
  1838. </member>
  1839. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
  1840. <summary>
  1841. <para>Indicates whether or not the specified Printing System command can be handled.
  1842. </para>
  1843. </summary>
  1844. <param name="command">
  1845. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
  1846. </param>
  1847. <param name="printControl">
  1848. 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).
  1849. </param>
  1850. <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
  1851. </returns>
  1852. </member>
  1853. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
  1854. <summary>
  1855. <para>Generates a report using the specified Printing System.
  1856. </para>
  1857. </summary>
  1858. <param name="ps">
  1859. A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
  1860. </param>
  1861. </member>
  1862. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
  1863. <summary>
  1864. <para>Handles the specified Printing System command.
  1865. </para>
  1866. </summary>
  1867. <param name="command">
  1868. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
  1869. </param>
  1870. <param name="args">
  1871. A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
  1872. </param>
  1873. <param name="printControl">
  1874. 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).
  1875. </param>
  1876. <param name="handled">
  1877. <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
  1878. </param>
  1879. </member>
  1880. <member name="P:DevExpress.XtraPrinting.PrintableComponentLink.ImageCollection">
  1881. <summary>
  1882. <para>Provides access to the link's collection of images.
  1883. </para>
  1884. </summary>
  1885. <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
  1886. </value>
  1887. </member>
  1888. <member name="P:DevExpress.XtraPrinting.PrintableComponentLink.Images">
  1889. <summary>
  1890. <para>A collection of images which can be added to the Page Headers and Footers.
  1891. </para>
  1892. </summary>
  1893. <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
  1894. </value>
  1895. </member>
  1896. <member name="P:DevExpress.XtraPrinting.PrintableComponentLink.ImageStream">
  1897. <summary>
  1898. <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
  1899. </para>
  1900. </summary>
  1901. <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
  1902. </value>
  1903. </member>
  1904. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.Print(System.String)">
  1905. <summary>
  1906. <para>Prints the current document to the specified printer.
  1907. </para>
  1908. </summary>
  1909. <param name="printerName">
  1910. A <see cref="T:System.String"/> value, specifying the printer name.
  1911. </param>
  1912. </member>
  1913. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.PrintDlg">
  1914. <summary>
  1915. <para>Displays the standard <b>Print</b> dialog and prints the current document.
  1916. </para>
  1917. </summary>
  1918. </member>
  1919. <member name="P:DevExpress.XtraPrinting.PrintableComponentLink.PrintingSystem">
  1920. <summary>
  1921. <para>Gets or sets the Printing System used to create and print a document for this link.
  1922. </para>
  1923. </summary>
  1924. <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
  1925. </value>
  1926. </member>
  1927. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowPreview">
  1928. <summary>
  1929. <para>Invokes the Print Preview Form which shows the print preview of the document for this link.
  1930. </para>
  1931. </summary>
  1932. </member>
  1933. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  1934. <summary>
  1935. <para>Invokes the Print Preview Form which shows the print preview of the document for this link using the specified look and feel settings.
  1936. </para>
  1937. </summary>
  1938. <param name="lookAndFeel">
  1939. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
  1940. </param>
  1941. </member>
  1942. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
  1943. <summary>
  1944. <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.
  1945. </para>
  1946. </summary>
  1947. <param name="owner">
  1948. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
  1949. </param>
  1950. </member>
  1951. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowPreviewDialog">
  1952. <summary>
  1953. <para>Invokes the Print Preview Form which modally shows the print preview of the document for this link.
  1954. </para>
  1955. </summary>
  1956. </member>
  1957. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  1958. <summary>
  1959. <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.
  1960. </para>
  1961. </summary>
  1962. <param name="owner">
  1963. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the parent window for this dialog.
  1964. </param>
  1965. <param name="lookAndFeel">
  1966. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Preview Form.
  1967. </param>
  1968. </member>
  1969. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  1970. <summary>
  1971. <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  1972. </para>
  1973. </summary>
  1974. <param name="lookAndFeel">
  1975. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  1976. </param>
  1977. </member>
  1978. <member name="M:DevExpress.XtraPrinting.PrintableComponentLink.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
  1979. <summary>
  1980. <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  1981. </para>
  1982. </summary>
  1983. <param name="lookAndFeel">
  1984. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  1985. </param>
  1986. </member>
  1987. <member name="T:DevExpress.XtraPrinting.XtraPageSettings">
  1988. <summary>
  1989. <para>Provides functionality to print reports.
  1990. </para>
  1991. </summary>
  1992. </member>
  1993. <member name="M:DevExpress.XtraPrinting.XtraPageSettings.#ctor(DevExpress.XtraPrinting.PrintingSystemBase)">
  1994. <summary>
  1995. <para>Initializes a new instance of the XtraPageSettings class with the specified printing system.
  1996. </para>
  1997. </summary>
  1998. <param name="ps">
  1999. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> object, which identifies the printing system to be used.
  2000. </param>
  2001. </member>
  2002. <member name="M:DevExpress.XtraPrinting.XtraPageSettings.Assign(System.Drawing.Printing.PageSettings)">
  2003. <summary>
  2004. <para>Assigns the specified page settings.
  2005. </para>
  2006. </summary>
  2007. <param name="pageSettings">
  2008. A <see cref="T:System.Drawing.Printing.PageSettings"/> object providing the page settings.
  2009. </param>
  2010. </member>
  2011. <member name="M:DevExpress.XtraPrinting.XtraPageSettings.Assign(System.Drawing.Printing.Margins,System.Drawing.Printing.PaperKind,System.String,System.Boolean)">
  2012. <summary>
  2013. <para>Assigns the page margins, paper kind, paper name and page orientation of a document, simultaneously.
  2014. </para>
  2015. </summary>
  2016. <param name="margins">
  2017. A <see cref="T:System.Drawing.Printing.Margins"/> object which specifies the margins of the document.
  2018. </param>
  2019. <param name="paperKind">
  2020. A <see cref="T:System.Drawing.Printing.PaperKind"/> value which specifies one of the standard paper sizes.
  2021. </param>
  2022. <param name="paperName">
  2023. 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.
  2024. </param>
  2025. <param name="landscape">
  2026. <b>true</b> to print a page in landscape orientation; otherwise, <b>false</b>.
  2027. </param>
  2028. </member>
  2029. <member name="M:DevExpress.XtraPrinting.XtraPageSettings.AssignDefaultPrinterSettings">
  2030. <summary>
  2031. <para>Assigns the default printer's settings to the <see cref="T:DevExpress.XtraPrinting.XtraPageSettings"/> object.
  2032. </para>
  2033. </summary>
  2034. </member>
  2035. <member name="M:DevExpress.XtraPrinting.XtraPageSettings.AssignDefaultPrinterSettings(DevExpress.XtraPrinting.PrinterSettingsUsing)">
  2036. <summary>
  2037. <para>Assigns the default printer settings to the current page settings according to the specified <see cref="T:DevExpress.XtraPrinting.PrinterSettingsUsing"/> value.
  2038. </para>
  2039. </summary>
  2040. <param name="settingsUsing">
  2041. A <see cref="T:DevExpress.XtraPrinting.PrinterSettingsUsing"/> object specifying which of the printer settings should be assigned.
  2042. </param>
  2043. </member>
  2044. <member name="M:DevExpress.XtraPrinting.XtraPageSettings.AssignPrinterSettings(System.String,System.String,DevExpress.XtraPrinting.PrinterSettingsUsing)">
  2045. <summary>
  2046. <para>Assigns the specified printer's settings to the XtraPageSettings object.
  2047. </para>
  2048. </summary>
  2049. <param name="printerName">
  2050. 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.
  2051. </param>
  2052. <param name="paperName">
  2053. 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.
  2054. </param>
  2055. <param name="settingsUsing">
  2056. A <see cref="T:DevExpress.XtraPrinting.PrinterSettingsUsing"/> object specifying which of the printer settings should be assigned.
  2057. </param>
  2058. </member>
  2059. <member name="P:DevExpress.XtraPrinting.XtraPageSettings.PageSettings">
  2060. <summary>
  2061. <para>Provides access to the current page settings.
  2062. </para>
  2063. </summary>
  2064. <value>A <see cref="T:System.Drawing.Printing.PageSettings"/> object representing the current page settings.
  2065. </value>
  2066. </member>
  2067. <member name="T:DevExpress.XtraPrinting.Control.PrintControl">
  2068. <summary>
  2069. <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.
  2070. </para>
  2071. </summary>
  2072. </member>
  2073. <member name="M:DevExpress.XtraPrinting.Control.PrintControl.#ctor">
  2074. <summary>
  2075. <para>Initializes a new instance of the PrintControl class with default settings.
  2076. </para>
  2077. </summary>
  2078. </member>
  2079. <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickClick">
  2080. <summary>
  2081. <para>Occurs when the region of a brick within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> is clicked.
  2082. </para>
  2083. </summary>
  2084. </member>
  2085. <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickDoubleClick">
  2086. <summary>
  2087. <para>Occurs when a brick within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/> is double-clicked.
  2088. </para>
  2089. </summary>
  2090. </member>
  2091. <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickDown">
  2092. <summary>
  2093. <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.
  2094. </para>
  2095. </summary>
  2096. </member>
  2097. <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickMouseDown">
  2098. <summary>
  2099. <para>Occurs when pressing the mouse button over a brick's region within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
  2100. </para>
  2101. </summary>
  2102. </member>
  2103. <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickMouseMove">
  2104. <summary>
  2105. <para>Occurs when moving the mouse over a brick's region within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
  2106. </para>
  2107. </summary>
  2108. </member>
  2109. <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickMouseUp">
  2110. <summary>
  2111. <para>Occurs when releasing the mouse button over a brick's region within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
  2112. </para>
  2113. </summary>
  2114. </member>
  2115. <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickMove">
  2116. <summary>
  2117. <para>Occurs when the mouse pointer moves over the region specified by a brick within the <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
  2118. </para>
  2119. </summary>
  2120. </member>
  2121. <member name="E:DevExpress.XtraPrinting.Control.PrintControl.BrickUp">
  2122. <summary>
  2123. <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.
  2124. </para>
  2125. </summary>
  2126. </member>
  2127. <member name="M:DevExpress.XtraPrinting.Control.PrintControl.CanExecCommand(DevExpress.XtraPrinting.PrintingSystemCommand)">
  2128. <summary>
  2129. <para>Checks whether or not the specified command can be executed.
  2130. </para>
  2131. </summary>
  2132. <param name="command">
  2133. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value.
  2134. </param>
  2135. <returns><b>true</b> if the command can be executed; otherwise <b>false</b>.
  2136. </returns>
  2137. </member>
  2138. <member name="E:DevExpress.XtraPrinting.Control.PrintControl.CommandChanged">
  2139. <summary>
  2140. <para>Occurs after the status of a printing system command has been changed.
  2141. </para>
  2142. </summary>
  2143. </member>
  2144. <member name="P:DevExpress.XtraPrinting.Control.PrintControl.DockManager">
  2145. <summary>
  2146. <para>Provides access to the Print Control's dock manager.
  2147. </para>
  2148. </summary>
  2149. <value>A <see cref="T:DevExpress.XtraBars.Docking.DockManager"/> object, representing the dock manager.
  2150. </value>
  2151. </member>
  2152. <member name="P:DevExpress.XtraPrinting.Control.PrintControl.DocumentHasBookmarks">
  2153. <summary>
  2154. <para>Specifies whether or not bookmarks are specified for a document associated with the PrintControl.
  2155. </para>
  2156. </summary>
  2157. <value><b>true</b> if the document contains bookmarks; otherwise <b>false</b>.
  2158. </value>
  2159. </member>
  2160. <member name="M:DevExpress.XtraPrinting.Control.PrintControl.ExecCommand(DevExpress.XtraPrinting.PrintingSystemCommand)">
  2161. <summary>
  2162. <para>Executes the printing system command without any parameters.
  2163. </para>
  2164. </summary>
  2165. <param name="command">
  2166. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value representing the command to be executed.
  2167. </param>
  2168. </member>
  2169. <member name="M:DevExpress.XtraPrinting.Control.PrintControl.ExecCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[])">
  2170. <summary>
  2171. <para>Executes the specified printing system command and passes the specified parameters.
  2172. </para>
  2173. </summary>
  2174. <param name="command">
  2175. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value representing the command to be executed.
  2176. </param>
  2177. <param name="args">
  2178. A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the executing command.
  2179. </param>
  2180. </member>
  2181. <member name="M:DevExpress.XtraPrinting.Control.PrintControl.FindBrick(System.Drawing.Point)">
  2182. <summary>
  2183. <para>Finds a brick based on specific screen coordinates.
  2184. </para>
  2185. </summary>
  2186. <param name="screenPoint">
  2187. A screen coordinate point used to locate a brick.
  2188. </param>
  2189. <returns>A <see cref="T:DevExpress.XtraPrinting.Brick"/> class instance to which a specific point belongs.
  2190. </returns>
  2191. </member>
  2192. <member name="M:DevExpress.XtraPrinting.Control.PrintControl.FindBrickBy(System.Drawing.Point,DevExpress.XtraPrinting.Page@,System.Drawing.RectangleF@)">
  2193. <summary>
  2194. <para>Finds a <see cref="T:DevExpress.XtraPrinting.Brick"/> instance that corresponds to the specified parameters.
  2195. </para>
  2196. </summary>
  2197. <param name="screenPoint">
  2198. A <see cref="T:System.Drawing.Point"/> structure.
  2199. </param>
  2200. <param name="page">
  2201. A <see cref="T:DevExpress.XtraPrinting.Page"/> object.
  2202. </param>
  2203. <param name="brickBounds">
  2204. A <see cref="T:System.Drawing.RectangleF"/> structure.
  2205. </param>
  2206. <returns>A <see cref="T:DevExpress.XtraPrinting.Brick"/> object.
  2207. </returns>
  2208. </member>
  2209. <member name="M:DevExpress.XtraPrinting.Control.PrintControl.GetBrickScreenBounds(DevExpress.XtraPrinting.Brick,DevExpress.XtraPrinting.Page)">
  2210. <summary>
  2211. <para>Obtains the location and size of the specified brick on the screen.
  2212. </para>
  2213. </summary>
  2214. <param name="brick">
  2215. A <see cref="T:DevExpress.XtraPrinting.Brick"/> object representing the brick whose bounds should be determined.
  2216. </param>
  2217. <param name="page">
  2218. A <see cref="T:DevExpress.XtraPrinting.Page"/> object representing the page containing the brick whose bounds should be determined.
  2219. </param>
  2220. <returns>A <see cref="T:System.Drawing.Rectangle"/> object representing brick bounds on the screen.
  2221. </returns>
  2222. </member>
  2223. <member name="M:DevExpress.XtraPrinting.Control.PrintControl.InvalidateBrick(DevExpress.XtraPrinting.Brick)">
  2224. <summary>
  2225. <para>Redraws the region specified by a brick within a <see cref="T:DevExpress.XtraPrinting.Control.PrintControl"/>.
  2226. </para>
  2227. </summary>
  2228. <param name="brick">
  2229. A <see cref="T:DevExpress.XtraPrinting.Brick"/> class instance whose visual representation needs to be redrawn.
  2230. </param>
  2231. </member>
  2232. <member name="M:DevExpress.XtraPrinting.Control.PrintControl.IsCommandEnabled(DevExpress.XtraPrinting.PrintingSystemCommand)">
  2233. <summary>
  2234. <para>Specifies whether or not the printing system command is enabled.
  2235. </para>
  2236. </summary>
  2237. <param name="command">
  2238. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value.
  2239. </param>
  2240. <returns><b>true</b> if the command is enabled; otherwise <b>false</b>.
  2241. </returns>
  2242. </member>
  2243. <member name="E:DevExpress.XtraPrinting.Control.PrintControl.PaintBookmarkArea">
  2244. <summary>
  2245. <para>Occurs after a selection border has been drawn around an element in Print Preview.
  2246. </para>
  2247. </summary>
  2248. </member>
  2249. <member name="P:DevExpress.XtraPrinting.Control.PrintControl.PrintingSystem">
  2250. <summary>
  2251. <para>Specifies the Printing System that is used to create and print a document for the link associated with the PrintControl.
  2252. </para>
  2253. </summary>
  2254. <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> class descendant.
  2255. </value>
  2256. </member>
  2257. <member name="M:DevExpress.XtraPrinting.Control.PrintControl.SetDocumentMapVisibility(System.Boolean)">
  2258. <summary>
  2259. <para>Sets the visibility of the <b>Document Map</b> which is available if the document, represented by the Print Control, contains at least one bookmark.
  2260. </para>
  2261. </summary>
  2262. <param name="value">
  2263. <b>true</b> to show the <b>Document Map</b>; otherwise, <b>false</b>.
  2264. </param>
  2265. </member>
  2266. <member name="M:DevExpress.XtraPrinting.Control.PrintControl.ShowBrick(DevExpress.XtraPrinting.Brick,DevExpress.XtraPrinting.Page)">
  2267. <summary>
  2268. <para>Moves the print control's focus to the specified brick which is printed on the specified page.
  2269. </para>
  2270. </summary>
  2271. <param name="brick">
  2272. A <see cref="T:DevExpress.XtraPrinting.Brick"/> object representing the brick to which focus is moved.
  2273. </param>
  2274. <param name="page">
  2275. A <see cref="T:DevExpress.XtraPrinting.Page"/> object representing the page where the brick is printed. Note that if a brick is split across two or more pages, then only the part of the brick which is printed on the specified page will be focused.
  2276. </param>
  2277. </member>
  2278. <member name="T:DevExpress.XtraPrinting.PrintingSystem">
  2279. <summary>
  2280. <para>Implements the basic printing functionality of the XtraPrinting Library.
  2281. </para>
  2282. </summary>
  2283. </member>
  2284. <member name="M:DevExpress.XtraPrinting.PrintingSystem.#ctor(System.ComponentModel.IContainer)">
  2285. <summary>
  2286. <para>Initializes a new <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance and adds it to the form's container.
  2287. </para>
  2288. </summary>
  2289. <param name="container">
  2290. An <b>IContainer</b> that contains a <b>XtraPrintingSystem</b> component, if any.
  2291. </param>
  2292. </member>
  2293. <member name="M:DevExpress.XtraPrinting.PrintingSystem.#ctor">
  2294. <summary>
  2295. <para>Initializes a new instance of the PrintingSystem class with default settings.
  2296. </para>
  2297. </summary>
  2298. </member>
  2299. <member name="M:DevExpress.XtraPrinting.PrintingSystem.About">
  2300. <summary>
  2301. <para>Activates the <b>About</b> dialog.
  2302. </para>
  2303. </summary>
  2304. </member>
  2305. <member name="P:DevExpress.XtraPrinting.PrintingSystem.Links">
  2306. <summary>
  2307. <para>Gets the collection of links, defined for the current <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
  2308. </para>
  2309. </summary>
  2310. <value>The link collection of the current <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
  2311. </value>
  2312. </member>
  2313. <member name="P:DevExpress.XtraPrinting.PrintingSystem.PageSettings">
  2314. <summary>
  2315. <para>Gets the current page settings.
  2316. </para>
  2317. </summary>
  2318. <value>Current page settings.
  2319. </value>
  2320. </member>
  2321. <member name="M:DevExpress.XtraPrinting.PrintingSystem.PageSetup">
  2322. <summary>
  2323. <para>Displays the <b>PageSetup</b> dialog.
  2324. </para>
  2325. </summary>
  2326. <returns><b>true</b>, if the "OK" button is clicked in the <b>PageSetup</b> dialog, <b>false</b>, if the "Cancel" button is clicked in the <b>PageSetup</b> dialog.
  2327. </returns>
  2328. </member>
  2329. <member name="P:DevExpress.XtraPrinting.PrintingSystem.PreviewFormEx">
  2330. <summary>
  2331. <para>Gets the form used to display the document preview.
  2332. </para>
  2333. </summary>
  2334. <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewFormEx"/> object which represents the current preview form.
  2335. </value>
  2336. </member>
  2337. <member name="P:DevExpress.XtraPrinting.PrintingSystem.PreviewRibbonFormEx">
  2338. <summary>
  2339. <para>Gets the Ribbon form used to display the document preview.
  2340. </para>
  2341. </summary>
  2342. <value>A <see cref="T:DevExpress.XtraPrinting.Preview.PrintPreviewRibbonFormEx"/> object which represents the current preview form.
  2343. </value>
  2344. </member>
  2345. <member name="M:DevExpress.XtraPrinting.PrintingSystem.Print">
  2346. <summary>
  2347. <para>Prints the current document.
  2348. </para>
  2349. </summary>
  2350. </member>
  2351. <member name="M:DevExpress.XtraPrinting.PrintingSystem.Print(System.String)">
  2352. <summary>
  2353. <para>Prints the current document to the specified printer.
  2354. </para>
  2355. </summary>
  2356. <param name="printerName">
  2357. A <see cref="T:System.String"/> representing the name of the printer on which to print the document.
  2358. </param>
  2359. </member>
  2360. <member name="M:DevExpress.XtraPrinting.PrintingSystem.PrintDlg">
  2361. <summary>
  2362. <para>Displays the standard <b>Print</b> dialog and prints the current document.
  2363. </para>
  2364. </summary>
  2365. <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value containing the return value of the print dialog box.
  2366. </returns>
  2367. </member>
  2368. <member name="P:DevExpress.XtraPrinting.PrintingSystem.Watermark">
  2369. <summary>
  2370. <para>Provides access to watermark settings of the printing system's document.
  2371. </para>
  2372. </summary>
  2373. <value>A <see cref="T:DevExpress.XtraPrinting.Drawing.Watermark"/> object containing watermark settings.
  2374. </value>
  2375. </member>
  2376. <member name="T:DevExpress.XtraPrinting.Link">
  2377. <summary>
  2378. <para>A printing link.
  2379. </para>
  2380. </summary>
  2381. </member>
  2382. <member name="M:DevExpress.XtraPrinting.Link.#ctor(System.ComponentModel.IContainer)">
  2383. <summary>
  2384. <para>Initializes a new instance of the Link class with the specified container.
  2385. </para>
  2386. </summary>
  2387. <param name="container">
  2388. An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface which specifies the owner container of a Link class instance.
  2389. </param>
  2390. </member>
  2391. <member name="M:DevExpress.XtraPrinting.Link.#ctor">
  2392. <summary>
  2393. <para>Initializes a new instance of the Link class with default settings.
  2394. </para>
  2395. </summary>
  2396. </member>
  2397. <member name="M:DevExpress.XtraPrinting.Link.#ctor(DevExpress.XtraPrinting.PrintingSystem)">
  2398. <summary>
  2399. <para>Initializes a new instance of the Link class with the specified printing system.
  2400. </para>
  2401. </summary>
  2402. <param name="ps">
  2403. 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.
  2404. </param>
  2405. </member>
  2406. <member name="M:DevExpress.XtraPrinting.Link.CanHandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,DevExpress.XtraPrinting.IPrintControl)">
  2407. <summary>
  2408. <para>Indicates whether or not the specified Printing System command can be handled.
  2409. </para>
  2410. </summary>
  2411. <param name="command">
  2412. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value that specifies the command.
  2413. </param>
  2414. <param name="printControl">
  2415. 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).
  2416. </param>
  2417. <returns><b>true</b> if the command can be handled; otherwise, <b>false</b>.
  2418. </returns>
  2419. </member>
  2420. <member name="M:DevExpress.XtraPrinting.Link.CreateDocument(DevExpress.XtraPrinting.PrintingSystem)">
  2421. <summary>
  2422. <para>Generates a report using the specified <b>PrintingSystem</b>.
  2423. </para>
  2424. </summary>
  2425. <param name="ps">
  2426. A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> class instance, specifying the printing system of the link.
  2427. </param>
  2428. </member>
  2429. <member name="M:DevExpress.XtraPrinting.Link.HandleCommand(DevExpress.XtraPrinting.PrintingSystemCommand,System.Object[],DevExpress.XtraPrinting.IPrintControl,System.Boolean@)">
  2430. <summary>
  2431. <para>Handles the specified Printing System command.
  2432. </para>
  2433. </summary>
  2434. <param name="command">
  2435. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemCommand"/> enumeration value which specifies the command to be handled.
  2436. </param>
  2437. <param name="args">
  2438. A collection of <see cref="T:System.Object"/> objects representing the parameters to be passed to the handled command.
  2439. </param>
  2440. <param name="printControl">
  2441. 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).
  2442. </param>
  2443. <param name="handled">
  2444. <b>true</b> if the command has been handled by a link; otherwise, <b>false</b>.
  2445. </param>
  2446. </member>
  2447. <member name="P:DevExpress.XtraPrinting.Link.ImageCollection">
  2448. <summary>
  2449. <para>Provides access to the link's collection of images.
  2450. </para>
  2451. </summary>
  2452. <value>An <see cref="T:DevExpress.Utils.ImageCollection"/> object.
  2453. </value>
  2454. </member>
  2455. <member name="P:DevExpress.XtraPrinting.Link.Images">
  2456. <summary>
  2457. <para>A collection of images which can be added to the Page Headers and Footers.
  2458. </para>
  2459. </summary>
  2460. <value>An <see cref="T:DevExpress.Utils.Images"/> object which represents a collection of images that can be used in the report.
  2461. </value>
  2462. </member>
  2463. <member name="P:DevExpress.XtraPrinting.Link.ImageStream">
  2464. <summary>
  2465. <para>For internal use. Specifies a stream which contains images to display in the link's Page Header and Footer.
  2466. </para>
  2467. </summary>
  2468. <value>A <see cref="T:DevExpress.Utils.ImageCollectionStreamer"/> object.
  2469. </value>
  2470. </member>
  2471. <member name="M:DevExpress.XtraPrinting.Link.Print(System.String)">
  2472. <summary>
  2473. <para>Prints the current document to the specified printer.
  2474. </para>
  2475. </summary>
  2476. <param name="printerName">
  2477. A <see cref="T:System.String"/> representing the name of the printer on which to print the document.
  2478. </param>
  2479. </member>
  2480. <member name="M:DevExpress.XtraPrinting.Link.PrintDlg">
  2481. <summary>
  2482. <para>Displays the standard <b>Print</b> dialog and prints the current document.
  2483. </para>
  2484. </summary>
  2485. </member>
  2486. <member name="P:DevExpress.XtraPrinting.Link.PrintingSystem">
  2487. <summary>
  2488. <para>Gets or sets the Printing System used to create and print a document for this link.
  2489. </para>
  2490. </summary>
  2491. <value>A <see cref="T:DevExpress.XtraPrinting.PrintingSystem"/> object.
  2492. </value>
  2493. </member>
  2494. <member name="M:DevExpress.XtraPrinting.Link.ShowPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  2495. <summary>
  2496. <para>Invokes the <b>Print Preview Form</b> which shows the print preview of the document for this link using the specified look and feel settings.
  2497. </para>
  2498. </summary>
  2499. <param name="lookAndFeel">
  2500. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Print Preview Form.
  2501. </param>
  2502. </member>
  2503. <member name="M:DevExpress.XtraPrinting.Link.ShowPreview">
  2504. <summary>
  2505. <para>Invokes the <b>Print Preview Form</b> which shows the print preview of the document for this link.
  2506. </para>
  2507. </summary>
  2508. </member>
  2509. <member name="M:DevExpress.XtraPrinting.Link.ShowPreviewDialog(System.Windows.Forms.IWin32Window)">
  2510. <summary>
  2511. <para>Invokes the <b>Print Preview Form</b>, which modally shows the print preview of the document for this link as a <i>child</i> of the specified <i>parent</i> window.
  2512. </para>
  2513. </summary>
  2514. <param name="owner">
  2515. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
  2516. </param>
  2517. </member>
  2518. <member name="M:DevExpress.XtraPrinting.Link.ShowPreviewDialog">
  2519. <summary>
  2520. <para>Invokes the <b>Print Preview Form</b> which modally shows the print preview of the document for this link.
  2521. </para>
  2522. </summary>
  2523. </member>
  2524. <member name="M:DevExpress.XtraPrinting.Link.ShowPreviewDialog(System.Windows.Forms.IWin32Window,DevExpress.LookAndFeel.UserLookAndFeel)">
  2525. <summary>
  2526. <para>Invokes the <b>Print Preview Form</b> which modally shows the print preview of the document for this link as a <i>child</i> of the specified <i>parent</i> window, using the specified look and feel settings.
  2527. </para>
  2528. </summary>
  2529. <param name="owner">
  2530. A <see cref="T:System.Windows.Forms.IWin32Window"/> object representing the <i>parent</i> window for this dialog.
  2531. </param>
  2532. <param name="lookAndFeel">
  2533. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the <b>Preview Form</b>.
  2534. </param>
  2535. </member>
  2536. <member name="M:DevExpress.XtraPrinting.Link.ShowRibbonPreview(DevExpress.LookAndFeel.UserLookAndFeel)">
  2537. <summary>
  2538. <para>Invokes the Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  2539. </para>
  2540. </summary>
  2541. <param name="lookAndFeel">
  2542. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  2543. </param>
  2544. </member>
  2545. <member name="M:DevExpress.XtraPrinting.Link.ShowRibbonPreviewDialog(DevExpress.LookAndFeel.UserLookAndFeel)">
  2546. <summary>
  2547. <para>Invokes the modal Ribbon Print Preview form with the document created from this link, using the specified look and feel settings.
  2548. </para>
  2549. </summary>
  2550. <param name="lookAndFeel">
  2551. A <see cref="T:DevExpress.LookAndFeel.UserLookAndFeel"/> object which specifies the look and feel settings applied to the Ribbon Print Preview form.
  2552. </param>
  2553. </member>
  2554. <member name="T:DevExpress.XtraPrinting.ExportOptionsTool">
  2555. <summary>
  2556. <para>Enables editing the export options of a report before saving it to a third-party format.
  2557. </para>
  2558. </summary>
  2559. </member>
  2560. <member name="M:DevExpress.XtraPrinting.ExportOptionsTool.EditExportOptions(DevExpress.XtraPrinting.ExportOptionsBase,DevExpress.XtraPrinting.PrintingSystemBase)">
  2561. <summary>
  2562. <para>Invokes the <b>Export Options</b> dialog.
  2563. </para>
  2564. </summary>
  2565. <param name="options">
  2566. An <see cref="T:DevExpress.XtraPrinting.ExportOptionsTool"/> descendant that specifies the report export options.
  2567. </param>
  2568. <param name="ps">
  2569. A <see cref="T:DevExpress.XtraPrinting.PrintingSystemBase"/> descendant.
  2570. </param>
  2571. <returns>A <see cref="T:System.Windows.Forms.DialogResult"/> enumeration value.
  2572. </returns>
  2573. </member>
  2574. </members>
  2575. </doc>