RecordingCanvas.DrawOval Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| DrawOval(RectF, Paint) |
Draw the specified oval using the specified paint. |
| DrawOval(Single, Single, Single, Single, Paint) |
Draw the specified oval using the specified paint. |
DrawOval(RectF, Paint)
Draw the specified oval using the specified paint.
[Android.Runtime.Register("drawOval", "(Landroid/graphics/RectF;Landroid/graphics/Paint;)V", "", ApiSince=29)]
public override sealed void DrawOval(Android.Graphics.RectF oval, Android.Graphics.Paint paint);
[<Android.Runtime.Register("drawOval", "(Landroid/graphics/RectF;Landroid/graphics/Paint;)V", "", ApiSince=29)>]
override this.DrawOval : Android.Graphics.RectF * Android.Graphics.Paint -> unit
Parameters
- oval
- RectF
- paint
- Paint
- Attributes
Remarks
Draw the specified oval using the specified paint. The oval will be filled or framed based on the Style in the paint.
Android reference for android.graphics.RecordingCanvas.drawOval.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
DrawOval(Single, Single, Single, Single, Paint)
Draw the specified oval using the specified paint.
[Android.Runtime.Register("drawOval", "(FFFFLandroid/graphics/Paint;)V", "", ApiSince=29)]
public override sealed void DrawOval(float left, float top, float right, float bottom, Android.Graphics.Paint paint);
[<Android.Runtime.Register("drawOval", "(FFFFLandroid/graphics/Paint;)V", "", ApiSince=29)>]
override this.DrawOval : single * single * single * single * Android.Graphics.Paint -> unit
Parameters
- left
- Single
- top
- Single
- right
- Single
- bottom
- Single
- paint
- Paint
- Attributes
Remarks
Draw the specified oval using the specified paint. The oval will be filled or framed based on the Style in the paint.
Android reference for android.graphics.RecordingCanvas.drawOval.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.