| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>OxyPlot.Xamarin.iOS</name>
- </assembly>
- <members>
- <member name="T:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer">
- <summary>
- Recognizes drag/pinch multi-touch gestures and translates them into pan/zoom information.
- </summary>
- </member>
- <member name="F:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.activeTouches">
- <summary>
- Up to 2 touches being currently tracked in a pan/zoom.
- </summary>
- </member>
- <member name="F:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.startingDistance">
- <summary>
- Distance between touch points when the second touch point begins. Used to determine
- whether the touch points cross along a given axis during the zoom gesture.
- </summary>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer"/> class.
- </summary>
- <remarks>
- To add methods that will be invoked upon recognition, you can use the AddTarget method.
- </remarks>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.KeepAspectRatioWhenPinching">
- <summary>
- Gets or sets a value indicating whether this <see cref="T:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer"/> keeps the aspect ratio when pinching.
- </summary>
- <value><c>true</c> if keep aspect ratio when pinching; otherwise, <c>false</c>.</value>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.ZoomThreshold">
- <summary>
- Gets or sets how far apart touch points must be on a certain axis to enable scaling that axis.
- (only applies if KeepAspectRatioWhenPinching is <c>false</c>)
- </summary>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.AllowPinchPastZero">
- <summary>
- Gets or sets a value indicating whether a zoom-out gesture can turn into a zoom-in gesture if the fingers cross.
- If <c>true</c>, and <see cref="P:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.KeepAspectRatioWhenPinching" /> is <c>false</c>, a zoom-out gesture
- can turn into a zoom-in gesture if the fingers cross. Setting to <c>false</c> will
- instead simply stop the zoom at that point.
- </summary>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.TouchEventArgs">
- <summary>
- Gets or sets the current calculated pan/zoom changes.
- </summary>
- <value>
- The touch event arguments.
- </value>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.TouchesBegan(Foundation.NSSet,UIKit.UIEvent)">
- <summary>
- Called when a touch gesture begins.
- </summary>
- <param name="touches">The touches.</param>
- <param name="evt">The event arguments.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.TouchesMoved(Foundation.NSSet,UIKit.UIEvent)">
- <summary>
- Called when a touch gesture is moving.
- </summary>
- <param name="touches">The touches.</param>
- <param name="evt">The event arguments.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.TouchesEnded(Foundation.NSSet,UIKit.UIEvent)">
- <summary>
- Called when a touch gesture ends.
- </summary>
- <param name="touches">The touches.</param>
- <param name="evt">The event arguments.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.TouchesCancelled(Foundation.NSSet,UIKit.UIEvent)">
- <summary>
- Called when a touch gesture is cancelled.
- </summary>
- <param name="touches">The touches.</param>
- <param name="evt">The event arguments.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.DidDirectionChange(System.Double,System.Double)">
- <summary>
- Determines whether the direction has changed.
- </summary>
- <param name="current">The current value.</param>
- <param name="original">The original value.</param>
- <returns><c>true</c> if the direction changed.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.CalculateScaleFactor(System.Double,System.Double)">
- <summary>
- Calculates the scale factor.
- </summary>
- <param name="distance">The distance.</param>
- <param name="previousDistance">The previous distance.</param>
- <returns>The scale factor.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.CalculateStartingDistance">
- <summary>
- Calculates the starting distance.
- </summary>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PanZoomGestureRecognizer.PreventCross(OxyPlot.ScreenVector)">
- <summary>
- Applies the "prevent fingers crossing" to the specified vector.
- </summary>
- <param name="currentDistance">The current distance.</param>
- <returns>A vector where the "prevent fingers crossing" is applied.</returns>
- </member>
- <member name="T:OxyPlot.Xamarin.iOS.PlotView">
- <summary>
- Provides a view that can show a <see cref="T:OxyPlot.PlotModel" />.
- </summary>
- </member>
- <member name="F:OxyPlot.Xamarin.iOS.PlotView.model">
- <summary>
- The current plot model.
- </summary>
- </member>
- <member name="F:OxyPlot.Xamarin.iOS.PlotView.defaultController">
- <summary>
- The default plot controller.
- </summary>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:OxyPlot.Xamarin.iOS.PlotView"/> class.
- </summary>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.#ctor(CoreGraphics.CGRect)">
- <summary>
- Initializes a new instance of the <see cref="T:OxyPlot.Xamarin.iOS.PlotView"/> class.
- </summary>
- <param name="frame">The initial frame.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.#ctor(Foundation.NSCoder)">
- <summary>
- Initializes a new instance of the <see cref="T:OxyPlot.Xamarin.iOS.PlotView"/> class.
- </summary>
- <param name="coder">Coder.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.UseNewLayout">
- <summary>
- Uses the new layout.
- </summary>
- <returns><c>true</c>, if new layout was used, <c>false</c> otherwise.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.Initialize">
- <summary>
- Initialize the view.
- </summary>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PlotView.Model">
- <summary>
- Gets or sets the <see cref="T:OxyPlot.PlotModel"/> to show in the view.
- </summary>
- <value>The <see cref="T:OxyPlot.PlotModel"/>.</value>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PlotView.Controller">
- <summary>
- Gets or sets the <see cref="T:OxyPlot.IPlotController"/> that handles input events.
- </summary>
- <value>The <see cref="T:OxyPlot.IPlotController"/>.</value>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PlotView.OxyPlot#IView#ActualModel">
- <summary>
- Gets the actual model in the view.
- </summary>
- <value>
- The actual model.
- </value>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PlotView.ActualModel">
- <summary>
- Gets the actual <see cref="T:OxyPlot.PlotModel"/> to show.
- </summary>
- <value>The actual model.</value>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PlotView.OxyPlot#IView#ActualController">
- <summary>
- Gets the actual controller.
- </summary>
- <value>
- The actual <see cref="T:OxyPlot.IController" />.
- </value>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PlotView.ClientArea">
- <summary>
- Gets the coordinates of the client area of the view.
- </summary>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PlotView.ActualController">
- <summary>
- Gets the actual <see cref="T:OxyPlot.IPlotController"/>.
- </summary>
- <value>The actual plot controller.</value>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PlotView.KeepAspectRatioWhenPinching">
- <summary>
- Gets or sets a value indicating whether this <see cref="T:OxyPlot.Xamarin.iOS.PlotView"/> keeps the aspect ratio when pinching.
- </summary>
- <value><c>true</c> if keep aspect ratio when pinching; otherwise, <c>false</c>.</value>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PlotView.ZoomThreshold">
- <summary>
- How far apart touch points must be on a certain axis to enable scaling that axis.
- (only applies if KeepAspectRatioWhenPinching == false)
- </summary>
- </member>
- <member name="P:OxyPlot.Xamarin.iOS.PlotView.AllowPinchPastZero">
- <summary>
- If <c>true</c>, and KeepAspectRatioWhenPinching is <c>false</c>, a zoom-out gesture
- can turn into a zoom-in gesture if the fingers cross. Setting to <c>false</c> will
- instead simply stop the zoom at that point.
- </summary>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.HideTracker">
- <summary>
- Hides the tracker.
- </summary>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.HideZoomRectangle">
- <summary>
- Hides the zoom rectangle.
- </summary>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.InvalidatePlot(System.Boolean)">
- <summary>
- Invalidates the plot (not blocking the UI thread)
- </summary>
- <param name="updateData">If set to <c>true</c> update data.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.SetCursorType(OxyPlot.CursorType)">
- <summary>
- Sets the cursor type.
- </summary>
- <param name="cursorType">The cursor type.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.ShowTracker(OxyPlot.TrackerHitResult)">
- <summary>
- Shows the tracker.
- </summary>
- <param name="trackerHitResult">The tracker data.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.ShowZoomRectangle(OxyPlot.OxyRect)">
- <summary>
- Shows the zoom rectangle.
- </summary>
- <param name="rectangle">The rectangle.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.SetClipboardText(System.String)">
- <summary>
- Stores text on the clipboard.
- </summary>
- <param name="text">The text.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.Draw(CoreGraphics.CGRect)">
- <summary>
- Draws the content of the view.
- </summary>
- <param name="rect">The rectangle to draw.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.MotionBegan(UIKit.UIEventSubtype,UIKit.UIEvent)">
- <summary>
- Method invoked when a motion (a shake) has started.
- </summary>
- <param name="motion">The motion subtype.</param>
- <param name="evt">The event arguments.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.PlotView.WillMoveToSuperview(UIKit.UIView)">
- <summary>
- Used to add/remove the gesture recognizer so that it
- doesn't prevent the PlotView from being garbage-collected.
- </summary>
- <param name="newsuper">New superview</param>
- </member>
- <member name="T:OxyPlot.Xamarin.iOS.ExportExtensions">
- <summary>
- Provides extension methods related to export.
- </summary>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ExportExtensions.ToPng(UIKit.UIView,CoreGraphics.CGRect)">
- <summary>
- Stores the specified <see cref="T:UIKit.UIView" /> to a PNG file.
- </summary>
- <returns>The PNG data.</returns>
- <param name="view">The view to export.</param>
- <param name="rect">The rectangle to export.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ExportExtensions.GetImage(UIKit.UIView,CoreGraphics.CGRect)">
- <summary>
- Gets the image for the specified <see cref="T:UIKit.UIView" /> .
- </summary>
- <returns>The image.</returns>
- <param name="view">The view.</param>
- <param name="rect">The rectangle.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ExportExtensions.ToPdf(UIKit.UIView,CoreGraphics.CGRect)">
- <summary>
- Exports the specified <see cref="T:UIKit.UIView" /> to a PDF file.
- </summary>
- <returns>The PDF data.</returns>
- <param name="view">The view to export.</param>
- <param name="rect">The rectangle to export.</param>
- </member>
- <member name="T:OxyPlot.Xamarin.iOS.ConverterExtensions">
- <summary>
- Provides extension methods that converts between MonoTouch and OxyPlot types.
- </summary>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ConverterExtensions.ToScreenPoint(CoreGraphics.CGPoint)">
- <summary>
- Converts a <see cref="T:System.Drawing.PointF" /> to a <see cref="T:OxyPlot.ScreenPoint" />.
- </summary>
- <param name="p">The point to convert.</param>
- <returns>The converted point.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ConverterExtensions.ToTouchEventArgs(UIKit.UITouch,UIKit.UIView)">
- <summary>
- Converts <see cref="T:UIKit.UITouch" /> event arguments to <see cref="T:OxyPlot.OxyTouchEventArgs" />.
- </summary>
- <param name="touch">The touch event arguments.</param>
- <param name="view">The view.</param>
- <returns>The converted arguments.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ConverterExtensions.ToCGColor(OxyPlot.OxyColor)">
- <summary>
- Converts a <see cref="T:OxyPlot.OxyColor" /> to a <see cref="T:CoreGraphics.CGColor" />.
- </summary>
- <param name="c">The color to convert.</param>
- <returns>The converted color.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ConverterExtensions.ToUIColor(OxyPlot.OxyColor)">
- <summary>
- Converts a <see cref="T:OxyPlot.OxyColor" /> to a <see cref="T:UIKit.UIColor" />.
- </summary>
- <param name="c">The color to convert.</param>
- <returns>The converted color.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ConverterExtensions.Convert(OxyPlot.LineJoin)">
- <summary>
- Converts a <see cref="T:OxyPlot.LineJoin" /> to a <see cref="T:CoreGraphics.CGLineCap" />.
- </summary>
- <param name="lineJoin">The line join.</param>
- <returns>The converted join.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ConverterExtensions.Convert(OxyPlot.ScreenPoint)">
- <summary>
- Converts a <see cref="T:OxyPlot.ScreenPoint" /> to a <see cref="T:CoreGraphics.CGPoint" />.
- </summary>
- <param name="p">The point to convert.</param>
- <returns>The converted point.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ConverterExtensions.ConvertAliased(OxyPlot.ScreenPoint)">
- <summary>
- Converts a <see cref="T:OxyPlot.ScreenPoint" /> to a pixel center aligned <see cref="T:CoreGraphics.CGPoint" />.
- </summary>
- <param name="p">The point to convert.</param>
- <returns>The converted point.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ConverterExtensions.ConvertAliased(OxyPlot.OxyRect)">
- <summary>
- Converts a <see cref="T:OxyPlot.OxyRect" /> to a pixel center aligned <see cref="T:CoreGraphics.CGRect" />.
- </summary>
- <param name="rect">The rectangle to convert.</param>
- <returns>The converted rectangle.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.ConverterExtensions.Convert(OxyPlot.OxyRect)">
- <summary>
- Converts a <see cref="T:OxyPlot.OxyRect" /> to a <see cref="T:CoreGraphics.CGRect" />.
- </summary>
- <param name="rect">The rectangle to convert.</param>
- <returns>The converted rectangle.</returns>
- </member>
- <member name="T:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext">
- <summary>
- Implements a <see cref="T:OxyPlot.IRenderContext"/> for CoreGraphics.
- </summary>
- </member>
- <member name="F:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.imagesInUse">
- <summary>
- The images in use.
- </summary>
- </member>
- <member name="F:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.fonts">
- <summary>
- The fonts cache.
- </summary>
- </member>
- <member name="F:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.imageCache">
- <summary>
- The image cache.
- </summary>
- </member>
- <member name="F:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.gctx">
- <summary>
- The graphics context.
- </summary>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.#ctor(CoreGraphics.CGContext)">
- <summary>
- Initializes a new instance of the <see cref="T:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext"/> class.
- </summary>
- <param name="context">The context.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.DrawEllipse(OxyPlot.OxyRect,OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double)">
- <summary>
- Draws an ellipse.
- </summary>
- <param name="rect">The rectangle.</param>
- <param name="fill">The fill color.</param>
- <param name="stroke">The stroke color.</param>
- <param name="thickness">The thickness.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.DrawImage(OxyPlot.OxyImage,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Double,System.Boolean)">
- <summary>
- Draws the specified portion of the specified <see cref="T:OxyPlot.OxyImage" /> at the specified location and with the specified size.
- </summary>
- <param name="source">The source.</param>
- <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image to draw.</param>
- <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image to draw.</param>
- <param name="srcWidth">Width of the portion of the source image to draw.</param>
- <param name="srcHeight">Height of the portion of the source image to draw.</param>
- <param name="destX">The x-coordinate of the upper-left corner of drawn image.</param>
- <param name="destY">The y-coordinate of the upper-left corner of drawn image.</param>
- <param name="destWidth">The width of the drawn image.</param>
- <param name="destHeight">The height of the drawn image.</param>
- <param name="opacity">The opacity.</param>
- <param name="interpolate">Interpolate if set to <c>true</c>.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.CleanUp">
- <summary>
- Cleans up resources not in use.
- </summary>
- <remarks>This method is called at the end of each rendering.</remarks>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.SetClip(OxyPlot.OxyRect)">
- <summary>
- Sets the clip rectangle.
- </summary>
- <param name="rect">The clip rectangle.</param>
- <returns>True if the clip rectangle was set.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.ResetClip">
- <summary>
- Resets the clip rectangle.
- </summary>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.DrawLine(System.Collections.Generic.IList{OxyPlot.ScreenPoint},OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
- <summary>
- Draws a polyline.
- </summary>
- <param name="points">The points.</param>
- <param name="stroke">The stroke color.</param>
- <param name="thickness">The stroke thickness.</param>
- <param name="dashArray">The dash array.</param>
- <param name="lineJoin">The line join type.</param>
- <param name="aliased">if set to <c>true</c> the shape will be aliased.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.DrawPolygon(System.Collections.Generic.IList{OxyPlot.ScreenPoint},OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin,System.Boolean)">
- <summary>
- Draws a polygon. The polygon can have stroke and/or fill.
- </summary>
- <param name="points">The points.</param>
- <param name="fill">The fill color.</param>
- <param name="stroke">The stroke color.</param>
- <param name="thickness">The stroke thickness.</param>
- <param name="dashArray">The dash array.</param>
- <param name="lineJoin">The line join type.</param>
- <param name="aliased">If set to <c>true</c> the shape will be aliased.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.DrawRectangle(OxyPlot.OxyRect,OxyPlot.OxyColor,OxyPlot.OxyColor,System.Double)">
- <summary>
- Draws a rectangle.
- </summary>
- <param name="rect">The rectangle.</param>
- <param name="fill">The fill color.</param>
- <param name="stroke">The stroke color.</param>
- <param name="thickness">The stroke thickness.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.DrawText(OxyPlot.ScreenPoint,System.String,OxyPlot.OxyColor,System.String,System.Double,System.Double,System.Double,OxyPlot.HorizontalAlignment,OxyPlot.VerticalAlignment,System.Nullable{OxyPlot.OxySize})">
- <summary>
- Draws the text.
- </summary>
- <param name="p">The position of the text.</param>
- <param name="text">The text.</param>
- <param name="fill">The fill color.</param>
- <param name="fontFamily">The font family.</param>
- <param name="fontSize">Size of the font.</param>
- <param name="fontWeight">The font weight.</param>
- <param name="rotate">The rotation angle.</param>
- <param name="halign">The horizontal alignment.</param>
- <param name="valign">The vertical alignment.</param>
- <param name="maxSize">The maximum size of the text.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.MeasureText(System.String,System.String,System.Double,System.Double)">
- <summary>
- Measures the text.
- </summary>
- <param name="text">The text.</param>
- <param name="fontFamily">The font family.</param>
- <param name="fontSize">Size of the font.</param>
- <param name="fontWeight">The font weight.</param>
- <returns>
- The size of the text.
- </returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.Dispose">
- <summary>
- Releases all resource used by the <see cref="T:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext"/> object.
- </summary>
- <remarks>Call <see cref="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.Dispose"/> when you are finished using the
- <see cref="T:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext"/>. The <see cref="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.Dispose"/> method leaves the
- <see cref="T:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext"/> in an unusable state. After calling
- <see cref="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.Dispose"/>, you must release all references to the
- <see cref="T:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext"/> so the garbage collector can reclaim the memory that
- the <see cref="T:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext"/> was occupying.</remarks>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.GetActualFontName(System.String,System.Double)">
- <summary>
- Gets the actual font for iOS.
- </summary>
- <param name="fontFamily">The font family.</param>
- <param name="fontWeight">The font weight.</param>
- <returns>The actual font name.</returns>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.GetFontMetrics(CoreText.CTFont,System.nfloat@,System.nfloat@)">
- <summary>
- Gets font metrics for the specified font.
- </summary>
- <param name="font">The font.</param>
- <param name="defaultLineHeight">Default line height.</param>
- <param name="delta">The vertical delta.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.GetCachedFont(System.String,System.Double)">
- <summary>
- Gets the specified from cache.
- </summary>
- <returns>The font.</returns>
- <param name="fontName">Font name.</param>
- <param name="fontSize">Font size.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.SetAlias(System.Boolean)">
- <summary>
- Sets the alias state.
- </summary>
- <param name="alias">alias if set to <c>true</c>.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.SetFill(OxyPlot.OxyColor)">
- <summary>
- Sets the fill color.
- </summary>
- <param name="c">The color.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.SetStroke(OxyPlot.OxyColor,System.Double,System.Double[],OxyPlot.LineJoin)">
- <summary>
- Sets the stroke style.
- </summary>
- <param name="c">The stroke color.</param>
- <param name="thickness">The stroke thickness.</param>
- <param name="dashArray">The dash array.</param>
- <param name="lineJoin">The line join.</param>
- </member>
- <member name="M:OxyPlot.Xamarin.iOS.CoreGraphicsRenderContext.GetImage(OxyPlot.OxyImage)">
- <summary>
- Gets the image from cache or converts the specified <paramref name="source"/> <see cref="T:OxyPlot.OxyImage"/>.
- </summary>
- <param name="source">The source.</param>
- <returns>The image.</returns>
- </member>
- </members>
- </doc>
|