PathF.AppendEllipse 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
| AppendEllipse(Single, Single, Single, Single) |
Appends an approximated ellipse path (using 4 cubic curves) inside the specified rectangle. |
| AppendEllipse(RectF) |
Appends an approximated ellipse path inside the specified rectangle. |
AppendEllipse(Single, Single, Single, Single)
- Source:
- PathF.cs
- Source:
- PathF.cs
- Source:
- PathF.cs
Appends an approximated ellipse path (using 4 cubic curves) inside the specified rectangle.
public:
void AppendEllipse(float x, float y, float w, float h);
public void AppendEllipse(float x, float y, float w, float h);
member this.AppendEllipse : single * single * single * single -> unit
Public Sub AppendEllipse (x As Single, y As Single, w As Single, h As Single)
Parameters
- x
- Single
Left.
- y
- Single
Top.
- w
- Single
Width.
- h
- Single
Height.
Applies to
AppendEllipse(RectF)
- Source:
- PathF.cs
- Source:
- PathF.cs
- Source:
- PathF.cs
Appends an approximated ellipse path inside the specified rectangle.
public:
void AppendEllipse(Microsoft::Maui::Graphics::RectF rect);
public void AppendEllipse(Microsoft.Maui.Graphics.RectF rect);
member this.AppendEllipse : Microsoft.Maui.Graphics.RectF -> unit
Public Sub AppendEllipse (rect As RectF)
Parameters
- rect
- RectF
The bounding rectangle for the ellipse.