OxyPlot.MonoTouch.xml 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>OxyPlot.MonoTouch</name>
  5. </assembly>
  6. <members>
  7. <member name="T:OxyPlot.MonoTouch.PanZoomGestureRecognizer">
  8. <summary>
  9. Recognizes drag/pinch multi-touch gestures and translates them into pan/zoom information.
  10. </summary>
  11. </member>
  12. <member name="F:OxyPlot.MonoTouch.PanZoomGestureRecognizer.activeTouches">
  13. <summary>
  14. Up to 2 touches being currently tracked in a pan/zoom.
  15. </summary>
  16. </member>
  17. <member name="F:OxyPlot.MonoTouch.PanZoomGestureRecognizer.startingDistance">
  18. <summary>
  19. Distance between touch points when the second touch point begins. Used to determine
  20. whether the touch points cross along a given axis during the zoom gesture.
  21. </summary>
  22. </member>
  23. <member name="M:OxyPlot.MonoTouch.PanZoomGestureRecognizer.#ctor">
  24. <summary>
  25. Initializes a new instance of the <see cref="T:OxyPlot.MonoTouch.PanZoomGestureRecognizer"/> class.
  26. </summary>
  27. <remarks>
  28. To add methods that will be invoked upon recognition, you can use the AddTarget method.
  29. </remarks>
  30. </member>
  31. <member name="P:OxyPlot.MonoTouch.PanZoomGestureRecognizer.KeepAspectRatioWhenPinching">
  32. <summary>
  33. Gets or sets a value indicating whether this <see cref="T:OxyPlot.MonoTouch.PanZoomGestureRecognizer"/> keeps the aspect ratio when pinching.
  34. </summary>
  35. <value><c>true</c> if keep aspect ratio when pinching; otherwise, <c>false</c>.</value>
  36. </member>
  37. <member name="P:OxyPlot.MonoTouch.PanZoomGestureRecognizer.ZoomThreshold">
  38. <summary>
  39. Gets or sets how far apart touch points must be on a certain axis to enable scaling that axis.
  40. (only applies if KeepAspectRatioWhenPinching is <c>false</c>)
  41. </summary>
  42. </member>
  43. <member name="P:OxyPlot.MonoTouch.PanZoomGestureRecognizer.AllowPinchPastZero">
  44. <summary>
  45. Gets or sets a value indicating whether a zoom-out gesture can turn into a zoom-in gesture if the fingers cross.
  46. If <c>true</c>, and <see cref="P:OxyPlot.MonoTouch.PanZoomGestureRecognizer.KeepAspectRatioWhenPinching" /> is <c>false</c>, a zoom-out gesture
  47. can turn into a zoom-in gesture if the fingers cross. Setting to <c>false</c> will
  48. instead simply stop the zoom at that point.
  49. </summary>
  50. </member>
  51. <member name="P:OxyPlot.MonoTouch.PanZoomGestureRecognizer.TouchEventArgs">
  52. <summary>
  53. Gets or sets the current calculated pan/zoom changes.
  54. </summary>
  55. <value>
  56. The touch event arguments.
  57. </value>
  58. </member>
  59. <member name="M:OxyPlot.MonoTouch.PanZoomGestureRecognizer.TouchesBegan(MonoTouch.Foundation.NSSet,MonoTouch.UIKit.UIEvent)">
  60. <summary>
  61. Called when a touch gesture begins.
  62. </summary>
  63. <param name="touches">The touches.</param>
  64. <param name="evt">The event arguments.</param>
  65. </member>
  66. <member name="M:OxyPlot.MonoTouch.PanZoomGestureRecognizer.TouchesMoved(MonoTouch.Foundation.NSSet,MonoTouch.UIKit.UIEvent)">
  67. <summary>
  68. Called when a touch gesture is moving.
  69. </summary>
  70. <param name="touches">The touches.</param>
  71. <param name="evt">The event arguments.</param>
  72. </member>
  73. <member name="M:OxyPlot.MonoTouch.PanZoomGestureRecognizer.TouchesEnded(MonoTouch.Foundation.NSSet,MonoTouch.UIKit.UIEvent)">
  74. <summary>
  75. Called when a touch gesture ends.
  76. </summary>
  77. <param name="touches">The touches.</param>
  78. <param name="evt">The event arguments.</param>
  79. </member>
  80. <member name="M:OxyPlot.MonoTouch.PanZoomGestureRecognizer.TouchesCancelled(MonoTouch.Foundation.NSSet,MonoTouch.UIKit.UIEvent)">
  81. <summary>
  82. Called when a touch gesture is cancelled.
  83. </summary>
  84. <param name="touches">The touches.</param>
  85. <param name="evt">The event arguments.</param>
  86. </member>
  87. <member name="M:OxyPlot.MonoTouch.PanZoomGestureRecognizer.DidDirectionChange(System.Double,System.Double)">
  88. <summary>
  89. Determines whether the direction has changed.
  90. </summary>
  91. <param name="current">The current value.</param>
  92. <param name="original">The original value.</param>
  93. <returns><c>true</c> if the direction changed.</returns>
  94. </member>
  95. <member name="M:OxyPlot.MonoTouch.PanZoomGestureRecognizer.CalculateScaleFactor(System.Double,System.Double)">
  96. <summary>
  97. Calculates the scale factor.
  98. </summary>
  99. <param name="distance">The distance.</param>
  100. <param name="previousDistance">The previous distance.</param>
  101. <returns>The scale factor.</returns>
  102. </member>
  103. <member name="M:OxyPlot.MonoTouch.PanZoomGestureRecognizer.CalculateStartingDistance">
  104. <summary>
  105. Calculates the starting distance.
  106. </summary>
  107. </member>
  108. <member name="M:OxyPlot.MonoTouch.PanZoomGestureRecognizer.PreventCross(OxyPlot.ScreenVector)">
  109. <summary>
  110. Applies the "prevent fingers crossing" to the specified vector.
  111. </summary>
  112. <param name="currentDistance">The current distance.</param>
  113. <returns>A vector where the "prevent fingers crossing" is applied.</returns>
  114. </member>
  115. <member name="T:OxyPlot.MonoTouch.MonoTouchRenderContext">
  116. <summary>
  117. Implements a <see cref="T:OxyPlot.IRenderContext"/> for MonoTouch CoreGraphics.
  118. </summary>
  119. </member>
  120. <member name="F:OxyPlot.MonoTouch.MonoTouchRenderContext.imagesInUse">
  121. <summary>
  122. The images in use.
  123. </summary>
  124. </member>
  125. <member name="F:OxyPlot.MonoTouch.MonoTouchRenderContext.fonts">
  126. <summary>
  127. The fonts cache.
  128. </summary>
  129. </member>
  130. <member name="F:OxyPlot.MonoTouch.MonoTouchRenderContext.imageCache">
  131. <summary>
  132. The image cache.
  133. </summary>
  134. </member>
  135. <member name="F:OxyPlot.MonoTouch.MonoTouchRenderContext.gctx">
  136. <summary>
  137. The graphics context.
  138. </summary>
  139. </member>
  140. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.#ctor(MonoTouch.CoreGraphics.CGContext)">
  141. <summary>
  142. Initializes a new instance of the <see cref="T:OxyPlot.MonoTouch.MonoTouchRenderContext"/> class.
  143. </summary>
  144. <param name="context">The context.</param>
  145. </member>
  146. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.DrawEllipse(OxyPlot.OxyRect,OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double)">
  147. <summary>
  148. Draws an ellipse.
  149. </summary>
  150. <param name="rect">The rectangle.</param>
  151. <param name="fill">The fill color.</param>
  152. <param name="stroke">The stroke color.</param>
  153. <param name="thickness">The thickness.</param>
  154. </member>
  155. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.DrawImage(OxyPlot.OxyImage,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Boolean)">
  156. <summary>
  157. Draws the specified portion of the specified <see cref="T:OxyPlot.OxyImage" /> at the specified location and with the specified size.
  158. </summary>
  159. <param name="source">The source.</param>
  160. <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image to draw.</param>
  161. <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image to draw.</param>
  162. <param name="srcWidth">Width of the portion of the source image to draw.</param>
  163. <param name="srcHeight">Height of the portion of the source image to draw.</param>
  164. <param name="destX">The x-coordinate of the upper-left corner of drawn image.</param>
  165. <param name="destY">The y-coordinate of the upper-left corner of drawn image.</param>
  166. <param name="destWidth">The width of the drawn image.</param>
  167. <param name="destHeight">The height of the drawn image.</param>
  168. <param name="opacity">The opacity.</param>
  169. <param name="interpolate">Interpolate if set to <c>true</c>.</param>
  170. </member>
  171. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.CleanUp">
  172. <summary>
  173. Cleans up resources not in use.
  174. </summary>
  175. <remarks>This method is called at the end of each rendering.</remarks>
  176. </member>
  177. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.SetClip(OxyPlot.OxyRect)">
  178. <summary>
  179. Sets the clip rectangle.
  180. </summary>
  181. <param name="rect">The clip rectangle.</param>
  182. <returns>True if the clip rectangle was set.</returns>
  183. </member>
  184. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.ResetClip">
  185. <summary>
  186. Resets the clip rectangle.
  187. </summary>
  188. </member>
  189. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.DrawLine(System.Collections.Generic.IList{OxyPlot.ScreenPoint},OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
  190. <summary>
  191. Draws a polyline.
  192. </summary>
  193. <param name="points">The points.</param>
  194. <param name="stroke">The stroke color.</param>
  195. <param name="thickness">The stroke thickness.</param>
  196. <param name="dashArray">The dash array.</param>
  197. <param name="lineJoin">The line join type.</param>
  198. <param name="aliased">if set to <c>true</c> the shape will be aliased.</param>
  199. </member>
  200. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.DrawPolygon(System.Collections.Generic.IList{OxyPlot.ScreenPoint},OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
  201. <summary>
  202. Draws a polygon. The polygon can have stroke and/or fill.
  203. </summary>
  204. <param name="points">The points.</param>
  205. <param name="fill">The fill color.</param>
  206. <param name="stroke">The stroke color.</param>
  207. <param name="thickness">The stroke thickness.</param>
  208. <param name="dashArray">The dash array.</param>
  209. <param name="lineJoin">The line join type.</param>
  210. <param name="aliased">If set to <c>true</c> the shape will be aliased.</param>
  211. </member>
  212. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.DrawRectangle(OxyPlot.OxyRect,OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double)">
  213. <summary>
  214. Draws a rectangle.
  215. </summary>
  216. <param name="rect">The rectangle.</param>
  217. <param name="fill">The fill color.</param>
  218. <param name="stroke">The stroke color.</param>
  219. <param name="thickness">The stroke thickness.</param>
  220. </member>
  221. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.DrawText(OxyPlot.ScreenPoint,System.String,OxyPlot.OxyColor,System.String,System.Double,System.Double,System.Double,OxyPlot.HorizontalAlignment,OxyPlot.VerticalAlignment,System.Nullable{OxyPlot.OxySize})">
  222. <summary>
  223. Draws the text.
  224. </summary>
  225. <param name="p">The position of the text.</param>
  226. <param name="text">The text.</param>
  227. <param name="fill">The fill color.</param>
  228. <param name="fontFamily">The font family.</param>
  229. <param name="fontSize">Size of the font.</param>
  230. <param name="fontWeight">The font weight.</param>
  231. <param name="rotate">The rotation angle.</param>
  232. <param name="halign">The horizontal alignment.</param>
  233. <param name="valign">The vertical alignment.</param>
  234. <param name="maxSize">The maximum size of the text.</param>
  235. </member>
  236. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.MeasureText(System.String,System.String,System.Double,System.Double)">
  237. <summary>
  238. Measures the text.
  239. </summary>
  240. <param name="text">The text.</param>
  241. <param name="fontFamily">The font family.</param>
  242. <param name="fontSize">Size of the font.</param>
  243. <param name="fontWeight">The font weight.</param>
  244. <returns>
  245. The size of the text.
  246. </returns>
  247. </member>
  248. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.Dispose">
  249. <summary>
  250. Releases all resource used by the <see cref="T:OxyPlot.MonoTouch.MonoTouchRenderContext"/> object.
  251. </summary>
  252. <remarks>Call <see cref="M:OxyPlot.MonoTouch.MonoTouchRenderContext.Dispose"/> when you are finished using the
  253. <see cref="T:OxyPlot.MonoTouch.MonoTouchRenderContext"/>. The <see cref="M:OxyPlot.MonoTouch.MonoTouchRenderContext.Dispose"/> method leaves the
  254. <see cref="T:OxyPlot.MonoTouch.MonoTouchRenderContext"/> in an unusable state. After calling
  255. <see cref="M:OxyPlot.MonoTouch.MonoTouchRenderContext.Dispose"/>, you must release all references to the
  256. <see cref="T:OxyPlot.MonoTouch.MonoTouchRenderContext"/> so the garbage collector can reclaim the memory that
  257. the <see cref="T:OxyPlot.MonoTouch.MonoTouchRenderContext"/> was occupying.</remarks>
  258. </member>
  259. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.GetActualFontName(System.String,System.Double)">
  260. <summary>
  261. Gets the actual font for iOS.
  262. </summary>
  263. <param name="fontFamily">The font family.</param>
  264. <param name="fontWeight">The font weight.</param>
  265. <returns>The actual font name.</returns>
  266. </member>
  267. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.GetFontMetrics(MonoTouch.CoreText.CTFont,System.Single@,System.Single@)">
  268. <summary>
  269. Gets font metrics for the specified font.
  270. </summary>
  271. <param name="font">The font.</param>
  272. <param name="defaultLineHeight">Default line height.</param>
  273. <param name="delta">The vertical delta.</param>
  274. </member>
  275. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.GetCachedFont(System.String,System.Double)">
  276. <summary>
  277. Gets the specified from cache.
  278. </summary>
  279. <returns>The font.</returns>
  280. <param name="fontName">Font name.</param>
  281. <param name="fontSize">Font size.</param>
  282. </member>
  283. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.SetAlias(System.Boolean)">
  284. <summary>
  285. Sets the alias state.
  286. </summary>
  287. <param name="alias">alias if set to <c>true</c>.</param>
  288. </member>
  289. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.SetFill(OxyPlot.OxyColor)">
  290. <summary>
  291. Sets the fill color.
  292. </summary>
  293. <param name="c">The color.</param>
  294. </member>
  295. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.SetStroke(OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin)">
  296. <summary>
  297. Sets the stroke style.
  298. </summary>
  299. <param name="c">The stroke color.</param>
  300. <param name="thickness">The stroke thickness.</param>
  301. <param name="dashArray">The dash array.</param>
  302. <param name="lineJoin">The line join.</param>
  303. </member>
  304. <member name="M:OxyPlot.MonoTouch.MonoTouchRenderContext.GetImage(OxyPlot.OxyImage)">
  305. <summary>
  306. Gets the image from cache or converts the specified <paramref name="source"/> <see cref="T:OxyPlot.OxyImage"/>.
  307. </summary>
  308. <param name="source">The source.</param>
  309. <returns>The image.</returns>
  310. </member>
  311. <member name="T:OxyPlot.MonoTouch.PlotView">
  312. <summary>
  313. Provides a view that can show a <see cref="T:OxyPlot.PlotModel" />.
  314. </summary>
  315. </member>
  316. <member name="F:OxyPlot.MonoTouch.PlotView.model">
  317. <summary>
  318. The current plot model.
  319. </summary>
  320. </member>
  321. <member name="F:OxyPlot.MonoTouch.PlotView.defaultController">
  322. <summary>
  323. The default plot controller.
  324. </summary>
  325. </member>
  326. <member name="M:OxyPlot.MonoTouch.PlotView.#ctor">
  327. <summary>
  328. Initializes a new instance of the <see cref="T:OxyPlot.MonoTouch.PlotView"/> class.
  329. </summary>
  330. </member>
  331. <member name="M:OxyPlot.MonoTouch.PlotView.#ctor(System.Drawing.RectangleF)">
  332. <summary>
  333. Initializes a new instance of the <see cref="T:OxyPlot.MonoTouch.PlotView"/> class.
  334. </summary>
  335. <param name="frame">The initial frame.</param>
  336. </member>
  337. <member name="M:OxyPlot.MonoTouch.PlotView.#ctor(MonoTouch.Foundation.NSCoder)">
  338. <summary>
  339. Initializes a new instance of the <see cref="T:OxyPlot.MonoTouch.PlotView"/> class.
  340. </summary>
  341. <param name="coder">Coder.</param>
  342. </member>
  343. <member name="M:OxyPlot.MonoTouch.PlotView.UseNewLayout">
  344. <summary>
  345. Uses the new layout.
  346. </summary>
  347. <returns><c>true</c>, if new layout was used, <c>false</c> otherwise.</returns>
  348. </member>
  349. <member name="M:OxyPlot.MonoTouch.PlotView.Initialize">
  350. <summary>
  351. Initialize the view.
  352. </summary>
  353. </member>
  354. <member name="P:OxyPlot.MonoTouch.PlotView.Model">
  355. <summary>
  356. Gets or sets the <see cref="T:OxyPlot.PlotModel"/> to show in the view.
  357. </summary>
  358. <value>The <see cref="T:OxyPlot.PlotModel"/>.</value>
  359. </member>
  360. <member name="P:OxyPlot.MonoTouch.PlotView.Controller">
  361. <summary>
  362. Gets or sets the <see cref="T:OxyPlot.IPlotController"/> that handles input events.
  363. </summary>
  364. <value>The <see cref="T:OxyPlot.IPlotController"/>.</value>
  365. </member>
  366. <member name="P:OxyPlot.MonoTouch.PlotView.OxyPlot#IView#ActualModel">
  367. <summary>
  368. Gets the actual model in the view.
  369. </summary>
  370. <value>
  371. The actual model.
  372. </value>
  373. </member>
  374. <member name="P:OxyPlot.MonoTouch.PlotView.ActualModel">
  375. <summary>
  376. Gets the actual <see cref="T:OxyPlot.PlotModel"/> to show.
  377. </summary>
  378. <value>The actual model.</value>
  379. </member>
  380. <member name="P:OxyPlot.MonoTouch.PlotView.OxyPlot#IView#ActualController">
  381. <summary>
  382. Gets the actual controller.
  383. </summary>
  384. <value>
  385. The actual <see cref="T:OxyPlot.IController" />.
  386. </value>
  387. </member>
  388. <member name="P:OxyPlot.MonoTouch.PlotView.ClientArea">
  389. <summary>
  390. Gets the coordinates of the client area of the view.
  391. </summary>
  392. </member>
  393. <member name="P:OxyPlot.MonoTouch.PlotView.ActualController">
  394. <summary>
  395. Gets the actual <see cref="T:OxyPlot.IPlotController"/>.
  396. </summary>
  397. <value>The actual plot controller.</value>
  398. </member>
  399. <member name="P:OxyPlot.MonoTouch.PlotView.KeepAspectRatioWhenPinching">
  400. <summary>
  401. Gets or sets a value indicating whether this <see cref="T:OxyPlot.MonoTouch.PlotView"/> keeps the aspect ratio when pinching.
  402. </summary>
  403. <value><c>true</c> if keep aspect ratio when pinching; otherwise, <c>false</c>.</value>
  404. </member>
  405. <member name="P:OxyPlot.MonoTouch.PlotView.ZoomThreshold">
  406. <summary>
  407. How far apart touch points must be on a certain axis to enable scaling that axis.
  408. (only applies if KeepAspectRatioWhenPinching == false)
  409. </summary>
  410. </member>
  411. <member name="P:OxyPlot.MonoTouch.PlotView.AllowPinchPastZero">
  412. <summary>
  413. If <c>true</c>, and KeepAspectRatioWhenPinching is <c>false</c>, a zoom-out gesture
  414. can turn into a zoom-in gesture if the fingers cross. Setting to <c>false</c> will
  415. instead simply stop the zoom at that point.
  416. </summary>
  417. </member>
  418. <member name="M:OxyPlot.MonoTouch.PlotView.HideTracker">
  419. <summary>
  420. Hides the tracker.
  421. </summary>
  422. </member>
  423. <member name="M:OxyPlot.MonoTouch.PlotView.HideZoomRectangle">
  424. <summary>
  425. Hides the zoom rectangle.
  426. </summary>
  427. </member>
  428. <member name="M:OxyPlot.MonoTouch.PlotView.InvalidatePlot(System.Boolean)">
  429. <summary>
  430. Invalidates the plot (not blocking the UI thread)
  431. </summary>
  432. <param name="updateData">If set to <c>true</c> update data.</param>
  433. </member>
  434. <member name="M:OxyPlot.MonoTouch.PlotView.SetCursorType(OxyPlot.CursorType)">
  435. <summary>
  436. Sets the cursor type.
  437. </summary>
  438. <param name="cursorType">The cursor type.</param>
  439. </member>
  440. <member name="M:OxyPlot.MonoTouch.PlotView.ShowTracker(OxyPlot.TrackerHitResult)">
  441. <summary>
  442. Shows the tracker.
  443. </summary>
  444. <param name="trackerHitResult">The tracker data.</param>
  445. </member>
  446. <member name="M:OxyPlot.MonoTouch.PlotView.ShowZoomRectangle(OxyPlot.OxyRect)">
  447. <summary>
  448. Shows the zoom rectangle.
  449. </summary>
  450. <param name="rectangle">The rectangle.</param>
  451. </member>
  452. <member name="M:OxyPlot.MonoTouch.PlotView.SetClipboardText(System.String)">
  453. <summary>
  454. Stores text on the clipboard.
  455. </summary>
  456. <param name="text">The text.</param>
  457. </member>
  458. <member name="M:OxyPlot.MonoTouch.PlotView.Draw(System.Drawing.RectangleF)">
  459. <summary>
  460. Draws the content of the view.
  461. </summary>
  462. <param name="rect">The rectangle to draw.</param>
  463. </member>
  464. <member name="M:OxyPlot.MonoTouch.PlotView.MotionBegan(MonoTouch.UIKit.UIEventSubtype,MonoTouch.UIKit.UIEvent)">
  465. <summary>
  466. Method invoked when a motion (a shake) has started.
  467. </summary>
  468. <param name="motion">The motion subtype.</param>
  469. <param name="evt">The event arguments.</param>
  470. </member>
  471. <member name="T:OxyPlot.MonoTouch.ExportExtensions">
  472. <summary>
  473. Provides extension methods related to export.
  474. </summary>
  475. </member>
  476. <member name="M:OxyPlot.MonoTouch.ExportExtensions.ToPng(MonoTouch.UIKit.UIView,System.Drawing.RectangleF)">
  477. <summary>
  478. Stores the specified <see cref="T:MonoTouch.UIKit.UIView" /> to a PNG file.
  479. </summary>
  480. <returns>The PNG data.</returns>
  481. <param name="view">The view to export.</param>
  482. <param name="rect">The rectangle to export.</param>
  483. </member>
  484. <member name="M:OxyPlot.MonoTouch.ExportExtensions.GetImage(MonoTouch.UIKit.UIView,System.Drawing.RectangleF)">
  485. <summary>
  486. Gets the image for the specified <see cref="T:MonoTouch.UIKit.UIView" /> .
  487. </summary>
  488. <returns>The image.</returns>
  489. <param name="view">The view.</param>
  490. <param name="rect">The rectangle.</param>
  491. </member>
  492. <member name="M:OxyPlot.MonoTouch.ExportExtensions.ToPdf(MonoTouch.UIKit.UIView,System.Drawing.RectangleF)">
  493. <summary>
  494. Exports the specified <see cref="T:MonoTouch.UIKit.UIView" /> to a PDF file.
  495. </summary>
  496. <returns>The PDF data.</returns>
  497. <param name="view">The view to export.</param>
  498. <param name="rect">The rectangle to export.</param>
  499. </member>
  500. <member name="T:OxyPlot.MonoTouch.ConverterExtensions">
  501. <summary>
  502. Provides extension methods that converts between MonoTouch and OxyPlot types.
  503. </summary>
  504. </member>
  505. <member name="M:OxyPlot.MonoTouch.ConverterExtensions.ToScreenPoint(System.Drawing.PointF)">
  506. <summary>
  507. Converts a <see cref="T:System.Drawing.PointF" /> to a <see cref="T:OxyPlot.ScreenPoint" />.
  508. </summary>
  509. <param name="p">The point to convert.</param>
  510. <returns>The converted point.</returns>
  511. </member>
  512. <member name="M:OxyPlot.MonoTouch.ConverterExtensions.ToTouchEventArgs(MonoTouch.UIKit.UITouch,MonoTouch.UIKit.UIView)">
  513. <summary>
  514. Converts <see cref="T:MonoTouch.UIKit.UITouch" /> event arguments to <see cref="T:OxyPlot.OxyTouchEventArgs" />.
  515. </summary>
  516. <param name="touch">The touch event arguments.</param>
  517. <param name="view">The view.</param>
  518. <returns>The converted arguments.</returns>
  519. </member>
  520. <member name="M:OxyPlot.MonoTouch.ConverterExtensions.ToCGColor(OxyPlot.OxyColor)">
  521. <summary>
  522. Converts a <see cref="T:OxyPlot.OxyColor" /> to a <see cref="T:MonoTouch.CoreGraphics.CGColor" />.
  523. </summary>
  524. <param name="c">The color to convert.</param>
  525. <returns>The converted color.</returns>
  526. </member>
  527. <member name="M:OxyPlot.MonoTouch.ConverterExtensions.ToUIColor(OxyPlot.OxyColor)">
  528. <summary>
  529. Converts a <see cref="T:OxyPlot.OxyColor" /> to a <see cref="T:MonoTouch.UIKit.UIColor" />.
  530. </summary>
  531. <param name="c">The color to convert.</param>
  532. <returns>The converted color.</returns>
  533. </member>
  534. <member name="M:OxyPlot.MonoTouch.ConverterExtensions.Convert(OxyPlot.LineJoin)">
  535. <summary>
  536. Converts a <see cref="T:OxyPlot.LineJoin" /> to a <see cref="T:MonoTouch.CoreGraphics.CGLineCap" />.
  537. </summary>
  538. <param name="lineJoin">The line join.</param>
  539. <returns>The converted join.</returns>
  540. </member>
  541. <member name="M:OxyPlot.MonoTouch.ConverterExtensions.Convert(OxyPlot.ScreenPoint)">
  542. <summary>
  543. Converts a <see cref="T:OxyPlot.ScreenPoint" /> to a <see cref="T:System.Drawing.PointF" />.
  544. </summary>
  545. <param name="p">The point to convert.</param>
  546. <returns>The converted point.</returns>
  547. </member>
  548. <member name="M:OxyPlot.MonoTouch.ConverterExtensions.ConvertAliased(OxyPlot.ScreenPoint)">
  549. <summary>
  550. Converts a <see cref="T:OxyPlot.ScreenPoint" /> to a pixel center aligned <see cref="T:System.Drawing.PointF" />.
  551. </summary>
  552. <param name="p">The point to convert.</param>
  553. <returns>The converted point.</returns>
  554. </member>
  555. <member name="M:OxyPlot.MonoTouch.ConverterExtensions.ConvertAliased(OxyPlot.OxyRect)">
  556. <summary>
  557. Converts a <see cref="T:OxyPlot.OxyRect" /> to a pixel center aligned <see cref="T:System.Drawing.RectangleF" />.
  558. </summary>
  559. <param name="rect">The rectangle to convert.</param>
  560. <returns>The converted rectangle.</returns>
  561. </member>
  562. <member name="M:OxyPlot.MonoTouch.ConverterExtensions.Convert(OxyPlot.OxyRect)">
  563. <summary>
  564. Converts a <see cref="T:OxyPlot.OxyRect" /> to a <see cref="T:System.Drawing.RectangleF" />.
  565. </summary>
  566. <param name="rect">The rectangle to convert.</param>
  567. <returns>The converted rectangle.</returns>
  568. </member>
  569. </members>
  570. </doc>