8a6499fa99f1709cfd0619bb07b0da0fd0e84934.svn-base 90 KB

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