OxyPlot.Xamarin.Android.xml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>OxyPlot.Xamarin.Android</name>
  5. </assembly>
  6. <members>
  7. <member name="T:OxyPlot.Xamarin.Android.CanvasRenderContext">
  8. <summary>
  9. Provides a render context for Android.Graphics.Canvas.
  10. </summary>
  11. </member>
  12. <member name="F:OxyPlot.Xamarin.Android.CanvasRenderContext.imagesInUse">
  13. <summary>
  14. The images in use
  15. </summary>
  16. </member>
  17. <member name="F:OxyPlot.Xamarin.Android.CanvasRenderContext.imageCache">
  18. <summary>
  19. The image cache
  20. </summary>
  21. </member>
  22. <member name="F:OxyPlot.Xamarin.Android.CanvasRenderContext.paint">
  23. <summary>
  24. The current paint.
  25. </summary>
  26. </member>
  27. <member name="F:OxyPlot.Xamarin.Android.CanvasRenderContext.path">
  28. <summary>
  29. A reusable path object.
  30. </summary>
  31. </member>
  32. <member name="F:OxyPlot.Xamarin.Android.CanvasRenderContext.bounds">
  33. <summary>
  34. A reusable bounds rectangle.
  35. </summary>
  36. </member>
  37. <member name="F:OxyPlot.Xamarin.Android.CanvasRenderContext.pts">
  38. <summary>
  39. A reusable list of points.
  40. </summary>
  41. </member>
  42. <member name="F:OxyPlot.Xamarin.Android.CanvasRenderContext.canvas">
  43. <summary>
  44. The canvas to draw on.
  45. </summary>
  46. </member>
  47. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.#ctor(System.Double)">
  48. <summary>
  49. Initializes a new instance of the <see cref="T:OxyPlot.Xamarin.Android.CanvasRenderContext" /> class.
  50. </summary>
  51. <param name="scale">The scale.</param>
  52. </member>
  53. <member name="P:OxyPlot.Xamarin.Android.CanvasRenderContext.Scale">
  54. <summary>
  55. Gets the factor that this.Scales from OxyPlot´s device independent pixels (96 dpi) to
  56. Android´s density-independent pixels (160 dpi).
  57. </summary>
  58. <remarks>See <a href="http://developer.android.com/guide/practices/screens_support.html">Supporting multiple screens.</a>.</remarks>
  59. </member>
  60. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.SetTarget(Android.Graphics.Canvas)">
  61. <summary>
  62. Sets the target.
  63. </summary>
  64. <param name="c">The canvas.</param>
  65. </member>
  66. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.DrawEllipse(OxyPlot.OxyRect,OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double)">
  67. <summary>
  68. Draws an ellipse.
  69. </summary>
  70. <param name="rect">The rectangle.</param>
  71. <param name="fill">The fill color.</param>
  72. <param name="stroke">The stroke color.</param>
  73. <param name="thickness">The thickness.</param>
  74. </member>
  75. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.DrawEllipses(System.Collections.Generic.IList{OxyPlot.OxyRect},OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double)">
  76. <summary>
  77. Draws the collection of ellipses, where all have the same stroke and fill.
  78. This performs better than calling DrawEllipse multiple times.
  79. </summary>
  80. <param name="rectangles">The rectangles.</param>
  81. <param name="fill">The fill color.</param>
  82. <param name="stroke">The stroke color.</param>
  83. <param name="thickness">The stroke thickness.</param>
  84. </member>
  85. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.DrawLine(System.Collections.Generic.IList{OxyPlot.ScreenPoint},OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
  86. <summary>
  87. Draws a polyline.
  88. </summary>
  89. <param name="points">The points.</param>
  90. <param name="stroke">The stroke color.</param>
  91. <param name="thickness">The stroke thickness.</param>
  92. <param name="dashArray">The dash array.</param>
  93. <param name="lineJoin">The line join type.</param>
  94. <param name="aliased">if set to <c>true</c> the shape will be aliased.</param>
  95. </member>
  96. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.DrawLineSegments(System.Collections.Generic.IList{OxyPlot.ScreenPoint},OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
  97. <summary>
  98. Draws multiple line segments defined by points (0,1) (2,3) (4,5) etc.
  99. This should have better performance than calling DrawLine for each segment.
  100. </summary>
  101. <param name="points">The points.</param>
  102. <param name="stroke">The stroke color.</param>
  103. <param name="thickness">The stroke thickness.</param>
  104. <param name="dashArray">The dash array.</param>
  105. <param name="lineJoin">The line join type.</param>
  106. <param name="aliased">If set to <c>true</c> the shape will be aliased.</param>
  107. </member>
  108. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.DrawPolygon(System.Collections.Generic.IList{OxyPlot.ScreenPoint},OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
  109. <summary>
  110. Draws a polygon. The polygon can have stroke and/or fill.
  111. </summary>
  112. <param name="points">The points.</param>
  113. <param name="fill">The fill color.</param>
  114. <param name="stroke">The stroke color.</param>
  115. <param name="thickness">The stroke thickness.</param>
  116. <param name="dashArray">The dash array.</param>
  117. <param name="lineJoin">The line join type.</param>
  118. <param name="aliased">If set to <c>true</c> the shape will be aliased.</param>
  119. </member>
  120. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.DrawRectangle(OxyPlot.OxyRect,OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double)">
  121. <summary>
  122. Draws a rectangle.
  123. </summary>
  124. <param name="rect">The rectangle.</param>
  125. <param name="fill">The fill color.</param>
  126. <param name="stroke">The stroke color.</param>
  127. <param name="thickness">The stroke thickness.</param>
  128. </member>
  129. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.DrawText(OxyPlot.ScreenPoint,System.String,OxyPlot.OxyColor,System.String,System.Double,System.Double,System.Double,OxyPlot.HorizontalAlignment,OxyPlot.VerticalAlignment,System.Nullable{OxyPlot.OxySize})">
  130. <summary>
  131. Draws the text.
  132. </summary>
  133. <param name="p">The position of the text.</param>
  134. <param name="text">The text.</param>
  135. <param name="fill">The fill color.</param>
  136. <param name="fontFamily">The font family.</param>
  137. <param name="fontSize">Size of the font.</param>
  138. <param name="fontWeight">The font weight.</param>
  139. <param name="rotate">The rotation angle.</param>
  140. <param name="halign">The horizontal alignment.</param>
  141. <param name="valign">The vertical alignment.</param>
  142. <param name="maxSize">The maximum size of the text.</param>
  143. </member>
  144. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.MeasureText(System.String,System.String,System.Double,System.Double)">
  145. <summary>
  146. Measures the text.
  147. </summary>
  148. <param name="text">The text.</param>
  149. <param name="fontFamily">The font family.</param>
  150. <param name="fontSize">Size of the font.</param>
  151. <param name="fontWeight">The font weight.</param>
  152. <returns>The text size.</returns>
  153. </member>
  154. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.SetClip(OxyPlot.OxyRect)">
  155. <summary>
  156. Sets the clip rectangle.
  157. </summary>
  158. <param name="rect">The clip rectangle.</param>
  159. <returns>True if the clip rectangle was set.</returns>
  160. </member>
  161. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.ResetClip">
  162. <summary>
  163. Resets the clip rectangle.
  164. </summary>
  165. </member>
  166. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.DrawImage(OxyPlot.OxyImage,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Boolean)">
  167. <summary>
  168. Draws the specified portion of the specified <see cref="T:OxyPlot.OxyImage" /> at the specified location and with the specified size.
  169. </summary>
  170. <param name="source">The source.</param>
  171. <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image to draw.</param>
  172. <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image to draw.</param>
  173. <param name="srcWidth">Width of the portion of the source image to draw.</param>
  174. <param name="srcHeight">Height of the portion of the source image to draw.</param>
  175. <param name="destX">The x-coordinate of the upper-left corner of drawn image.</param>
  176. <param name="destY">The y-coordinate of the upper-left corner of drawn image.</param>
  177. <param name="destWidth">The width of the drawn image.</param>
  178. <param name="destHeight">The height of the drawn image.</param>
  179. <param name="opacity">The opacity.</param>
  180. <param name="interpolate">interpolate if set to <c>true</c>.</param>
  181. </member>
  182. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.CleanUp">
  183. <summary>
  184. Cleans up resources not in use.
  185. </summary>
  186. <remarks>This method is called at the end of each rendering.</remarks>
  187. </member>
  188. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.GetFontMetrics(Android.Graphics.Paint,System.Single@,System.Single@)">
  189. <summary>
  190. Gets font metrics for the font in the specified paint.
  191. </summary>
  192. <param name="paint">The paint.</param>
  193. <param name="defaultLineHeight">Default line height.</param>
  194. <param name="delta">The vertical delta.</param>
  195. </member>
  196. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.Convert(System.Double)">
  197. <summary>
  198. Converts the specified coordinate to a scaled coordinate.
  199. </summary>
  200. <param name="x">The coordinate to convert.</param>
  201. <returns>The converted coordinate.</returns>
  202. </member>
  203. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.Convert(OxyPlot.OxyRect)">
  204. <summary>
  205. Converts the specified rectangle to a scaled rectangle.
  206. </summary>
  207. <param name="rect">The rectangle to convert.</param>
  208. <returns>The converted rectangle.</returns>
  209. </member>
  210. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.ConvertAliased(System.Double)">
  211. <summary>
  212. Converts the specified coordinate to a pixel-aligned scaled coordinate.
  213. </summary>
  214. <param name="x">The coordinate to convert.</param>
  215. <returns>The converted coordinate.</returns>
  216. </member>
  217. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.SetPath(System.Collections.Generic.IList{OxyPlot.ScreenPoint},System.Boolean)">
  218. <summary>
  219. Sets the path to the specified points.
  220. </summary>
  221. <param name="points">The points defining the path.</param>
  222. <param name="aliased">If set to <c>true</c> aliased.</param>
  223. </member>
  224. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.SetFill(OxyPlot.OxyColor)">
  225. <summary>
  226. Sets the fill style.
  227. </summary>
  228. <param name="fill">The fill color.</param>
  229. </member>
  230. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.SetStroke(OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
  231. <summary>
  232. Sets the stroke style.
  233. </summary>
  234. <param name="stroke">The stroke color.</param>
  235. <param name="thickness">The stroke thickness.</param>
  236. <param name="dashArray">The dash array.</param>
  237. <param name="lineJoin">The line join.</param>
  238. <param name="aliased">Use aliased strokes if set to <c>true</c>.</param>
  239. </member>
  240. <member name="M:OxyPlot.Xamarin.Android.CanvasRenderContext.GetImage(OxyPlot.OxyImage)">
  241. <summary>
  242. Gets the image from cache or creates a new <see cref="T:Android.Graphics.Bitmap" />.
  243. </summary>
  244. <param name="source">The source image.</param>
  245. <returns>A <see cref="T:Android.Graphics.Bitmap" />.</returns>
  246. </member>
  247. <member name="T:OxyPlot.Xamarin.Android.ExtensionMethods">
  248. <summary>
  249. Provides extension methods that converts between Android types and OxyPlot types.
  250. </summary>
  251. </member>
  252. <member name="M:OxyPlot.Xamarin.Android.ExtensionMethods.ToColor(OxyPlot.OxyColor)">
  253. <summary>
  254. Converts an <see cref="T:OxyPlot.OxyColor" /> to a <see cref="T:Android.Graphics.Color" />.
  255. </summary>
  256. <param name="color">The color to convert.</param>
  257. <returns>The converted color.</returns>
  258. </member>
  259. <member name="M:OxyPlot.Xamarin.Android.ExtensionMethods.Convert(OxyPlot.LineJoin)">
  260. <summary>
  261. Converts an <see cref="T:OxyPlot.LineJoin" /> to a <see cref="T:Android.Graphics.Paint.Join" />.
  262. </summary>
  263. <param name="join">The join value to convert.</param>
  264. <returns>The converted join value.</returns>
  265. </member>
  266. <member name="M:OxyPlot.Xamarin.Android.ExtensionMethods.ToTouchEventArgs(Android.Views.MotionEvent,System.Double)">
  267. <summary>
  268. Converts an <see cref="T:Android.Views.MotionEvent" /> to a <see cref="T:OxyPlot.OxyTouchEventArgs" />.
  269. </summary>
  270. <param name="e">The event arguments.</param>
  271. <param name = "scale">The resolution scale factor.</param>
  272. <returns>The converted event arguments.</returns>
  273. </member>
  274. <member name="M:OxyPlot.Xamarin.Android.ExtensionMethods.GetTouchPoints(Android.Views.MotionEvent,System.Double)">
  275. <summary>
  276. Gets the touch points from the specified <see cref="T:Android.Views.MotionEvent" /> argument.
  277. </summary>
  278. <param name="e">The event arguments.</param>
  279. <param name = "scale">The resolution scale factor.</param>
  280. <returns>The touch points.</returns>
  281. </member>
  282. <member name="M:OxyPlot.Xamarin.Android.ExtensionMethods.Convert(Android.Views.Keycode)">
  283. <summary>
  284. Converts an <see cref="T:Android.Views.Keycode" /> to a <see cref="T:OxyPlot.OxyKey" />.
  285. </summary>
  286. <param name="keyCode">The key code.</param>
  287. <returns>The converted key.</returns>
  288. </member>
  289. <member name="M:OxyPlot.Xamarin.Android.ExtensionMethods.GetModifierKeys(Android.Views.KeyEvent)">
  290. <summary>
  291. Gets the <see cref="T:OxyPlot.OxyModifierKeys" /> from a <see cref="T:Android.Views.KeyEvent" /> .
  292. </summary>
  293. <param name="e">The key event arguments.</param>
  294. <returns>The converted modifier keys.</returns>
  295. </member>
  296. <member name="M:OxyPlot.Xamarin.Android.ExtensionMethods.ToKeyEventArgs(Android.Views.KeyEvent)">
  297. <summary>
  298. Converts an <see cref="T:Android.Views.KeyEvent" /> to a <see cref="T:OxyPlot.OxyKeyEventArgs" />.
  299. </summary>
  300. <param name="e">The event arguments.</param>
  301. <returns>The converted event arguments.</returns>
  302. <remarks>See also <a href="http://developer.android.com/reference/android/view/KeyEvent.html">KeyEvent</a> reference.</remarks>
  303. </member>
  304. <member name="T:OxyPlot.Xamarin.Android.PlotView">
  305. <summary>
  306. Represents a view that can show a <see cref="T:OxyPlot.PlotModel" />.
  307. </summary>
  308. </member>
  309. <member name="F:OxyPlot.Xamarin.Android.PlotView.Scale">
  310. <summary>
  311. The factor that scales from OxyPlot´s device independent pixels (96 dpi) to
  312. Android´s density-independent pixels (160 dpi).
  313. </summary>
  314. <remarks>See <a href="http://developer.android.com/guide/practices/screens_support.html">Supporting multiple screens.</a>.</remarks>
  315. </member>
  316. <member name="F:OxyPlot.Xamarin.Android.PlotView.renderingLock">
  317. <summary>
  318. The rendering lock object.
  319. </summary>
  320. </member>
  321. <member name="F:OxyPlot.Xamarin.Android.PlotView.invalidateLock">
  322. <summary>
  323. The invalidation lock object.
  324. </summary>
  325. </member>
  326. <member name="F:OxyPlot.Xamarin.Android.PlotView.previousTouchPoints">
  327. <summary>
  328. The touch points of the previous touch event.
  329. </summary>
  330. </member>
  331. <member name="F:OxyPlot.Xamarin.Android.PlotView.model">
  332. <summary>
  333. The current model.
  334. </summary>
  335. </member>
  336. <member name="F:OxyPlot.Xamarin.Android.PlotView.defaultController">
  337. <summary>
  338. The default controller
  339. </summary>
  340. </member>
  341. <member name="F:OxyPlot.Xamarin.Android.PlotView.rc">
  342. <summary>
  343. The current render context.
  344. </summary>
  345. </member>
  346. <member name="F:OxyPlot.Xamarin.Android.PlotView.isModelInvalidated">
  347. <summary>
  348. The model invalidated flag.
  349. </summary>
  350. </member>
  351. <member name="F:OxyPlot.Xamarin.Android.PlotView.updateDataFlag">
  352. <summary>
  353. The update data flag.
  354. </summary>
  355. </member>
  356. <member name="M:OxyPlot.Xamarin.Android.PlotView.#ctor(Android.Content.Context)">
  357. <summary>
  358. Initializes a new instance of the <see cref="T:OxyPlot.Xamarin.Android.PlotView" /> class.
  359. </summary>
  360. <param name="context">The context.</param>
  361. <remarks>Use this constructor when creating the view from code.</remarks>
  362. </member>
  363. <member name="M:OxyPlot.Xamarin.Android.PlotView.#ctor(Android.Content.Context,Android.Util.IAttributeSet)">
  364. <summary>
  365. Initializes a new instance of the <see cref="T:OxyPlot.Xamarin.Android.PlotView" /> class.
  366. </summary>
  367. <param name="context">The context.</param>
  368. <param name="attrs">The attribute set.</param>
  369. <remarks>This constructor is called when inflating the view from XML.</remarks>
  370. </member>
  371. <member name="M:OxyPlot.Xamarin.Android.PlotView.#ctor(Android.Content.Context,Android.Util.IAttributeSet,System.Int32)">
  372. <summary>
  373. Initializes a new instance of the <see cref="T:OxyPlot.Xamarin.Android.PlotView" /> class.
  374. </summary>
  375. <param name="context">The context.</param>
  376. <param name="attrs">The attribute set.</param>
  377. <param name="defStyle">The definition style.</param>
  378. <remarks>This constructor performs inflation from XML and applies a class-specific base style.</remarks>
  379. </member>
  380. <member name="P:OxyPlot.Xamarin.Android.PlotView.Model">
  381. <summary>
  382. Gets or sets the plot model.
  383. </summary>
  384. <value>The model.</value>
  385. </member>
  386. <member name="P:OxyPlot.Xamarin.Android.PlotView.Controller">
  387. <summary>
  388. Gets or sets the plot controller.
  389. </summary>
  390. <value>The controller.</value>
  391. </member>
  392. <member name="P:OxyPlot.Xamarin.Android.PlotView.OxyPlot#IView#ActualModel">
  393. <summary>
  394. Gets the actual model in the view.
  395. </summary>
  396. <value>
  397. The actual model.
  398. </value>
  399. </member>
  400. <member name="P:OxyPlot.Xamarin.Android.PlotView.ActualModel">
  401. <summary>
  402. Gets the actual <see cref="T:OxyPlot.PlotModel" /> of the control.
  403. </summary>
  404. </member>
  405. <member name="P:OxyPlot.Xamarin.Android.PlotView.OxyPlot#IView#ActualController">
  406. <summary>
  407. Gets the actual controller.
  408. </summary>
  409. <value>
  410. The actual <see cref="T:OxyPlot.IController" />.
  411. </value>
  412. </member>
  413. <member name="P:OxyPlot.Xamarin.Android.PlotView.ClientArea">
  414. <summary>
  415. Gets the coordinates of the client area of the view.
  416. </summary>
  417. </member>
  418. <member name="P:OxyPlot.Xamarin.Android.PlotView.ActualController">
  419. <summary>
  420. Gets the actual <see cref="T:OxyPlot.IPlotController" /> of the control.
  421. </summary>
  422. <value>The actual plot controller.</value>
  423. </member>
  424. <member name="M:OxyPlot.Xamarin.Android.PlotView.HideTracker">
  425. <summary>
  426. Hides the tracker.
  427. </summary>
  428. </member>
  429. <member name="M:OxyPlot.Xamarin.Android.PlotView.HideZoomRectangle">
  430. <summary>
  431. Hides the zoom rectangle.
  432. </summary>
  433. </member>
  434. <member name="M:OxyPlot.Xamarin.Android.PlotView.InvalidatePlot(System.Boolean)">
  435. <summary>
  436. Invalidates the plot (not blocking the UI thread)
  437. </summary>
  438. <param name="updateData">if set to <c>true</c>, all data bindings will be updated.</param>
  439. </member>
  440. <member name="M:OxyPlot.Xamarin.Android.PlotView.SetCursorType(OxyPlot.CursorType)">
  441. <summary>
  442. Sets the cursor type.
  443. </summary>
  444. <param name="cursorType">The cursor type.</param>
  445. </member>
  446. <member name="M:OxyPlot.Xamarin.Android.PlotView.ShowTracker(OxyPlot.TrackerHitResult)">
  447. <summary>
  448. Shows the tracker.
  449. </summary>
  450. <param name="trackerHitResult">The tracker data.</param>
  451. </member>
  452. <member name="M:OxyPlot.Xamarin.Android.PlotView.ShowZoomRectangle(OxyPlot.OxyRect)">
  453. <summary>
  454. Shows the zoom rectangle.
  455. </summary>
  456. <param name="rectangle">The rectangle.</param>
  457. </member>
  458. <member name="M:OxyPlot.Xamarin.Android.PlotView.SetClipboardText(System.String)">
  459. <summary>
  460. Stores text on the clipboard.
  461. </summary>
  462. <param name="text">The text.</param>
  463. </member>
  464. <member name="M:OxyPlot.Xamarin.Android.PlotView.OnKeyDown(Android.Views.Keycode,Android.Views.KeyEvent)">
  465. <summary>
  466. Handles key down events.
  467. </summary>
  468. <param name="keyCode">The key code.</param>
  469. <param name="e">The event arguments.</param>
  470. <returns><c>true</c> if the event was handled.</returns>
  471. </member>
  472. <member name="M:OxyPlot.Xamarin.Android.PlotView.OnTouchEvent(Android.Views.MotionEvent)">
  473. <summary>
  474. Handles touch screen motion events.
  475. </summary>
  476. <param name="e">The motion event arguments.</param>
  477. <returns><c>true</c> if the event was handled.</returns>
  478. </member>
  479. <member name="M:OxyPlot.Xamarin.Android.PlotView.OnDraw(Android.Graphics.Canvas)">
  480. <summary>
  481. Draws the content of the control.
  482. </summary>
  483. <param name="canvas">The canvas to draw on.</param>
  484. </member>
  485. <member name="M:OxyPlot.Xamarin.Android.PlotView.OnTouchDownEvent(Android.Views.MotionEvent)">
  486. <summary>
  487. Handles touch down events.
  488. </summary>
  489. <param name="e">The motion event arguments.</param>
  490. <returns><c>true</c> if the event was handled.</returns>
  491. </member>
  492. <member name="M:OxyPlot.Xamarin.Android.PlotView.OnTouchMoveEvent(Android.Views.MotionEvent)">
  493. <summary>
  494. Handles touch move events.
  495. </summary>
  496. <param name="e">The motion event arguments.</param>
  497. <returns><c>true</c> if the event was handled.</returns>
  498. </member>
  499. <member name="M:OxyPlot.Xamarin.Android.PlotView.OnTouchUpEvent(Android.Views.MotionEvent)">
  500. <summary>
  501. Handles touch released events.
  502. </summary>
  503. <param name="e">The motion event arguments.</param>
  504. <returns><c>true</c> if the event was handled.</returns>
  505. </member>
  506. </members>
  507. </doc>