Graphics.DrawEllipse Method (Pen, Single, Single, Single, Single) |
Draws an ellipse with the specified pen
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntaxpublic void DrawEllipse(
Pen pen,
float x,
float y,
float width,
float height
)
Public Sub DrawEllipse (
pen As Pen,
x As Single,
y As Single,
width As Single,
height As Single
)
member DrawEllipse :
pen : Pen *
x : float32 *
y : float32 *
width : float32 *
height : float32 -> unit
Parameters
- pen
- Type: Eto.Drawing.Pen
Pen to outline the ellipse - x
- Type: System.Single
X co-ordinate - y
- Type: System.Single
Y co-ordinate - width
- Type: System.Single
Width of the ellipse - height
- Type: System.Single
Height of the ellipse
See Also