1729fb99fc4351d666f26271518dd3d9e373b06a.svn-base 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>DevExpress.Office.v15.1.Core</name>
  5. </assembly>
  6. <members>
  7. <member name="T:DevExpress.Office.Utils.OfficeImageFormat">
  8. <summary>
  9. <para>Lists supported image formats.
  10. </para>
  11. </summary>
  12. </member>
  13. <member name="F:DevExpress.Office.Utils.OfficeImageFormat.Bmp">
  14. <summary>
  15. <para>Specifies the bitmap (BMP) image format.
  16. </para>
  17. </summary>
  18. </member>
  19. <member name="F:DevExpress.Office.Utils.OfficeImageFormat.Emf">
  20. <summary>
  21. <para>Specifies the enhanced metafile (EMF) image format.
  22. </para>
  23. </summary>
  24. </member>
  25. <member name="F:DevExpress.Office.Utils.OfficeImageFormat.Exif">
  26. <summary>
  27. <para>Specifies the Exchangeable Image File (Exif) format.
  28. </para>
  29. </summary>
  30. </member>
  31. <member name="F:DevExpress.Office.Utils.OfficeImageFormat.Gif">
  32. <summary>
  33. <para>Specifies the Graphics Interchange Format (GIF) image format.
  34. </para>
  35. </summary>
  36. </member>
  37. <member name="F:DevExpress.Office.Utils.OfficeImageFormat.Icon">
  38. <summary>
  39. <para>Specifies the Windows icon image format.
  40. </para>
  41. </summary>
  42. </member>
  43. <member name="F:DevExpress.Office.Utils.OfficeImageFormat.Jpeg">
  44. <summary>
  45. <para>Specifies the Joint Photographic Experts Group (JPEG) image format.
  46. </para>
  47. </summary>
  48. </member>
  49. <member name="F:DevExpress.Office.Utils.OfficeImageFormat.MemoryBmp">
  50. <summary>
  51. <para>Specifies a memory bitmap image format.
  52. </para>
  53. </summary>
  54. </member>
  55. <member name="F:DevExpress.Office.Utils.OfficeImageFormat.None">
  56. <summary>
  57. <para>Unspecified format.
  58. </para>
  59. </summary>
  60. </member>
  61. <member name="F:DevExpress.Office.Utils.OfficeImageFormat.Png">
  62. <summary>
  63. <para>Specifies the W3C Portable Network Graphics (PNG) image format.
  64. </para>
  65. </summary>
  66. </member>
  67. <member name="F:DevExpress.Office.Utils.OfficeImageFormat.Tiff">
  68. <summary>
  69. <para>Specifies the Tagged Image File Format (TIFF) image format.
  70. </para>
  71. </summary>
  72. </member>
  73. <member name="F:DevExpress.Office.Utils.OfficeImageFormat.Wmf">
  74. <summary>
  75. <para>Specifies the Windows metafile (WMF) image format.
  76. </para>
  77. </summary>
  78. </member>
  79. <member name="T:DevExpress.Office.Localization.OfficeResLocalizer">
  80. <summary>
  81. <para>A default localizer to translate resources for DevExpress office products (e.g., Rich Text Editor, Spreadsheet).
  82. </para>
  83. </summary>
  84. </member>
  85. <member name="M:DevExpress.Office.Localization.OfficeResLocalizer.#ctor">
  86. <summary>
  87. <para>Initializes a new instance of the OfficeResLocalizer class with default settings.
  88. </para>
  89. </summary>
  90. </member>
  91. <member name="T:DevExpress.Office.Localization.OfficeLocalizer">
  92. <summary>
  93. <para>A base class that provides necessary functionality for custom localizers of elements which are common for office-inspired controls.
  94. </para>
  95. </summary>
  96. </member>
  97. <member name="M:DevExpress.Office.Localization.OfficeLocalizer.#ctor">
  98. <summary>
  99. <para>Initializes a new instance of the OfficeLocalizer class with default settings.
  100. </para>
  101. </summary>
  102. </member>
  103. <member name="M:DevExpress.Office.Localization.OfficeLocalizer.CreateDefaultLocalizer">
  104. <summary>
  105. <para>Returns a localizer object, which provides resources based on the thread's language and regional settings (culture).
  106. </para>
  107. </summary>
  108. <returns>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> object representing resources based on the thread's culture.
  109. </returns>
  110. </member>
  111. <member name="M:DevExpress.Office.Localization.OfficeLocalizer.CreateResXLocalizer">
  112. <summary>
  113. <para>Returns a localizer object, which provides resources based on the thread's language and regional settings (culture).
  114. </para>
  115. </summary>
  116. <returns>A <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> object, which provides resources based on the thread's culture.
  117. </returns>
  118. </member>
  119. <member name="M:DevExpress.Office.Localization.OfficeLocalizer.GetString(DevExpress.Office.Localization.OfficeStringId)">
  120. <summary>
  121. <para>Returns a localized string for the given string identifier.
  122. </para>
  123. </summary>
  124. <param name="id">
  125. An <see cref="T:DevExpress.Office.Localization.OfficeStringId"/> enumeration value identifying the string to localize.
  126. </param>
  127. <returns>A <see cref="T:System.String"/> corresponding to the specified identifier.
  128. </returns>
  129. </member>
  130. <member name="T:DevExpress.Office.DocumentLayoutUnit">
  131. <summary>
  132. <para>Lists measurement units used for the document layout.
  133. </para>
  134. </summary>
  135. </member>
  136. <member name="F:DevExpress.Office.DocumentLayoutUnit.Document">
  137. <summary>
  138. <para>Specifies documents (one three-hundredths of an inch) as measurement units.
  139. </para>
  140. </summary>
  141. </member>
  142. <member name="F:DevExpress.Office.DocumentLayoutUnit.Pixel">
  143. <summary>
  144. <para>Specifies pixels as measurement units.
  145. </para>
  146. </summary>
  147. </member>
  148. <member name="F:DevExpress.Office.DocumentLayoutUnit.Twip">
  149. <summary>
  150. <para>Specifies twips (1,440 twips equal one inch, and 567 twips equal one centimeter) as measurement units.
  151. </para>
  152. </summary>
  153. </member>
  154. <member name="T:DevExpress.Office.Export.Html.HtmlExporterBase">
  155. <summary>
  156. <para>Base class for objects used by Office-inspired controls to export the document content in HTML format.
  157. </para>
  158. </summary>
  159. </member>
  160. <member name="M:DevExpress.Office.Export.Html.HtmlExporterBase.Export">
  161. <summary>
  162. <para>Exports the document to a string in HTML format.
  163. </para>
  164. </summary>
  165. <returns>A string containing a document in HTML format.
  166. </returns>
  167. </member>
  168. <member name="M:DevExpress.Office.Export.Html.HtmlExporterBase.Export(System.IO.TextWriter)">
  169. <summary>
  170. <para>Exports a document in HTML format using the specified writer to write exported data as a series of characters.
  171. </para>
  172. </summary>
  173. <param name="writer">
  174. A <see cref="T:System.IO.TextWriter"/> descendant which writes exported data as a sequential series of characters.
  175. </param>
  176. </member>
  177. <member name="T:DevExpress.Office.Services.IUriProviderService">
  178. <summary>
  179. <para>Represents a service that calls the registered <see cref="T:DevExpress.Office.Services.IUriProvider"/> interface when required.
  180. </para>
  181. </summary>
  182. </member>
  183. <member name="M:DevExpress.Office.Services.IUriProviderService.CreateCssUri(System.String,System.String,System.String)">
  184. <summary>
  185. <para>Creates URI for CSS data.
  186. </para>
  187. </summary>
  188. <param name="url">
  189. A string that specifies the root URI.
  190. </param>
  191. <param name="styleText">
  192. A string containing CSS definitions for which the URI is created.
  193. </param>
  194. <param name="relativeUri">
  195. A string that specifies the relative part of the URI (path relative to the root).
  196. </param>
  197. <returns>A string that is the URI of CSS data.
  198. </returns>
  199. </member>
  200. <member name="M:DevExpress.Office.Services.IUriProviderService.CreateImageUri(System.String,DevExpress.Office.Utils.OfficeImage,System.String)">
  201. <summary>
  202. <para>Provides the URI string for the specified image.
  203. </para>
  204. </summary>
  205. <param name="rootUri">
  206. A string that specifies the root URI.
  207. </param>
  208. <param name="image">
  209. An <see cref="T:DevExpress.Office.Utils.OfficeImage"/> object for which the URI is created.
  210. </param>
  211. <param name="relativeUri">
  212. A string that specifies the relative part of the URI (path relative to the root).
  213. </param>
  214. <returns>A string that is the image URI.
  215. </returns>
  216. </member>
  217. <member name="M:DevExpress.Office.Services.IUriProviderService.RegisterProvider(DevExpress.Office.Services.IUriProvider)">
  218. <summary>
  219. <para>Registers the URI provider and makes it available to clients of the service.
  220. </para>
  221. </summary>
  222. <param name="provider">
  223. An object which exposes the <see cref="T:DevExpress.Office.Services.IUriProvider"/> interface.
  224. </param>
  225. </member>
  226. <member name="M:DevExpress.Office.Services.IUriProviderService.UnregisterProvider(DevExpress.Office.Services.IUriProvider)">
  227. <summary>
  228. <para>Cancels the registration of an URI provider, and makes it unavailable to the clients of the service.
  229. </para>
  230. </summary>
  231. <param name="provider">
  232. An object which exposes the <see cref="T:DevExpress.Office.Services.IUriStreamProvider"/> interface.
  233. </param>
  234. </member>
  235. <member name="T:DevExpress.Office.DocumentUnit">
  236. <summary>
  237. <para>Lists measurement units used in the document.
  238. </para>
  239. </summary>
  240. </member>
  241. <member name="F:DevExpress.Office.DocumentUnit.Centimeter">
  242. <summary>
  243. <para>Specifies centimeters as measurement units.
  244. </para>
  245. </summary>
  246. </member>
  247. <member name="F:DevExpress.Office.DocumentUnit.Document">
  248. <summary>
  249. <para>Specifies documents (one three-hundredths of an inch) as measurement units.
  250. </para>
  251. </summary>
  252. </member>
  253. <member name="F:DevExpress.Office.DocumentUnit.Inch">
  254. <summary>
  255. <para>Specifies inches as measurement units.
  256. </para>
  257. </summary>
  258. </member>
  259. <member name="F:DevExpress.Office.DocumentUnit.Millimeter">
  260. <summary>
  261. <para>Specifies millimeters as measurement units.
  262. </para>
  263. </summary>
  264. </member>
  265. <member name="F:DevExpress.Office.DocumentUnit.Point">
  266. <summary>
  267. <para>Specifies points as measurement units.
  268. </para>
  269. </summary>
  270. </member>
  271. <member name="T:DevExpress.Office.Services.IUriProvider">
  272. <summary>
  273. <para>Defines the provider of the locations for external objects in a document export.
  274. </para>
  275. </summary>
  276. </member>
  277. <member name="M:DevExpress.Office.Services.IUriProvider.CreateCssUri(System.String,System.String,System.String)">
  278. <summary>
  279. <para>Creates URI for CSS data.
  280. </para>
  281. </summary>
  282. <param name="rootUri">
  283. A string that specifies the root URI.
  284. </param>
  285. <param name="styleText">
  286. A string containing CSS definitions for which the URI is created.
  287. </param>
  288. <param name="relativeUri">
  289. A string that specifies the relative part of the URI (path relative to the root).
  290. </param>
  291. <returns>A string that is the URI of CSS data.
  292. </returns>
  293. </member>
  294. <member name="M:DevExpress.Office.Services.IUriProvider.CreateImageUri(System.String,DevExpress.Office.Utils.OfficeImage,System.String)">
  295. <summary>
  296. <para>Creates an image URI.
  297. </para>
  298. </summary>
  299. <param name="rootUri">
  300. A string that specifies the root URI.
  301. </param>
  302. <param name="image">
  303. An <see cref="T:DevExpress.Office.Utils.OfficeImage"/> object for which the URI is created.
  304. </param>
  305. <param name="relativeUri">
  306. A string that specifies the relative part of the URI (path relative to the root).
  307. </param>
  308. <returns>A string that is the image URI.
  309. </returns>
  310. </member>
  311. <member name="T:DevExpress.Office.Services.IUriStreamService">
  312. <summary>
  313. <para>Defines a service which is called to retrieve data from the URI specified in some types of document fields.
  314. </para>
  315. </summary>
  316. </member>
  317. <member name="M:DevExpress.Office.Services.IUriStreamService.GetStream(System.String)">
  318. <summary>
  319. <para>Provides the data stream for the specified Uri.
  320. </para>
  321. </summary>
  322. <param name="url">
  323. A string specifying the URI of the object that is the source of the stream.
  324. </param>
  325. <returns>A <see cref="T:System.IO.Stream"/> object specifying a data stream.
  326. </returns>
  327. </member>
  328. <member name="M:DevExpress.Office.Services.IUriStreamService.RegisterProvider(DevExpress.Office.Services.IUriStreamProvider)">
  329. <summary>
  330. <para>Registers the Uri data stream provider and makes it available to clients of the service.
  331. </para>
  332. </summary>
  333. <param name="provider">
  334. An object which exposes the <see cref="T:DevExpress.Office.Services.IUriStreamProvider"/> interface.
  335. </param>
  336. </member>
  337. <member name="M:DevExpress.Office.Services.IUriStreamService.UnregisterProvider(DevExpress.Office.Services.IUriStreamProvider)">
  338. <summary>
  339. <para>Cancels the registration of an Uri data stream provider, and makes it unavailable to the clients of the service.
  340. </para>
  341. </summary>
  342. <param name="provider">
  343. An object which exposes the <see cref="T:DevExpress.Office.Services.IUriStreamProvider"/> interface.
  344. </param>
  345. </member>
  346. <member name="T:DevExpress.Office.Services.IUriStreamProvider">
  347. <summary>
  348. <para>Defines the data stream provider for the <see cref="T:DevExpress.Office.Services.IUriStreamService"/>.
  349. </para>
  350. </summary>
  351. </member>
  352. <member name="M:DevExpress.Office.Services.IUriStreamProvider.GetStream(System.String)">
  353. <summary>
  354. <para>Provides the data stream for the specified Uri.
  355. </para>
  356. </summary>
  357. <param name="uri">
  358. A string specifying the URI of the object that is the source of the stream.
  359. </param>
  360. <returns>A <see cref="T:System.IO.Stream"/> object specifying a data stream or <b>null</b> (<b>Nothing</b> in Visual Basic).
  361. </returns>
  362. </member>
  363. <member name="T:DevExpress.Office.Utils.OfficeImage">
  364. <summary>
  365. <para>An image in the document.
  366. </para>
  367. </summary>
  368. </member>
  369. <member name="M:DevExpress.Office.Utils.OfficeImage.CanGetImageBytes(DevExpress.Office.Utils.OfficeImageFormat)">
  370. <summary>
  371. <para>Indicates whether the OfficeImage descendant can get image data as an array of bytes.
  372. </para>
  373. </summary>
  374. <param name="imageFormat">
  375. An <see cref="T:DevExpress.Office.Utils.OfficeImageFormat"/> enumeration member specifying the format of the resulting image data.
  376. </param>
  377. <returns><b>true</b> if the <b>OfficeImage</b> descendant implements the <b>GetImageBytes</b> method; otherwise, <b>false</b>.
  378. </returns>
  379. </member>
  380. <member name="M:DevExpress.Office.Utils.OfficeImage.Clone(DevExpress.Office.IDocumentModel)">
  381. <summary>
  382. <para>For internal use only.
  383. </para>
  384. </summary>
  385. <param name="target">
  386. </param>
  387. <returns>
  388. </returns>
  389. </member>
  390. <member name="M:DevExpress.Office.Utils.OfficeImage.CreateImage(System.Drawing.Image)">
  391. <summary>
  392. <para>This member supports the internal infrastructure and is not intended to be used directly from your code.
  393. </para>
  394. </summary>
  395. <param name="nativeImage">
  396. </param>
  397. <returns>
  398. </returns>
  399. </member>
  400. <member name="M:DevExpress.Office.Utils.OfficeImage.CreateImage(System.IO.Stream)">
  401. <summary>
  402. <para>This member supports the internal infrastructure and is not intended to be used directly from your code.
  403. </para>
  404. </summary>
  405. <param name="stream">
  406. </param>
  407. <returns>
  408. </returns>
  409. </member>
  410. <member name="M:DevExpress.Office.Utils.OfficeImage.CreateImage(DevExpress.Office.Utils.MemoryStreamBasedImage)">
  411. <summary>
  412. <para>This member supports the internal infrastructure and is not intended to be used directly from your code.
  413. </para>
  414. </summary>
  415. <param name="streamBasedImage">
  416. </param>
  417. <returns>
  418. </returns>
  419. </member>
  420. <member name="M:DevExpress.Office.Utils.OfficeImage.CreateImage(System.IO.Stream,DevExpress.Office.Model.IUniqueImageId)">
  421. <summary>
  422. <para>This member supports the internal infrastructure and is not intended to be used directly from your code.
  423. </para>
  424. </summary>
  425. <param name="stream">
  426. </param>
  427. <param name="id">
  428. </param>
  429. <returns>
  430. </returns>
  431. </member>
  432. <member name="P:DevExpress.Office.Utils.OfficeImage.DesiredSizeAfterLoad">
  433. <summary>
  434. <para>For internal use only.
  435. </para>
  436. </summary>
  437. <value>
  438. </value>
  439. </member>
  440. <member name="M:DevExpress.Office.Utils.OfficeImage.Dispose">
  441. <summary>
  442. <para>Releases all resources used by this object.
  443. </para>
  444. </summary>
  445. </member>
  446. <member name="M:DevExpress.Office.Utils.OfficeImage.GetContentType(DevExpress.Office.Utils.OfficeImageFormat)">
  447. <summary>
  448. <para>Static method used to get the MIME content type by the <see cref="T:DevExpress.Office.Utils.OfficeImageFormat"/> value.
  449. </para>
  450. </summary>
  451. <param name="imageFormat">
  452. An <see cref="T:DevExpress.Office.Utils.OfficeImageFormat"/> enumeration member specifying the image format.
  453. </param>
  454. <returns>A string indicating the mime content type.
  455. </returns>
  456. </member>
  457. <member name="M:DevExpress.Office.Utils.OfficeImage.GetExtension(DevExpress.Office.Utils.OfficeImageFormat)">
  458. <summary>
  459. <para>Static method used to obtain an extension by the <see cref="T:DevExpress.Office.Utils.OfficeImageFormat"/> value.
  460. </para>
  461. </summary>
  462. <param name="imageFormat">
  463. An <see cref="T:DevExpress.Office.Utils.OfficeImageFormat"/> enumeration member specifying the image format.
  464. </param>
  465. <returns>A string specifying a file extension for a given image format.
  466. </returns>
  467. </member>
  468. <member name="M:DevExpress.Office.Utils.OfficeImage.GetImageBytes(DevExpress.Office.Utils.OfficeImageFormat)">
  469. <summary>
  470. <para>Returns a byte array of image data encoded in the specified format.
  471. </para>
  472. </summary>
  473. <param name="imageFormat">
  474. An <see cref="T:DevExpress.Office.Utils.OfficeImageFormat"/> enumeration member specifying the format of the resulting image data.
  475. </param>
  476. <returns>A <see cref="T:System.Byte"/> array that contains the image data.
  477. </returns>
  478. </member>
  479. <member name="M:DevExpress.Office.Utils.OfficeImage.GetImageBytesSafe(DevExpress.Office.Utils.OfficeImageFormat)">
  480. <summary>
  481. <para>Attempts to get image data as an array of bytes in specified format, and in case of failure gets the data in PNG format.
  482. </para>
  483. </summary>
  484. <param name="imageFormat">
  485. An <see cref="T:DevExpress.Office.Utils.OfficeImageFormat"/> enumeration member specifying the format of the resulting image data.
  486. </param>
  487. <returns>An array of bytes containing image data.
  488. </returns>
  489. </member>
  490. <member name="M:DevExpress.Office.Utils.OfficeImage.GetImageBytesStreamSafe(DevExpress.Office.Utils.OfficeImageFormat)">
  491. <summary>
  492. <para>Attempts to get image data as a stream in the specified format, and in case of a failure, gets the data in PNG format.
  493. </para>
  494. </summary>
  495. <param name="imageFormat">
  496. An <see cref="T:DevExpress.Office.Utils.OfficeImageFormat"/> enumeration member specifying the format of the resulting image data.
  497. </param>
  498. <returns>A <see cref="T:System.IO.Stream"/> containing image data.
  499. </returns>
  500. </member>
  501. <member name="P:DevExpress.Office.Utils.OfficeImage.HorizontalResolution">
  502. <summary>
  503. <para>Gets the horizontal resolution of the image in pixels per inch.
  504. </para>
  505. </summary>
  506. <value>The horizontal resolution of this image in pixels per inch.
  507. </value>
  508. </member>
  509. <member name="M:DevExpress.Office.Utils.OfficeImage.IsExportSupported(DevExpress.Office.Utils.OfficeImageFormat)">
  510. <summary>
  511. <para>This property is overridden in <b>OfficeImage</b> class descendants to indicate image formats not suitable for export.
  512. </para>
  513. </summary>
  514. <param name="rawFormat">
  515. An <see cref="T:DevExpress.Office.Utils.OfficeImageFormat"/> enumeration member specifying the image format to export.
  516. </param>
  517. <returns>Always <b>true</b>.
  518. </returns>
  519. </member>
  520. <member name="P:DevExpress.Office.Utils.OfficeImage.IsLoaded">
  521. <summary>
  522. <para>For internal use only.
  523. </para>
  524. </summary>
  525. <value>
  526. </value>
  527. </member>
  528. <member name="P:DevExpress.Office.Utils.OfficeImage.NativeImage">
  529. <summary>
  530. <para>Provides access to the native <see cref="T:System.Drawing.Image"/> object.
  531. </para>
  532. </summary>
  533. <value>A <see cref="T:System.Drawing.Image"/> object specifying a native image.
  534. </value>
  535. </member>
  536. <member name="E:DevExpress.Office.Utils.OfficeImage.NativeImageChanged">
  537. <summary>
  538. <para>Intended for internal use.
  539. </para>
  540. </summary>
  541. </member>
  542. <member name="E:DevExpress.Office.Utils.OfficeImage.NativeImageChanging">
  543. <summary>
  544. <para>Intended for internal use.
  545. </para>
  546. </summary>
  547. </member>
  548. <member name="P:DevExpress.Office.Utils.OfficeImage.PaletteLength">
  549. <summary>
  550. <para>Gets the number of colors in the image palette.
  551. </para>
  552. </summary>
  553. <value>A <see cref="T:System.Int32"/> value specifying the number of entries in the palette color table.
  554. </value>
  555. </member>
  556. <member name="P:DevExpress.Office.Utils.OfficeImage.PixelFormat">
  557. <summary>
  558. <para>Gets the pixel format of the image.
  559. </para>
  560. </summary>
  561. <value>An <see cref="T:DevExpress.Office.Utils.OfficePixelFormat"/> enumeration member specifying the pixel format.
  562. </value>
  563. </member>
  564. <member name="P:DevExpress.Office.Utils.OfficeImage.RawFormat">
  565. <summary>
  566. <para>Gets the file format of this image.
  567. </para>
  568. </summary>
  569. <value>An <see cref="T:DevExpress.Office.Utils.OfficeImageFormat"/> enumeration member specifying the image file format.
  570. </value>
  571. </member>
  572. <member name="P:DevExpress.Office.Utils.OfficeImage.RootImage">
  573. <summary>
  574. <para>This property is overridden in <b>OfficeImage</b> descendants to point to a single instance of an image that can be incorporated in different objects.
  575. </para>
  576. </summary>
  577. <value>An <see cref="T:DevExpress.Office.Utils.OfficeImage"/> object that is the image in the document.
  578. </value>
  579. </member>
  580. <member name="P:DevExpress.Office.Utils.OfficeImage.ShouldSetDesiredSizeAfterLoad">
  581. <summary>
  582. <para>For internal use only.
  583. </para>
  584. </summary>
  585. <value>
  586. </value>
  587. </member>
  588. <member name="P:DevExpress.Office.Utils.OfficeImage.SizeInDocuments">
  589. <summary>
  590. <para>Gets the size of an image in <see cref="F:DevExpress.Office.DocumentUnit.Document"/> units.
  591. </para>
  592. </summary>
  593. <value>A <see cref="T:System.Drawing.Size"/> structure specifying the image size measured in documents.
  594. </value>
  595. </member>
  596. <member name="P:DevExpress.Office.Utils.OfficeImage.SizeInHundredthsOfMillimeter">
  597. <summary>
  598. <para>Gets the size of an image in hundredths of a millimeter.
  599. </para>
  600. </summary>
  601. <value>A <see cref="T:System.Drawing.Size"/> structure specifying the image size measured in hundredths of a millimeter.
  602. </value>
  603. </member>
  604. <member name="P:DevExpress.Office.Utils.OfficeImage.SizeInOriginalUnits">
  605. <summary>
  606. <para>This property is overridden in <b>OfficeImage</b> descendants to get the size of a native image measured in original units.
  607. </para>
  608. </summary>
  609. <value>A <see cref="T:System.Drawing.Size"/> structure specifying the image size measured in original units.
  610. </value>
  611. </member>
  612. <member name="P:DevExpress.Office.Utils.OfficeImage.SizeInPixels">
  613. <summary>
  614. <para>Gets the size of an image in pixels.
  615. </para>
  616. </summary>
  617. <value>A <see cref="T:System.Drawing.Size"/> structure specifying the image size measured in pixels.
  618. </value>
  619. </member>
  620. <member name="P:DevExpress.Office.Utils.OfficeImage.SizeInTwips">
  621. <summary>
  622. <para>Gets the size of an image in twips (1,440 twips equals one inch, and 567 twips equals one centimeter).
  623. </para>
  624. </summary>
  625. <value>A <see cref="T:System.Drawing.Size"/> structure specifying the image size measured in twips.
  626. </value>
  627. </member>
  628. <member name="P:DevExpress.Office.Utils.OfficeImage.Uri">
  629. <summary>
  630. <para>This property is overridden in <b>OfficeImage</b> class descendants to get the URI of the image.
  631. </para>
  632. </summary>
  633. <value>A string specifying the URI of an image.
  634. </value>
  635. </member>
  636. <member name="P:DevExpress.Office.Utils.OfficeImage.VerticalResolution">
  637. <summary>
  638. <para>Gets the horizontal resolution of the image in pixels per inch.
  639. </para>
  640. </summary>
  641. <value>The horizontal resolution of this image in pixels per inch.
  642. </value>
  643. </member>
  644. <member name="T:DevExpress.Office.Utils.OfficePixelFormat">
  645. <summary>
  646. <para>Lists formats of the color data for each pixel in the image.
  647. </para>
  648. </summary>
  649. </member>
  650. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Alpha">
  651. <summary>
  652. <para>The pixel data contains alpha values that are not premultiplied.
  653. </para>
  654. </summary>
  655. </member>
  656. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Canonical">
  657. <summary>
  658. <para>The default pixel format of 32 bits per pixel. The format specifies 24-bit color depth and an 8-bit alpha channel.
  659. </para>
  660. </summary>
  661. </member>
  662. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.DontCare">
  663. <summary>
  664. <para>No pixel format is specified.
  665. </para>
  666. </summary>
  667. </member>
  668. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Extended">
  669. <summary>
  670. <para>Reserved.
  671. </para>
  672. </summary>
  673. </member>
  674. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format16bppArgb1555">
  675. <summary>
  676. <para>The pixel format is 16 bits per pixel. The color information specifies 32,768 shades of color, of which 5 bits are red, 5 bits are green, 5 bits are blue, and 1 bit is alpha.
  677. </para>
  678. </summary>
  679. </member>
  680. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format16bppGrayScale">
  681. <summary>
  682. <para>The pixel format is 16 bits per pixel. The color information specifies 65536 shades of gray.
  683. </para>
  684. </summary>
  685. </member>
  686. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format16bppRgb555">
  687. <summary>
  688. <para>Specifies that the format is 16 bits per pixel; 5 bits each are used for the red, green, and blue components. The remaining bit is not used.
  689. </para>
  690. </summary>
  691. </member>
  692. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format16bppRgb565">
  693. <summary>
  694. <para>Specifies that the format is 16 bits per pixel; 5 bits are used for the red component, 6 bits are used for the green component, and 5 bits are used for the blue component.
  695. </para>
  696. </summary>
  697. </member>
  698. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format1bppIndexed">
  699. <summary>
  700. <para>Specifies that the pixel format is 1 bit per pixel and that it uses indexed color. The color table therefore has two colors in it.
  701. </para>
  702. </summary>
  703. </member>
  704. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format24bppRgb">
  705. <summary>
  706. <para>Specifies that the format is 24 bits per pixel; 8 bits each are used for the red, green, and blue components.
  707. </para>
  708. </summary>
  709. </member>
  710. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format32bppArgb">
  711. <summary>
  712. <para>Specifies that the format is 32 bits per pixel; 8 bits each are used for the alpha, red, green, and blue components.
  713. </para>
  714. </summary>
  715. </member>
  716. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format32bppPArgb">
  717. <summary>
  718. <para>Specifies that the format is 32 bits per pixel; 8 bits each are used for the alpha, red, green, and blue components. The red, green, and blue components are premultiplied, according to the alpha component.
  719. </para>
  720. </summary>
  721. </member>
  722. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format32bppRgb">
  723. <summary>
  724. <para>Specifies that the format is 32 bits per pixel; 8 bits each are used for the red, green, and blue components. The remaining 8 bits are not used.
  725. </para>
  726. </summary>
  727. </member>
  728. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format48bppRgb">
  729. <summary>
  730. <para>Specifies that the format is 48 bits per pixel; 16 bits each are used for the red, green, and blue components.
  731. </para>
  732. </summary>
  733. </member>
  734. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format4bppIndexed">
  735. <summary>
  736. <para>Specifies that the format is 4 bits per pixel, indexed.
  737. </para>
  738. </summary>
  739. </member>
  740. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format64bppArgb">
  741. <summary>
  742. <para>Specifies that the format is 64 bits per pixel; 16 bits each are used for the alpha, red, green, and blue components.
  743. </para>
  744. </summary>
  745. </member>
  746. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format64bppPArgb">
  747. <summary>
  748. <para>Specifies that the format is 64 bits per pixel; 16 bits each are used for the alpha, red, green, and blue components. The red, green, and blue components are premultiplied according to the alpha component.
  749. </para>
  750. </summary>
  751. </member>
  752. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Format8bppIndexed">
  753. <summary>
  754. <para>Specifies that the format is 8 bits per pixel, indexed. The color table therefore has 256 colors in it.
  755. </para>
  756. </summary>
  757. </member>
  758. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Gdi">
  759. <summary>
  760. <para>The pixel data contains GDI colors.
  761. </para>
  762. </summary>
  763. </member>
  764. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Indexed">
  765. <summary>
  766. <para>The pixel data contains color-indexed values, which means the values are an index to colors in the system color table, as opposed to individual color values.
  767. </para>
  768. </summary>
  769. </member>
  770. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Max">
  771. <summary>
  772. <para>The maximum value for this enumeration.
  773. </para>
  774. </summary>
  775. </member>
  776. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.PAlpha">
  777. <summary>
  778. <para>The pixel format contains premultiplied alpha values.
  779. </para>
  780. </summary>
  781. </member>
  782. <member name="F:DevExpress.Office.Utils.OfficePixelFormat.Undefined">
  783. <summary>
  784. <para>The pixel format is undefined.
  785. </para>
  786. </summary>
  787. </member>
  788. <member name="T:DevExpress.Office.Import.IImporterOptions">
  789. <summary>
  790. <para>Defines options for the document being imported.
  791. </para>
  792. </summary>
  793. </member>
  794. <member name="P:DevExpress.Office.Import.IImporterOptions.SourceUri">
  795. <summary>
  796. <para>Gets or sets the URI of the document being imported.
  797. </para>
  798. </summary>
  799. <value>A string representing the document URI.
  800. </value>
  801. </member>
  802. <member name="T:DevExpress.Office.Export.IExporterOptions">
  803. <summary>
  804. <para>Defines options for the document being exported.
  805. </para>
  806. </summary>
  807. </member>
  808. <member name="P:DevExpress.Office.Export.IExporterOptions.TargetUri">
  809. <summary>
  810. <para>Gets or sets the URI of the document being exported.
  811. </para>
  812. </summary>
  813. <value>A string representing the document URI.
  814. </value>
  815. </member>
  816. <member name="T:DevExpress.Office.Utils.Units">
  817. <summary>
  818. <para>Helper class with static methods used for unit conversion.
  819. </para>
  820. </summary>
  821. </member>
  822. <member name="M:DevExpress.Office.Utils.Units.CentimetersToDocumentsF(System.Single)">
  823. <summary>
  824. <para>Converts a measurement from centimeters to documents. Returns the converted measurement as a <b>Single</b>.
  825. </para>
  826. </summary>
  827. <param name="value">
  828. The <b>Single</b> centimeter value to be converted to documents.
  829. </param>
  830. <returns>A <b>Single</b> value.
  831. </returns>
  832. </member>
  833. <member name="M:DevExpress.Office.Utils.Units.CentimetersToTwipsF(System.Single)">
  834. <summary>
  835. <para>Converts a measurement from centimeters to twips. Returns the converted measurement as a <see cref="T:System.Single"/>.
  836. </para>
  837. </summary>
  838. <param name="value">
  839. The <see cref="T:System.Single"/> value measured in centimeters to be converted to twips.
  840. </param>
  841. <returns>A <see cref="T:System.Single"/> value.
  842. </returns>
  843. </member>
  844. <member name="M:DevExpress.Office.Utils.Units.DocumentsToCentimetersF(System.Single)">
  845. <summary>
  846. <para>Converts a measurement from documents to centimeters. Returns the converted measurement as a <b>Single</b>.
  847. </para>
  848. </summary>
  849. <param name="value">
  850. The <b>Single</b> documents value to be converted to centimeters.
  851. </param>
  852. <returns>A <b>Single</b> value.
  853. </returns>
  854. </member>
  855. <member name="M:DevExpress.Office.Utils.Units.DocumentsToEmu(System.Int32)">
  856. <summary>
  857. <para>Converts a measurement from documents to EMUs (English Metric Unit).
  858. </para>
  859. </summary>
  860. <param name="val">
  861. An integer that is the value in documents.
  862. </param>
  863. <returns>An integer that is the value in EMUs.
  864. </returns>
  865. </member>
  866. <member name="M:DevExpress.Office.Utils.Units.DocumentsToEmuF(System.Single)">
  867. <summary>
  868. <para>Converts a measurement from EMUs (English Metric Unit) to documents represented by 64-bit integers.
  869. </para>
  870. </summary>
  871. <param name="val">
  872. A 64-bit integer that is the value in EMUs.
  873. </param>
  874. <returns>A 64-bit integer that is the value in documents.
  875. </returns>
  876. </member>
  877. <member name="M:DevExpress.Office.Utils.Units.DocumentsToEmuL(System.Int64)">
  878. <summary>
  879. <para>Converts a measurement from document units (documents) to EMUs (English Metric Unit) represented by 64-bit integers.
  880. </para>
  881. </summary>
  882. <param name="val">
  883. A 64-bit integer that is the value in documents.
  884. </param>
  885. <returns>A 64-bit integer that is the value in EMUs.
  886. </returns>
  887. </member>
  888. <member name="M:DevExpress.Office.Utils.Units.DocumentsToHundredthsOfInch(System.Drawing.Size)">
  889. <summary>
  890. <para>Converts measurements in the Size structure from documents to hundredths of an inch.
  891. </para>
  892. </summary>
  893. <param name="val">
  894. The <see cref="T:System.Drawing.Size"/> values in documents to be converted to hundredths of an inch.
  895. </param>
  896. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  897. </returns>
  898. </member>
  899. <member name="M:DevExpress.Office.Utils.Units.DocumentsToHundredthsOfInch(System.Int32)">
  900. <summary>
  901. <para>Converts a measurement from documents to hundredths of an inch. Returns the converted measurement as an <b>Integer</b>.
  902. </para>
  903. </summary>
  904. <param name="val">
  905. The <b>Integer</b> documents value to be converted to hundredths of an inch.
  906. </param>
  907. <returns>An <b>Integer</b> value.
  908. </returns>
  909. </member>
  910. <member name="M:DevExpress.Office.Utils.Units.DocumentsToHundredthsOfMillimeter(System.Int32)">
  911. <summary>
  912. <para>Converts a measurement from documents to hundredths of an inch. Returns the converted measurement as an <b>Integer</b>.
  913. </para>
  914. </summary>
  915. <param name="val">
  916. The <b>Integer</b> documents value to be converted to hundredths of an inch.
  917. </param>
  918. <returns>An <b>Integer</b> value.
  919. </returns>
  920. </member>
  921. <member name="M:DevExpress.Office.Utils.Units.DocumentsToHundredthsOfMillimeter(System.Drawing.Size)">
  922. <summary>
  923. <para>Converts measurements from documents to hundredths of a millimeter.
  924. </para>
  925. </summary>
  926. <param name="val">
  927. The <see cref="T:System.Drawing.Size"/> in documents to be converted to hundredths of a millimeter.
  928. </param>
  929. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  930. </returns>
  931. </member>
  932. <member name="M:DevExpress.Office.Utils.Units.DocumentsToInchesF(System.Single)">
  933. <summary>
  934. <para>Converts a measurement from documents to inches. Returns the converted measurement as a <b>Single</b>.
  935. </para>
  936. </summary>
  937. <param name="value">
  938. The <b>Single</b> documents value to be converted to inches.
  939. </param>
  940. <returns>A <b>Single</b> value.
  941. </returns>
  942. </member>
  943. <member name="M:DevExpress.Office.Utils.Units.DocumentsToMillimetersF(System.Single)">
  944. <summary>
  945. <para>Converts a measurement from documents to millimeters. Returns the converted measurement as a <b>Single</b>.
  946. </para>
  947. </summary>
  948. <param name="value">
  949. The <b>Single</b> documents value to be converted to millimeters.
  950. </param>
  951. <returns>A <b>Single</b> value.
  952. </returns>
  953. </member>
  954. <member name="M:DevExpress.Office.Utils.Units.DocumentsToPicasF(System.Single)">
  955. <summary>
  956. <para>Converts a measurement from documents to picas. Returns the converted measurement as a <b>Single</b>.
  957. </para>
  958. </summary>
  959. <param name="value">
  960. The <b>Single</b> documents value to be converted to picas.
  961. </param>
  962. <returns>A <b>Single</b> value.
  963. </returns>
  964. </member>
  965. <member name="M:DevExpress.Office.Utils.Units.DocumentsToPixels(System.Drawing.Rectangle,System.Single,System.Single)">
  966. <summary>
  967. <para>Converts point coordinates from documents to pixels.
  968. </para>
  969. </summary>
  970. <param name="val">
  971. The <see cref="T:System.Drawing.Point"/> with values in documents, to be converted to pixels.
  972. </param>
  973. <param name="dpiX">
  974. A dpi value used for conversion of the X-coordinate.
  975. </param>
  976. <param name="dpiY">
  977. A dpi value used for conversion of the Y-coordinate.
  978. </param>
  979. <returns>A <see cref="T:System.Drawing.Point"/> structure.
  980. </returns>
  981. </member>
  982. <member name="M:DevExpress.Office.Utils.Units.DocumentsToPixels(System.Drawing.RectangleF,System.Single,System.Single)">
  983. <summary>
  984. <para>Converts a rectangle from documents to pixels.
  985. </para>
  986. </summary>
  987. <param name="val">
  988. The <see cref="T:System.Drawing.Rectangle"/> with values in documents, to be converted to pixels.
  989. </param>
  990. <param name="dpiX">
  991. A dpi value used for conversion of the X-coordinate.
  992. </param>
  993. <param name="dpiY">
  994. A dpi value used for conversion of the Y-coordinate.
  995. </param>
  996. <returns>A <see cref="T:System.Drawing.Rectangle"/> structure.
  997. </returns>
  998. </member>
  999. <member name="M:DevExpress.Office.Utils.Units.DocumentsToPixels(System.Int32,System.Single)">
  1000. <summary>
  1001. <para>Converts a measurement from documents to pixels. Returns the converted measurement as an <b>Integer</b>.
  1002. </para>
  1003. </summary>
  1004. <param name="val">
  1005. The <b>Integer</b> documents value to be converted to pixels.
  1006. </param>
  1007. <param name="dpi">
  1008. A dpi value used for conversion.
  1009. </param>
  1010. <returns>An <b>Integer</b> value.
  1011. </returns>
  1012. </member>
  1013. <member name="M:DevExpress.Office.Utils.Units.DocumentsToPixels(System.Drawing.Point,System.Single,System.Single)">
  1014. <summary>
  1015. <para>Converts rectangle coordinates from documents to pixels.
  1016. </para>
  1017. </summary>
  1018. <param name="val">
  1019. A <see cref="T:System.Drawing.RectangleF"/> structure with values in documents, to be converted to pixels.
  1020. </param>
  1021. <param name="dpiX">
  1022. A dpi value used for conversion of the X-coordinate.
  1023. </param>
  1024. <param name="dpiY">
  1025. A dpi value used for conversion of the Y-coordinate.
  1026. </param>
  1027. <returns>A <see cref="T:System.Drawing.RectangleF"/> structure composed of four floating-point numbers that represent the location and size of a rectangle.
  1028. </returns>
  1029. </member>
  1030. <member name="M:DevExpress.Office.Utils.Units.DocumentsToPixels(System.Drawing.Size,System.Single,System.Single)">
  1031. <summary>
  1032. <para>Converts height and width from documents to pixels.
  1033. </para>
  1034. </summary>
  1035. <param name="val">
  1036. A <see cref="T:System.Drawing.Size"/> structure with values in documents to be converted to pixels.
  1037. </param>
  1038. <param name="dpiX">
  1039. A dpi value used for conversion of the X-coordinate.
  1040. </param>
  1041. <param name="dpiY">
  1042. A dpi value used for conversion of the Y-coordinate.
  1043. </param>
  1044. <returns>A <see cref="T:System.Drawing.Size"/> structure that contains height and width in pixels.
  1045. </returns>
  1046. </member>
  1047. <member name="M:DevExpress.Office.Utils.Units.DocumentsToPixelsF(System.Single,System.Single)">
  1048. <summary>
  1049. <para>Converts a measurement from documents to pixels. Returns the converted measurement as a <see cref="T:System.Double"/>.
  1050. </para>
  1051. </summary>
  1052. <param name="val">
  1053. The <see cref="T:System.Double"/> centimeters value to be converted to pixels.
  1054. </param>
  1055. <param name="dpi">
  1056. A dpi value used for conversion.
  1057. </param>
  1058. <returns>A <see cref="T:System.Double"/> value.
  1059. </returns>
  1060. </member>
  1061. <member name="M:DevExpress.Office.Utils.Units.DocumentsToPoints(System.Int32)">
  1062. <summary>
  1063. <para>Converts a measurement from documents to points. Returns the converted measurement as an <b>Integer</b>.
  1064. </para>
  1065. </summary>
  1066. <param name="val">
  1067. The <b>Integer</b> documents value to be converted to points.
  1068. </param>
  1069. <returns>An <b>Integer</b> value.
  1070. </returns>
  1071. </member>
  1072. <member name="M:DevExpress.Office.Utils.Units.DocumentsToPointsF(System.Single)">
  1073. <summary>
  1074. <para>Converts a measurement from documents to points. Returns the converted measurement as a <b>Single</b>.
  1075. </para>
  1076. </summary>
  1077. <param name="val">
  1078. The <b>Single</b> documents value to be converted to points.
  1079. </param>
  1080. <returns>A <b>Single</b> value.
  1081. </returns>
  1082. </member>
  1083. <member name="M:DevExpress.Office.Utils.Units.DocumentsToPointsFRound(System.Single)">
  1084. <summary>
  1085. <para>Converts a measurement from documents to points and rounds the result. Returns the converted measurement as a <b>Single</b>.
  1086. </para>
  1087. </summary>
  1088. <param name="val">
  1089. The <b>Single</b> documents value to be converted to points.
  1090. </param>
  1091. <returns>A <b>Single</b> value.
  1092. </returns>
  1093. </member>
  1094. <member name="M:DevExpress.Office.Utils.Units.DocumentsToTwips(System.Int32)">
  1095. <summary>
  1096. <para>Converts a measurement from documents to twips. Returns the converted measurement as an <b>Integer</b>.
  1097. </para>
  1098. </summary>
  1099. <param name="val">
  1100. The <b>Integer</b> documents value to be converted to twips.
  1101. </param>
  1102. <returns>An <b>Integer</b> value.
  1103. </returns>
  1104. </member>
  1105. <member name="M:DevExpress.Office.Utils.Units.DocumentsToTwips(System.Drawing.Size)">
  1106. <summary>
  1107. <para>Converts measurements from documents to twips.
  1108. </para>
  1109. </summary>
  1110. <param name="val">
  1111. The <see cref="T:System.Drawing.Size"/> with values in documents to be converted to twips.
  1112. </param>
  1113. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1114. </returns>
  1115. </member>
  1116. <member name="M:DevExpress.Office.Utils.Units.DocumentsToTwips(System.Drawing.RectangleF)">
  1117. <summary>
  1118. <para>Converts measurements from documents to twips.
  1119. </para>
  1120. </summary>
  1121. <param name="val">
  1122. The <see cref="T:System.Drawing.RectangleF"/> with values in documents to be converted to twips.
  1123. </param>
  1124. <returns>A <see cref="T:System.Drawing.RectangleF"/> structure.
  1125. </returns>
  1126. </member>
  1127. <member name="M:DevExpress.Office.Utils.Units.DocumentsToTwips(System.Drawing.Rectangle)">
  1128. <summary>
  1129. <para>Converts measurements from documents to twips.
  1130. </para>
  1131. </summary>
  1132. <param name="val">
  1133. The <see cref="T:System.Drawing.Rectangle"/> with values in documents to be converted to twips.
  1134. </param>
  1135. <returns>A <see cref="T:System.Drawing.Rectangle"/> structure.
  1136. </returns>
  1137. </member>
  1138. <member name="M:DevExpress.Office.Utils.Units.DocumentsToTwipsF(System.Single)">
  1139. <summary>
  1140. <para>Converts a measurement from documents to twips. Returns the converted measurement as a <b>Single</b>.
  1141. </para>
  1142. </summary>
  1143. <param name="val">
  1144. The <b>Single</b> value measured in documents to be converted to twips.
  1145. </param>
  1146. <returns>A <b>Single</b> value.
  1147. </returns>
  1148. </member>
  1149. <member name="M:DevExpress.Office.Utils.Units.DocumentsToTwipsL(System.Int64)">
  1150. <summary>
  1151. <para>Converts measurements from 64-bit signed integers to twips.
  1152. </para>
  1153. </summary>
  1154. <param name="val">
  1155. The <see cref="T:System.Int64"/> with values in documents to be converted to twips.
  1156. </param>
  1157. <returns>A <see cref="T:System.Int64"/> structure.
  1158. </returns>
  1159. </member>
  1160. <member name="M:DevExpress.Office.Utils.Units.EmuToDocuments(System.Int32)">
  1161. <summary>
  1162. <para>Converts a measurement from EMUs (English Metric Unit) to documents.
  1163. </para>
  1164. </summary>
  1165. <param name="val">
  1166. An integer that is the value in EMUs.
  1167. </param>
  1168. <returns>An integer that is the value in documents.
  1169. </returns>
  1170. </member>
  1171. <member name="M:DevExpress.Office.Utils.Units.EmuToDocumentsF(System.Int32)">
  1172. <summary>
  1173. <para>Converts a measurement from EMUs (English Metric Unit) to documents (floating point value).
  1174. </para>
  1175. </summary>
  1176. <param name="val">
  1177. An integer that is the value in EMUs.
  1178. </param>
  1179. <returns>A <see cref="T:System.Single"/> value in documents.
  1180. </returns>
  1181. </member>
  1182. <member name="M:DevExpress.Office.Utils.Units.EmuToDocumentsL(System.Int64)">
  1183. <summary>
  1184. <para>Converts a measurement from EMUs (English Metric Unit) to documents represented by 64-bit integers.
  1185. </para>
  1186. </summary>
  1187. <param name="val">
  1188. A 64-bit integer that is the value in EMUs.
  1189. </param>
  1190. <returns>A 64-bit integer that is the value in documents.
  1191. </returns>
  1192. </member>
  1193. <member name="M:DevExpress.Office.Utils.Units.EmuToTwips(System.Int32)">
  1194. <summary>
  1195. <para>Converts a measurement from EMUs (English Metric Unit) to twips.
  1196. </para>
  1197. </summary>
  1198. <param name="val">
  1199. An integer that is the value in EMUs.
  1200. </param>
  1201. <returns>An integer that is the value in twips.
  1202. </returns>
  1203. </member>
  1204. <member name="M:DevExpress.Office.Utils.Units.EmuToTwipsF(System.Int32)">
  1205. <summary>
  1206. <para>Converts a measurement from EMUs (English Metric Unit) to twips (floating point value).
  1207. </para>
  1208. </summary>
  1209. <param name="val">
  1210. An integer that is the value in EMUs.
  1211. </param>
  1212. <returns>A <see cref="T:System.Single"/> value in twips.
  1213. </returns>
  1214. </member>
  1215. <member name="M:DevExpress.Office.Utils.Units.EmuToTwipsL(System.Int64)">
  1216. <summary>
  1217. <para>Converts a measurement from EMUs (English Metric Unit) to twips represented by 64-bit integers.
  1218. </para>
  1219. </summary>
  1220. <param name="val">
  1221. A 64-bit integer that is the value in EMUs.
  1222. </param>
  1223. <returns>A 64-bit integer that is the value in twips.
  1224. </returns>
  1225. </member>
  1226. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfInchToDocuments(System.Drawing.Size)">
  1227. <summary>
  1228. <para>Converts measurements in the Size structure from hundredths of an inch to documents.
  1229. </para>
  1230. </summary>
  1231. <param name="val">
  1232. The <see cref="T:System.Drawing.Size"/> with values in hundredths of an inch to be converted to documents.
  1233. </param>
  1234. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1235. </returns>
  1236. </member>
  1237. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfInchToDocuments(System.Int32)">
  1238. <summary>
  1239. <para>Converts a measurement from hundredths of an inch to documents. Returns the converted measurement as an <b>Integer</b>.
  1240. </para>
  1241. </summary>
  1242. <param name="val">
  1243. The <b>Integer</b> hundredths of an inch value to be converted to documents.
  1244. </param>
  1245. <returns>An <b>Integer</b> value.
  1246. </returns>
  1247. </member>
  1248. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfInchToTwips(System.Drawing.Size)">
  1249. <summary>
  1250. <para>Converts measurements in the Size structure from hundredths of an inch to twips.
  1251. </para>
  1252. </summary>
  1253. <param name="val">
  1254. The <see cref="T:System.Drawing.Size"/> with values in hundredths of an inch to be converted to twips.
  1255. </param>
  1256. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1257. </returns>
  1258. </member>
  1259. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfInchToTwips(System.Int32)">
  1260. <summary>
  1261. <para>Converts a measurement from hundredths of an inch to twips. Returns the converted measurement as an <b>Integer</b>.
  1262. </para>
  1263. </summary>
  1264. <param name="val">
  1265. The <b>Integer</b> hundredths of an inch value to be converted to twips.
  1266. </param>
  1267. <returns>An <b>Integer</b> value.
  1268. </returns>
  1269. </member>
  1270. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfMillimeterToDocuments(System.Int32)">
  1271. <summary>
  1272. <para>Converts a measurement from hundredths of a millimeter to documents. Returns the converted measurement as an <b>Integer</b>.
  1273. </para>
  1274. </summary>
  1275. <param name="val">
  1276. The <b>Integer</b> hundredths of millimeter value to be converted to documents.
  1277. </param>
  1278. <returns>An <b>Integer</b> value.
  1279. </returns>
  1280. </member>
  1281. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfMillimeterToDocuments(System.Drawing.Size)">
  1282. <summary>
  1283. <para>Converts measurements from hundredths of a millimeter to documents.
  1284. </para>
  1285. </summary>
  1286. <param name="val">
  1287. The <see cref="T:System.Drawing.Size"/> with values in hundredths of a millimeter to be converted to documents.
  1288. </param>
  1289. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1290. </returns>
  1291. </member>
  1292. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfMillimeterToDocumentsRound(System.Drawing.Size)">
  1293. <summary>
  1294. <para>Converts measurements from hundredths of a millimeter to documents and rounds them to the nearest whole value.
  1295. </para>
  1296. </summary>
  1297. <param name="val">
  1298. The <see cref="T:System.Drawing.Size"/> with values in hundredths of a millimeter to be converted to documents.
  1299. </param>
  1300. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1301. </returns>
  1302. </member>
  1303. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfMillimeterToPixels(System.Int32,System.Single)">
  1304. <summary>
  1305. <para>Converts a measurement from hundredths of a millimeter to pixels. Returns the converted measurement as an <b>Integer</b>.
  1306. </para>
  1307. </summary>
  1308. <param name="val">
  1309. The <b>Integer</b> hundredths of a millimeter value to be converted to pixels.
  1310. </param>
  1311. <param name="dpi">
  1312. The dpi value used for conversion.
  1313. </param>
  1314. <returns>An <b>Integer</b> value.
  1315. </returns>
  1316. </member>
  1317. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfMillimeterToPixels(System.Drawing.Size,System.Single,System.Single)">
  1318. <summary>
  1319. <para>Converts a measurement from hundredths of a millimeter to pixels.
  1320. </para>
  1321. </summary>
  1322. <param name="val">
  1323. The <see cref="T:System.Drawing.Size"/> with values in hundredths of a millimeter to be converted to pixels.
  1324. </param>
  1325. <param name="dpiX">
  1326. A dpi value used for conversion of the X-coordinate.
  1327. </param>
  1328. <param name="dpiY">
  1329. A dpi value used for conversion of the Y-coordinate.
  1330. </param>
  1331. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1332. </returns>
  1333. </member>
  1334. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfMillimeterToTwips(System.Int32)">
  1335. <summary>
  1336. <para>Converts a measurement from hundredths of a millimeter to twips. Returns the converted measurement as an <b>Integer</b>.
  1337. </para>
  1338. </summary>
  1339. <param name="val">
  1340. The <b>Integer</b> hundredths of millimeter value to be converted to twips.
  1341. </param>
  1342. <returns>An <b>Integer</b> value.
  1343. </returns>
  1344. </member>
  1345. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfMillimeterToTwips(System.Drawing.Size)">
  1346. <summary>
  1347. <para>Converts measurements from hundredths of a millimeter to twips.
  1348. </para>
  1349. </summary>
  1350. <param name="val">
  1351. The <see cref="T:System.Drawing.Size"/> with values in hundredths of a millimeter to be converted to twips.
  1352. </param>
  1353. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1354. </returns>
  1355. </member>
  1356. <member name="M:DevExpress.Office.Utils.Units.HundredthsOfMillimeterToTwipsRound(System.Drawing.Size)">
  1357. <summary>
  1358. <para>Converts measurements from hundredths of a millimeter to twips and rounds them to the whole number nearest to the twip value.
  1359. </para>
  1360. </summary>
  1361. <param name="val">
  1362. The <see cref="T:System.Drawing.Size"/> with values in hundredths of a millimeter to be converted to twips.
  1363. </param>
  1364. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1365. </returns>
  1366. </member>
  1367. <member name="M:DevExpress.Office.Utils.Units.InchesToDocumentsF(System.Single)">
  1368. <summary>
  1369. <para>Converts a measurement from inches to documents. Returns the converted measurement as a <b>Single</b>.
  1370. </para>
  1371. </summary>
  1372. <param name="value">
  1373. The <b>Single</b> inches value to be converted to documents.
  1374. </param>
  1375. <returns>A <b>Single</b> value.
  1376. </returns>
  1377. </member>
  1378. <member name="M:DevExpress.Office.Utils.Units.InchesToPointsF(System.Single)">
  1379. <summary>
  1380. <para>Converts a measurement from inches to points. Returns the converted measurement as a <b>Single</b>.
  1381. </para>
  1382. </summary>
  1383. <param name="value">
  1384. The <see cref="T:System.Single"/> inches value to be converted to points.
  1385. </param>
  1386. <returns>A <see cref="T:System.Single"/> value.
  1387. </returns>
  1388. </member>
  1389. <member name="M:DevExpress.Office.Utils.Units.InchesToTwipsF(System.Single)">
  1390. <summary>
  1391. <para>Converts a measurement from inches to twips. Returns the converted measurement as a <b>Single</b>.
  1392. </para>
  1393. </summary>
  1394. <param name="value">
  1395. The <see cref="T:System.Single"/> inches value to be converted to twips.
  1396. </param>
  1397. <returns>A <see cref="T:System.Single"/> value.
  1398. </returns>
  1399. </member>
  1400. <member name="M:DevExpress.Office.Utils.Units.MillimetersToDocumentsF(System.Single)">
  1401. <summary>
  1402. <para>Converts a measurement from millimeters to documents. Returns the converted measurement as a <b>Single</b>.
  1403. </para>
  1404. </summary>
  1405. <param name="value">
  1406. The <b>Single</b> millimeters value to be converted to documents.
  1407. </param>
  1408. <returns>A <b>Single</b> value.
  1409. </returns>
  1410. </member>
  1411. <member name="M:DevExpress.Office.Utils.Units.MillimetersToPoints(System.Int32)">
  1412. <summary>
  1413. <para>Converts a measurement from millimeters to points. Returns the converted measurement as an <b>Integer</b>.
  1414. </para>
  1415. </summary>
  1416. <param name="value">
  1417. The <b>Integer</b> millimeters value to be converted to points.
  1418. </param>
  1419. <returns>An <b>Integer</b> value.
  1420. </returns>
  1421. </member>
  1422. <member name="M:DevExpress.Office.Utils.Units.MillimetersToPointsF(System.Single)">
  1423. <summary>
  1424. <para>Converts a measurement from millimeters to points. Returns the converted measurement as a <b>Single</b>.
  1425. </para>
  1426. </summary>
  1427. <param name="value">
  1428. A <b>Single</b> value in millimeters to be converted to points.
  1429. </param>
  1430. <returns>A <b>Single</b> value.
  1431. </returns>
  1432. </member>
  1433. <member name="M:DevExpress.Office.Utils.Units.MillimetersToTwipsF(System.Single)">
  1434. <summary>
  1435. <para>Converts a measurement from millimeters to twips. Returns the converted measurement as a <b>Single</b>.
  1436. </para>
  1437. </summary>
  1438. <param name="value">
  1439. The <see cref="T:System.Single"/> millimeters value to be converted to twips.
  1440. </param>
  1441. <returns>A <see cref="T:System.Single"/> value.
  1442. </returns>
  1443. </member>
  1444. <member name="M:DevExpress.Office.Utils.Units.PicasToDocumentsF(System.Single)">
  1445. <summary>
  1446. <para>Converts a measurement from picas to documents. Returns the converted measurement as a <b>Single</b>.
  1447. </para>
  1448. </summary>
  1449. <param name="value">
  1450. The <b>Single</b> picas value to be converted to documents.
  1451. </param>
  1452. <returns>A <b>Single</b> value.
  1453. </returns>
  1454. </member>
  1455. <member name="M:DevExpress.Office.Utils.Units.PicasToTwipsF(System.Single)">
  1456. <summary>
  1457. <para>Converts a measurement from picas to twips. Returns the converted measurement as a <b>Single</b>.
  1458. </para>
  1459. </summary>
  1460. <param name="value">
  1461. The <see cref="T:System.Single"/> picas value to be converted to twips.
  1462. </param>
  1463. <returns>A <see cref="T:System.Single"/> value.
  1464. </returns>
  1465. </member>
  1466. <member name="M:DevExpress.Office.Utils.Units.PixelsToDocuments(System.Drawing.Size,System.Single,System.Single)">
  1467. <summary>
  1468. <para>Converts measurements from pixels to documents.
  1469. </para>
  1470. </summary>
  1471. <param name="size">
  1472. The <see cref="T:System.Drawing.Size"/> structure in pixels to be converted to documents.
  1473. </param>
  1474. <param name="dpiX">
  1475. A dpi value used for conversion of the X-coordinate.
  1476. </param>
  1477. <param name="dpiY">
  1478. A dpi value used for conversion of the Y-coordinate.
  1479. </param>
  1480. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1481. </returns>
  1482. </member>
  1483. <member name="M:DevExpress.Office.Utils.Units.PixelsToDocuments(System.Int32,System.Single)">
  1484. <summary>
  1485. <para>Converts a measurement from pixels to documents. Returns the converted measurement as an <b>Integer</b>.
  1486. </para>
  1487. </summary>
  1488. <param name="val">
  1489. The <b>Integer</b> pixels value to be converted to documents.
  1490. </param>
  1491. <param name="dpi">
  1492. A dpi value used for conversion.
  1493. </param>
  1494. <returns>An <b>Integer</b> value.
  1495. </returns>
  1496. </member>
  1497. <member name="M:DevExpress.Office.Utils.Units.PixelsToDocuments(System.Drawing.RectangleF,System.Single,System.Single)">
  1498. <summary>
  1499. <para>Converts rectangle coordinates from pixels to documents.
  1500. </para>
  1501. </summary>
  1502. <param name="rect">
  1503. A <see cref="T:System.Drawing.RectangleF"/> structure with values in pixels, to be converted to documents.
  1504. </param>
  1505. <param name="dpiX">
  1506. A dpi value used for conversion of the X-coordinate.
  1507. </param>
  1508. <param name="dpiY">
  1509. A dpi value used for conversion of the Y-coordinate.
  1510. </param>
  1511. <returns>A <see cref="T:System.Drawing.RectangleF"/> structure composed of four floating-point numbers that represent the location and size of a rectangle.
  1512. </returns>
  1513. </member>
  1514. <member name="M:DevExpress.Office.Utils.Units.PixelsToDocuments(System.Drawing.Rectangle,System.Single,System.Single)">
  1515. <summary>
  1516. <para>Converts a rectangle from pixels to documents.
  1517. </para>
  1518. </summary>
  1519. <param name="rect">
  1520. The <see cref="T:System.Drawing.Rectangle"/> with measurements in pixels to be converted to documents.
  1521. </param>
  1522. <param name="dpiX">
  1523. A dpi value used for conversion of the X-coordinate.
  1524. </param>
  1525. <param name="dpiY">
  1526. A dpi value used for conversion of the Y-coordinate.
  1527. </param>
  1528. <returns>A <see cref="T:System.Drawing.Rectangle"/> structure.
  1529. </returns>
  1530. </member>
  1531. <member name="M:DevExpress.Office.Utils.Units.PixelsToDocuments(System.Double,System.Single)">
  1532. <summary>
  1533. <para>Converts a measurement from pixels to documents. Returns the converted measurement as an <b>Integer</b>.
  1534. </para>
  1535. </summary>
  1536. <param name="val">
  1537. The <b>Integer</b> pixels value to be converted to documents.
  1538. </param>
  1539. <param name="dpi">
  1540. A dpi value used for conversion.
  1541. </param>
  1542. <returns>An <b>Integer</b> value.
  1543. </returns>
  1544. </member>
  1545. <member name="M:DevExpress.Office.Utils.Units.PixelsToDocuments(System.Drawing.Point,System.Single,System.Single)">
  1546. <summary>
  1547. <para>Converts point coordinates from pixels to documents.
  1548. </para>
  1549. </summary>
  1550. <param name="point">
  1551. The <see cref="T:System.Drawing.Point"/> to be converted from pixels to documents.
  1552. </param>
  1553. <param name="dpiX">
  1554. A dpi value used for conversion of the X-coordinate.
  1555. </param>
  1556. <param name="dpiY">
  1557. A dpi value used for conversion of the Y-coordinate.
  1558. </param>
  1559. <returns>A <see cref="T:System.Drawing.Point"/> structure.
  1560. </returns>
  1561. </member>
  1562. <member name="M:DevExpress.Office.Utils.Units.PixelsToDocumentsF(System.Single,System.Single)">
  1563. <summary>
  1564. <para>Converts a measurement from pixels to documents. Returns the converted measurement as a <b>Single</b>.
  1565. </para>
  1566. </summary>
  1567. <param name="val">
  1568. The <see cref="T:System.Single"/> pixels value to be converted to documents.
  1569. </param>
  1570. <param name="dpi">
  1571. A dpi value of the <see cref="T:System.Single"/> type used for conversion.
  1572. </param>
  1573. <returns>A <see cref="T:System.Single"/> value.
  1574. </returns>
  1575. </member>
  1576. <member name="M:DevExpress.Office.Utils.Units.PixelsToDocumentsRound(System.Drawing.Size,System.Single,System.Single)">
  1577. <summary>
  1578. <para>Converts measurements from pixels to documents and rounds them to the nearest whole number.
  1579. </para>
  1580. </summary>
  1581. <param name="size">
  1582. The <see cref="T:System.Drawing.Size"/> structure in pixels to be converted to documents.
  1583. </param>
  1584. <param name="dpiX">
  1585. A dpi value used for conversion of the X-coordinate.
  1586. </param>
  1587. <param name="dpiY">
  1588. A dpi value used for conversion of the Y-coordinate.
  1589. </param>
  1590. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1591. </returns>
  1592. </member>
  1593. <member name="M:DevExpress.Office.Utils.Units.PixelsToHundredthsOfInch(System.Int32,System.Single)">
  1594. <summary>
  1595. <para>Converts a measurement from pixels to hundredths of an inch. Returns the converted measurement as an <b>Integer</b>.
  1596. </para>
  1597. </summary>
  1598. <param name="val">
  1599. An <b>Integer</b> pixels value to be converted to hundredths of an inch.
  1600. </param>
  1601. <param name="dpi">
  1602. A dpi value of the <see cref="T:System.Single"/> type used for conversion.
  1603. </param>
  1604. <returns>An <b>Integer</b> value.
  1605. </returns>
  1606. </member>
  1607. <member name="M:DevExpress.Office.Utils.Units.PixelsToHundredthsOfInch(System.Drawing.Size,System.Single)">
  1608. <summary>
  1609. <para>Converts measurements from pixels to hundredths of an inch.
  1610. </para>
  1611. </summary>
  1612. <param name="val">
  1613. The <see cref="T:System.Drawing.Size"/> in pixels to be converted to hundredths of an inch.
  1614. </param>
  1615. <param name="dpi">
  1616. A dpi value of the <see cref="T:System.Single"/> type used for conversion.
  1617. </param>
  1618. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1619. </returns>
  1620. </member>
  1621. <member name="M:DevExpress.Office.Utils.Units.PixelsToHundredthsOfMillimeter(System.Int32,System.Single)">
  1622. <summary>
  1623. <para>Converts a measurement from pixels to hundredths of a millimeter. Returns the converted measurement as an <b>Integer</b>.
  1624. </para>
  1625. </summary>
  1626. <param name="val">
  1627. An <b>Integer</b> pixels value to be converted to hundredths of a millimeter.
  1628. </param>
  1629. <param name="dpi">
  1630. A dpi value used for conversion.
  1631. </param>
  1632. <returns>An <b>Integer</b> value.
  1633. </returns>
  1634. </member>
  1635. <member name="M:DevExpress.Office.Utils.Units.PixelsToHundredthsOfMillimeter(System.Drawing.Size,System.Single,System.Single)">
  1636. <summary>
  1637. <para>Converts measurements from pixels to hundredths of a millimeter.
  1638. </para>
  1639. </summary>
  1640. <param name="val">
  1641. The <see cref="T:System.Drawing.Size"/> in pixels to be converted to hundredths of a millimeter.
  1642. </param>
  1643. <param name="dpiX">
  1644. A dpi value to be used for conversion of the X-coordinate.
  1645. </param>
  1646. <param name="dpiY">
  1647. A dpi value to be used for conversion of the Y-coordinate.
  1648. </param>
  1649. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1650. </returns>
  1651. </member>
  1652. <member name="M:DevExpress.Office.Utils.Units.PixelsToPoints(System.Int32,System.Single)">
  1653. <summary>
  1654. <para>Converts a measurement from pixels to points.
  1655. </para>
  1656. </summary>
  1657. <param name="val">
  1658. The <b>Integer</b> pixels value to be converted to points.
  1659. </param>
  1660. <param name="dpi">
  1661. A dpi value used for conversion.
  1662. </param>
  1663. <returns>An <b>Integer</b> value.
  1664. </returns>
  1665. </member>
  1666. <member name="M:DevExpress.Office.Utils.Units.PixelsToPointsF(System.Single,System.Single)">
  1667. <summary>
  1668. <para>Converts a measurement from pixels to points.
  1669. </para>
  1670. </summary>
  1671. <param name="val">
  1672. The <see cref="T:System.Single"/> pixels value to be converted to points.
  1673. </param>
  1674. <param name="dpi">
  1675. A dpi value of the <see cref="T:System.Single"/> type used for conversion.
  1676. </param>
  1677. <returns>A <see cref="T:System.Single"/> value.
  1678. </returns>
  1679. </member>
  1680. <member name="M:DevExpress.Office.Utils.Units.PixelsToTwips(System.Drawing.Rectangle,System.Single,System.Single)">
  1681. <summary>
  1682. <para>Converts a rectangle from pixels to twips.
  1683. </para>
  1684. </summary>
  1685. <param name="rect">
  1686. The <see cref="T:System.Drawing.Rectangle"/> with measurements in pixels to be converted to documents.
  1687. </param>
  1688. <param name="dpiX">
  1689. A dpi value of the <see cref="T:System.Single"/> type to be used for conversion of the X-coordinate.
  1690. </param>
  1691. <param name="dpiY">
  1692. A dpi value of the <see cref="T:System.Single"/> type to be used for conversion of the Y-coordinate.
  1693. </param>
  1694. <returns>A <see cref="T:System.Drawing.Rectangle"/> structure.
  1695. </returns>
  1696. </member>
  1697. <member name="M:DevExpress.Office.Utils.Units.PixelsToTwips(System.Drawing.Size,System.Single,System.Single)">
  1698. <summary>
  1699. <para>Converts measurements from pixels to twips.
  1700. </para>
  1701. </summary>
  1702. <param name="size">
  1703. The <see cref="T:System.Drawing.Size"/> in pixels to be converted to twips.
  1704. </param>
  1705. <param name="dpiX">
  1706. A dpi value of the <see cref="T:System.Single"/> type to be used for conversion of the X-coordinate.
  1707. </param>
  1708. <param name="dpiY">
  1709. A dpi value of the <see cref="T:System.Single"/> type to be used for conversion of the Y-coordinate.
  1710. </param>
  1711. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1712. </returns>
  1713. </member>
  1714. <member name="M:DevExpress.Office.Utils.Units.PixelsToTwips(System.Int32,System.Single)">
  1715. <summary>
  1716. <para>Converts a measurement from pixels to twips. Returns the converted measurement as an <b>Integer</b>.
  1717. </para>
  1718. </summary>
  1719. <param name="val">
  1720. An <b>Integer</b> pixels value to be converted to hundredths of a millimeter,
  1721. </param>
  1722. <param name="dpi">
  1723. A dpi value of the <see cref="T:System.Single"/> type to be used for conversion of the X-coordinate.
  1724. </param>
  1725. <returns>An <b>Integer</b> value.
  1726. </returns>
  1727. </member>
  1728. <member name="M:DevExpress.Office.Utils.Units.PixelsToTwipsF(System.Single,System.Single)">
  1729. <summary>
  1730. <para>Converts a measurement from pixels to twips. Returns the converted measurement as a <b>Single</b>.
  1731. </para>
  1732. </summary>
  1733. <param name="val">
  1734. The <see cref="T:System.Single"/> pixels value to be converted to points.
  1735. </param>
  1736. <param name="dpi">
  1737. A dpi value of the <see cref="T:System.Single"/> type used for conversion.
  1738. </param>
  1739. <returns>A <see cref="T:System.Single"/> value.
  1740. </returns>
  1741. </member>
  1742. <member name="M:DevExpress.Office.Utils.Units.PixelsToTwipsL(System.Int64,System.Single)">
  1743. <summary>
  1744. <para>Converts a measurement from pixels to twips. Returns the converted measurement as an <b>Int64</b>.
  1745. </para>
  1746. </summary>
  1747. <param name="val">
  1748. The <b><see cref="T:System.Int64"/></b> pixels value to be converted to twips.
  1749. </param>
  1750. <param name="dpi">
  1751. A dpi value of the <see cref="T:System.Single"/> type used for conversion.
  1752. </param>
  1753. <returns>An <b><see cref="T:System.Int64"/></b> value.
  1754. </returns>
  1755. </member>
  1756. <member name="M:DevExpress.Office.Utils.Units.PixelsToTwipsRound(System.Drawing.Size,System.Single,System.Single)">
  1757. <summary>
  1758. <para>Converts measurements from pixels to twips and rounds their values to the nearest whole number.
  1759. </para>
  1760. </summary>
  1761. <param name="size">
  1762. The <see cref="T:System.Drawing.Size"/> in pixels to be converted to twips.
  1763. </param>
  1764. <param name="dpiX">
  1765. A dpi value of the <see cref="T:System.Single"/> type to be used for conversion of the X-coordinate.
  1766. </param>
  1767. <param name="dpiY">
  1768. A dpi value of the <see cref="T:System.Single"/> type to be used for conversion of the Y-coordinate.
  1769. </param>
  1770. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1771. </returns>
  1772. </member>
  1773. <member name="M:DevExpress.Office.Utils.Units.PointsToDocuments(System.Int32)">
  1774. <summary>
  1775. <para>Converts a measurement from points to documents. Returns the converted measurement as an <b>Integer</b>.
  1776. </para>
  1777. </summary>
  1778. <param name="val">
  1779. The <b>Integer</b> points value to be converted to documents.
  1780. </param>
  1781. <returns>An <b>Integer</b> value.
  1782. </returns>
  1783. </member>
  1784. <member name="M:DevExpress.Office.Utils.Units.PointsToDocumentsF(System.Single)">
  1785. <summary>
  1786. <para>Converts a measurement from points to documents. Returns the converted measurement as a <b>Single</b>.
  1787. </para>
  1788. </summary>
  1789. <param name="value">
  1790. The <b>Single</b> points value to be converted to documents.
  1791. </param>
  1792. <returns>A <b>Single</b> value.
  1793. </returns>
  1794. </member>
  1795. <member name="M:DevExpress.Office.Utils.Units.PointsToPixels(System.Int32,System.Single)">
  1796. <summary>
  1797. <para>Converts a measurement from points to pixels. Returns the converted measurement as an <b>Integer</b>.
  1798. </para>
  1799. </summary>
  1800. <param name="val">
  1801. The <b>Integer</b> points value to be converted to pixels.
  1802. </param>
  1803. <param name="dpi">
  1804. A dpi value used for conversion.
  1805. </param>
  1806. <returns>An <b>Integer</b> value.
  1807. </returns>
  1808. </member>
  1809. <member name="M:DevExpress.Office.Utils.Units.PointsToPixelsF(System.Single,System.Single)">
  1810. <summary>
  1811. <para>Converts a measurement from points to pixels. Returns the converted measurement as a <b>Single</b>.
  1812. </para>
  1813. </summary>
  1814. <param name="val">
  1815. The <see cref="T:System.Single"/> points value to be converted to pixels.
  1816. </param>
  1817. <param name="dpi">
  1818. A dpi value used for conversion.
  1819. </param>
  1820. <returns>A <see cref="T:System.Single"/> value.
  1821. </returns>
  1822. </member>
  1823. <member name="M:DevExpress.Office.Utils.Units.PointsToTwips(System.Int32)">
  1824. <summary>
  1825. <para>Converts a measurement from points to twips. Returns the converted measurement as an <b>Integer</b>.
  1826. </para>
  1827. </summary>
  1828. <param name="value">
  1829. The <b>Integer</b> points value to be converted to twips.
  1830. </param>
  1831. <returns>An <b>Integer</b> value.
  1832. </returns>
  1833. </member>
  1834. <member name="M:DevExpress.Office.Utils.Units.PointsToTwipsF(System.Single)">
  1835. <summary>
  1836. <para>Converts a measurement from points to twips. Returns the converted measurement as a <b>Single</b>.
  1837. </para>
  1838. </summary>
  1839. <param name="value">
  1840. The <b>Single</b> points value to be converted to twips.
  1841. </param>
  1842. <returns>A <see cref="T:System.Single"/> value.
  1843. </returns>
  1844. </member>
  1845. <member name="M:DevExpress.Office.Utils.Units.TwipsToCentimetersF(System.Single)">
  1846. <summary>
  1847. <para>Converts a measurement from twips to centimeters. Returns the converted measurement as a <b>Single</b>.
  1848. </para>
  1849. </summary>
  1850. <param name="value">
  1851. The <see cref="T:System.Single"/> twips value to be converted to centimeters.
  1852. </param>
  1853. <returns>A <see cref="T:System.Single"/> value.
  1854. </returns>
  1855. </member>
  1856. <member name="M:DevExpress.Office.Utils.Units.TwipsToDocuments(System.Int32)">
  1857. <summary>
  1858. <para>Converts a measurement from twips to documents. Returns the converted measurement as an <b>Integer</b>.
  1859. </para>
  1860. </summary>
  1861. <param name="val">
  1862. The <b>Integer</b> twips value to be converted to documents.
  1863. </param>
  1864. <returns>An <b>Integer</b> value.
  1865. </returns>
  1866. </member>
  1867. <member name="M:DevExpress.Office.Utils.Units.TwipsToDocuments(System.Drawing.Size)">
  1868. <summary>
  1869. <para>Converts measurements from twips to documents.
  1870. </para>
  1871. </summary>
  1872. <param name="val">
  1873. A <see cref="T:System.Drawing.Size"/> structure with values in twips to be converted to documents.
  1874. </param>
  1875. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1876. </returns>
  1877. </member>
  1878. <member name="M:DevExpress.Office.Utils.Units.TwipsToDocuments(System.Drawing.RectangleF)">
  1879. <summary>
  1880. <para>Converts rectangle coordinates from twips to documents.
  1881. </para>
  1882. </summary>
  1883. <param name="val">
  1884. A <see cref="T:System.Drawing.RectangleF"/> structure with values in twips, to be converted to documents.
  1885. </param>
  1886. <returns>A <see cref="T:System.Drawing.RectangleF"/> structure composed of four floating-point numbers that represent the location and size of a rectangle.
  1887. </returns>
  1888. </member>
  1889. <member name="M:DevExpress.Office.Utils.Units.TwipsToDocuments(System.Drawing.Rectangle)">
  1890. <summary>
  1891. <para>Converts a rectangle from documents to twips.
  1892. </para>
  1893. </summary>
  1894. <param name="val">
  1895. The <see cref="T:System.Drawing.Rectangle"/> with values in twips, to be converted to documents.
  1896. </param>
  1897. <returns>A <see cref="T:System.Drawing.Rectangle"/> structure.
  1898. </returns>
  1899. </member>
  1900. <member name="M:DevExpress.Office.Utils.Units.TwipsToDocumentsF(System.Single)">
  1901. <summary>
  1902. <para>Converts a measurement from twips to documents. Returns the converted measurement as a <b>Single</b>.
  1903. </para>
  1904. </summary>
  1905. <param name="value">
  1906. The <see cref="T:System.Single"/> twips value to be converted to documents.
  1907. </param>
  1908. <returns>A <see cref="T:System.Single"/> value.
  1909. </returns>
  1910. </member>
  1911. <member name="M:DevExpress.Office.Utils.Units.TwipsToDocumentsL(System.Int64)">
  1912. <summary>
  1913. <para>Converts a measurement from twips to documents. Returns the converted measurement as an <b>Int64</b>.
  1914. </para>
  1915. </summary>
  1916. <param name="val">
  1917. The <see cref="T:System.Int64"/> twips value to be converted to documents.
  1918. </param>
  1919. <returns>An <see cref="T:System.Int64"/> value.
  1920. </returns>
  1921. </member>
  1922. <member name="M:DevExpress.Office.Utils.Units.TwipsToEmu(System.Int32)">
  1923. <summary>
  1924. <para>Converts a measurement from twips to EMUs (English Metric Unit).
  1925. </para>
  1926. </summary>
  1927. <param name="val">
  1928. An integer that is the value in twips.
  1929. </param>
  1930. <returns>An integer that is the value in EMUs.
  1931. </returns>
  1932. </member>
  1933. <member name="M:DevExpress.Office.Utils.Units.TwipsToEmuF(System.Single)">
  1934. <summary>
  1935. <para>Converts a measurement from twips (floating point value) to EMUs (English Metric Unit).
  1936. </para>
  1937. </summary>
  1938. <param name="val">
  1939. A <see cref="T:System.Single"/> value in twips.
  1940. </param>
  1941. <returns>An integer that is the value in EMUs.
  1942. </returns>
  1943. </member>
  1944. <member name="M:DevExpress.Office.Utils.Units.TwipsToEmuL(System.Int64)">
  1945. <summary>
  1946. <para>Converts a measurement from twips to EMUs (English Metric Unit) represented by 64-bit integers.
  1947. </para>
  1948. </summary>
  1949. <param name="val">
  1950. A 64-bit integer that is the value in twips.
  1951. </param>
  1952. <returns>A 64-bit integer that is the value in EMUs.
  1953. </returns>
  1954. </member>
  1955. <member name="M:DevExpress.Office.Utils.Units.TwipsToHundredthsOfInch(System.Int32)">
  1956. <summary>
  1957. <para>Converts a measurement from twips to hundredths of an inch. Returns the converted measurement as an <b>Integer</b>.
  1958. </para>
  1959. </summary>
  1960. <param name="val">
  1961. The <b>Integer</b> twips value to be converted to hundredths of an inch.
  1962. </param>
  1963. <returns>An <b>Integer</b> value.
  1964. </returns>
  1965. </member>
  1966. <member name="M:DevExpress.Office.Utils.Units.TwipsToHundredthsOfInch(System.Drawing.Size)">
  1967. <summary>
  1968. <para>Converts measurements in the Size structure from twips to hundredths of an inch.
  1969. </para>
  1970. </summary>
  1971. <param name="val">
  1972. The <see cref="T:System.Drawing.Size"/> values in twips to be converted to hundredths of an inch.
  1973. </param>
  1974. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1975. </returns>
  1976. </member>
  1977. <member name="M:DevExpress.Office.Utils.Units.TwipsToHundredthsOfMillimeter(System.Drawing.Size)">
  1978. <summary>
  1979. <para>Converts measurements from twips to hundredths of a millimeter.
  1980. </para>
  1981. </summary>
  1982. <param name="val">
  1983. The <see cref="T:System.Drawing.Size"/> in twips to be converted to hundredths of a millimeter.
  1984. </param>
  1985. <returns>A <see cref="T:System.Drawing.Size"/> structure.
  1986. </returns>
  1987. </member>
  1988. <member name="M:DevExpress.Office.Utils.Units.TwipsToInchesF(System.Single)">
  1989. <summary>
  1990. <para>Converts a measurement from twips to inches. Returns the converted measurement as a <b>Single</b>.
  1991. </para>
  1992. </summary>
  1993. <param name="value">
  1994. The <see cref="T:System.Single"/> twips value to be converted to inches.
  1995. </param>
  1996. <returns>A <see cref="T:System.Single"/> value.
  1997. </returns>
  1998. </member>
  1999. <member name="M:DevExpress.Office.Utils.Units.TwipsToMillimetersF(System.Single)">
  2000. <summary>
  2001. <para>Converts a measurement from twips to millimeters. Returns the converted measurement as a <b>Single</b>.
  2002. </para>
  2003. </summary>
  2004. <param name="value">
  2005. The <see cref="T:System.Single"/> twips value to be converted to millimeters.
  2006. </param>
  2007. <returns>A <see cref="T:System.Single"/> value.
  2008. </returns>
  2009. </member>
  2010. <member name="M:DevExpress.Office.Utils.Units.TwipsToPixels(System.Int32,System.Single)">
  2011. <summary>
  2012. <para>Converts a measurement from twips to pixels. Returns the converted measurement as an <b>Integer</b>.
  2013. </para>
  2014. </summary>
  2015. <param name="val">
  2016. The <b>Integer</b> documents value to be converted to pixels.
  2017. </param>
  2018. <param name="dpi">
  2019. A dpi value of the <see cref="T:System.Single"/> type used for conversion.
  2020. </param>
  2021. <returns>An <b>Integer</b> value.
  2022. </returns>
  2023. </member>
  2024. <member name="M:DevExpress.Office.Utils.Units.TwipsToPixels(System.Drawing.Point,System.Single,System.Single)">
  2025. <summary>
  2026. <para>Converts point coordinates from twips to pixels.
  2027. </para>
  2028. </summary>
  2029. <param name="val">
  2030. The <see cref="T:System.Drawing.Point"/> with values in twips, to be converted to pixels.
  2031. </param>
  2032. <param name="dpiX">
  2033. A dpi value of the <see cref="T:System.Single"/> type used for conversion of the X-coordinate.
  2034. </param>
  2035. <param name="dpiY">
  2036. A dpi value of the <see cref="T:System.Single"/> type used for conversion of the Y-coordinate.
  2037. </param>
  2038. <returns>A <see cref="T:System.Drawing.Point"/> structure.
  2039. </returns>
  2040. </member>
  2041. <member name="M:DevExpress.Office.Utils.Units.TwipsToPixels(System.Drawing.Rectangle,System.Single,System.Single)">
  2042. <summary>
  2043. <para>Converts a rectangle from twips to pixels.
  2044. </para>
  2045. </summary>
  2046. <param name="val">
  2047. The <see cref="T:System.Drawing.Rectangle"/> with values in twips, to be converted to pixels.
  2048. </param>
  2049. <param name="dpiX">
  2050. A dpi value of the <see cref="T:System.Single"/> type used for conversion of the X-coordinate.
  2051. </param>
  2052. <param name="dpiY">
  2053. A dpi value of the <see cref="T:System.Single"/> type used for conversion of the Y-coordinate.
  2054. </param>
  2055. <returns>A <see cref="T:System.Drawing.Rectangle"/> structure.
  2056. </returns>
  2057. </member>
  2058. <member name="M:DevExpress.Office.Utils.Units.TwipsToPixels(System.Drawing.Size,System.Single,System.Single)">
  2059. <summary>
  2060. <para>Converts height and width from twips to pixels.
  2061. </para>
  2062. </summary>
  2063. <param name="val">
  2064. A <see cref="T:System.Drawing.Size"/> structure with values in twips to be converted to pixels.
  2065. </param>
  2066. <param name="dpiX">
  2067. A dpi value used for conversion of the X-coordinate.
  2068. </param>
  2069. <param name="dpiY">
  2070. A dpi value used for conversion of the Y-coordinate.
  2071. </param>
  2072. <returns>A <see cref="T:System.Drawing.Size"/> structure that contains height and width in pixels.
  2073. </returns>
  2074. </member>
  2075. <member name="M:DevExpress.Office.Utils.Units.TwipsToPixelsF(System.Single,System.Single)">
  2076. <summary>
  2077. <para>Converts a measurement from twips to pixels. Returns the converted measurement as a <b>Single</b>.
  2078. </para>
  2079. </summary>
  2080. <param name="val">
  2081. The <see cref="T:System.Single"/> twips value to be converted to pixels.
  2082. </param>
  2083. <param name="dpi">
  2084. A dpi value of the <see cref="T:System.Single"/> type used for conversion.
  2085. </param>
  2086. <returns>A <see cref="T:System.Single"/> value.
  2087. </returns>
  2088. </member>
  2089. <member name="M:DevExpress.Office.Utils.Units.TwipsToPixelsL(System.Int64,System.Single)">
  2090. <summary>
  2091. <para>Converts a measurement from twips to pixels. Returns the converted measurement as an <b>Int64</b>.
  2092. </para>
  2093. </summary>
  2094. <param name="val">
  2095. The <see cref="T:System.Int64"/> twips value to be converted to pixels.
  2096. </param>
  2097. <param name="dpi">
  2098. The <see cref="T:System.Int64"/> twips value to be converted to pixels.
  2099. </param>
  2100. <returns>An <see cref="T:System.Int64"/> value.
  2101. </returns>
  2102. </member>
  2103. <member name="M:DevExpress.Office.Utils.Units.TwipsToPointsF(System.Single)">
  2104. <summary>
  2105. <para>Converts a measurement from twips to points. Returns the converted measurement as a <b>Single</b>.
  2106. </para>
  2107. </summary>
  2108. <param name="val">
  2109. The <see cref="T:System.Single"/> twips value to be converted to points.
  2110. </param>
  2111. <returns>A <see cref="T:System.Single"/> value.
  2112. </returns>
  2113. </member>
  2114. <member name="M:DevExpress.Office.Utils.Units.TwipsToPointsFRound(System.Single)">
  2115. <summary>
  2116. <para>Converts a measurement from twips to points and rounds the result. Returns the converted measurement as a <b>Single</b>.
  2117. </para>
  2118. </summary>
  2119. <param name="val">
  2120. The <see cref="T:System.Single"/> twips value to be converted to points.
  2121. </param>
  2122. <returns>A <see cref="T:System.Single"/> value.
  2123. </returns>
  2124. </member>
  2125. </members>
  2126. </doc>