GraphicsIHandlerDrawEllipse Method  | 
 
            Draws an outline of an ellipse with the specified pen
 
    Namespace: 
   Eto.Drawing
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
Syntaxvoid DrawEllipse(
	Pen pen,
	float x,
	float y,
	float width,
	float height
)
Sub DrawEllipse ( 
	pen As Pen,
	x As Single,
	y As Single,
	width As Single,
	height As Single
)
abstract DrawEllipse : 
        pen : Pen * 
        x : float32 * 
        y : float32 * 
        width : float32 * 
        height : float32 -> unit 
Parameters
- pen
 - Type: Eto.DrawingPen
Pen to outline the ellipse - x
 - Type: SystemSingle
X co-ordinate of the left side of the ellipse - y
 - Type: SystemSingle
Y co-ordinate of the top of the ellipse - width
 - Type: SystemSingle
Width of the ellipse - height
 - Type: SystemSingle
Height of the ellipse 
See Also